:root {
  --ink: #102d2a;
  --ink-2: #244944;
  --muted: #657571;
  --line: #d9e6e0;
  --paper: #fbf7ef;
  --surface: #fffdf8;
  --white: #ffffff;
  --green: #1d705d;
  --green-deep: #0a3c34;
  --mint: #dbeee6;
  --coral: #da6d55;
  --blue: #3b7895;
  --yellow: #f0c66a;
  --shadow: 0 22px 60px rgba(16, 45, 42, 0.15);
  --soft-shadow: 0 14px 34px rgba(16, 45, 42, 0.1);
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf1 0%, #f8fbf7 44%, #fff8ef 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(120deg, transparent 0 88%, rgba(29, 112, 93, 0.08) 88% 89%, transparent 89%),
    linear-gradient(30deg, transparent 0 84%, rgba(59, 120, 149, 0.07) 84% 85%, transparent 85%);
  background-size: 132px 132px, 176px 176px;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 247, 239, 0.88);
  border-bottom: 1px solid rgba(217, 230, 224, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 260ms ease, background 260ms ease, min-height 260ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(251, 247, 239, 0.96);
  box-shadow: 0 14px 36px rgba(16, 45, 42, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 232px;
  color: var(--green-deep);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 46px;
  color: var(--white);
  background: linear-gradient(145deg, var(--green), var(--green-deep));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(10, 60, 52, 0.24);
  font-size: 1.24rem;
  font-weight: 900;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
}

.brand-mark::after {
  right: -4px;
  bottom: -4px;
  width: 15px;
  height: 15px;
  background: var(--yellow);
  border: 3px solid var(--paper);
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-18deg);
}

.brand-copy strong,
.brand-copy small {
  display: block;
  line-height: 1.12;
}

.brand-copy strong {
  font-size: 1.06rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.nav a::after {
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--coral), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--green-deep);
  background: rgba(29, 112, 93, 0.08);
}

.nav a.nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #c85e48);
  box-shadow: 0 10px 22px rgba(218, 109, 85, 0.18);
}

.nav a.nav-cta::after {
  background: rgba(255, 255, 255, 0.86);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(600px, 78svh, 820px);
  align-items: center;
  padding: clamp(46px, 7vw, 76px) clamp(20px, 5vw, 72px) clamp(78px, 11vh, 96px);
  isolation: isolate;
  overflow: hidden;
  background: var(--green-deep);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -4;
  content: "";
  background-image: url("hero-preschool.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 45, 38, 0.95) 0%, rgba(10, 60, 52, 0.86) 46%, rgba(10, 60, 52, 0.28) 100%),
    linear-gradient(180deg, rgba(16, 45, 42, 0.18), rgba(16, 45, 42, 0.42));
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(6, 45, 38, 0.62));
}

.hero-content {
  position: relative;
  width: min(835px, 100%);
  color: var(--white);
}

.hero-content::before {
  position: absolute;
  top: -30px;
  left: 0;
  width: 114px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--coral), transparent);
}

.hero-panel {
  position: absolute;
  right: clamp(24px, 6vw, 88px);
  bottom: clamp(82px, 12vh, 142px);
  width: min(355px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.panel-topline,
.panel-stack {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(240, 198, 106, 0.18);
}

.panel-metric {
  display: grid;
  gap: 5px;
  margin: 22px 0;
}

.panel-metric span,
.panel-stack span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.panel-metric strong {
  font-size: 1.38rem;
  line-height: 1.15;
}

.panel-stack {
  flex-wrap: wrap;
}

.panel-stack span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-rail {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 24px;
  left: clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-rail span {
  padding: 14px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-rail span:last-child {
  border-right: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 5.95rem);
  line-height: 0.99;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions,
.site-footer nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #c95d47);
  box-shadow: 0 16px 28px rgba(218, 109, 85, 0.28);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary-dark {
  color: var(--green-deep);
  border-color: rgba(29, 112, 93, 0.22);
  background: rgba(29, 112, 93, 0.08);
}

.button.inline-action {
  width: fit-content;
  margin-top: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-deep));
}

.button.full {
  width: 100%;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.section-header {
  width: min(850px, 100%);
  margin-bottom: 32px;
}

.section-header.compact {
  margin-inline: auto;
  text-align: center;
}

.section-header p:not(.eyebrow),
.statement p,
.atelier-copy p,
.showcase-copy p,
.trust-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.statement-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: clamp(34px, 6vw, 80px);
  align-items: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), transparent),
    var(--paper);
}

.statement {
  max-width: 760px;
}

.statement-grid {
  display: grid;
  gap: 12px;
}

.statement-grid article,
.atelier-board article,
.support-panel,
.faq details,
.issue-grid div,
.link-list a,
.trust-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--soft-shadow);
}

.statement-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 22px 74px;
}

.statement-grid article::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 54px;
  width: 1px;
  content: "";
  background: var(--line);
}

.statement-grid span,
.issue-grid span {
  position: absolute;
  top: 22px;
  left: 20px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
}

.statement-grid p,
.atelier-board p,
.issue-grid p {
  margin: 0;
  color: var(--muted);
}

.atelier-section {
  position: relative;
  background: #eef7f2;
  overflow: hidden;
}

.atelier-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(29, 112, 93, 0.28), transparent);
}

.atelier-copy {
  width: min(780px, 100%);
  margin-bottom: 38px;
}

.atelier-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.atelier-board article {
  position: relative;
  min-height: 284px;
  padding: 24px;
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.atelier-board article::after {
  position: absolute;
  right: -40px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  content: "";
  border: 1px solid rgba(29, 112, 93, 0.14);
  border-radius: 8px;
  transform: rotate(18deg);
}

.atelier-board article:nth-child(2)::after {
  border-color: rgba(218, 109, 85, 0.2);
}

.atelier-board article:nth-child(3)::after {
  border-color: rgba(59, 120, 149, 0.2);
}

.atelier-board article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.atelier-board small {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--green);
  font-weight: 900;
}

.atelier-board h3 {
  font-size: 1.22rem;
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(16, 45, 42, 0.04), transparent 45%),
    var(--surface);
}

.showcase-phone {
  position: relative;
  display: grid;
  place-items: center;
}

.showcase-phone::before {
  position: absolute;
  width: min(92%, 360px);
  height: 86%;
  content: "";
  border: 1px solid rgba(29, 112, 93, 0.16);
  border-radius: 8px;
  transform: rotate(-6deg);
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: linear-gradient(145deg, #153c38, #082d28);
  box-shadow: 0 34px 80px rgba(16, 45, 42, 0.28);
  animation: phoneFloat 6s var(--ease) infinite alternate;
}

.phone-top {
  width: 74px;
  height: 6px;
  margin: 4px auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.phone-screen {
  min-height: 560px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #f9fcf8, #edf7f0);
  overflow: hidden;
}

.app-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.mini-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--green), var(--green-deep));
  border-radius: 8px;
  font-weight: 900;
}

.app-head strong,
.app-head small,
.app-row strong,
.app-row small,
.app-card small,
.app-card strong {
  display: block;
}

.app-head small,
.app-row small,
.app-card small {
  color: var(--muted);
}

.app-card,
.app-row {
  border: 1px solid rgba(217, 230, 224, 0.92);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(16, 45, 42, 0.08);
}

.app-card {
  margin-bottom: 14px;
  padding: 18px;
}

.app-card.highlight {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.app-card.highlight small {
  color: rgba(255, 255, 255, 0.74);
}

.app-live-card {
  animation: cardPulse 4.8s ease-in-out infinite;
}

.app-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  padding: 14px;
}

.dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
}

.dot.green {
  background: var(--green);
}

.dot.coral {
  background: var(--coral);
}

.app-progress {
  height: 7px;
  margin-top: 158px;
  border-radius: 999px;
  background: #d7e7df;
  overflow: hidden;
}

.app-progress span {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  animation: progressSweep 5s ease-in-out infinite;
}

.showcase-copy {
  max-width: 790px;
}

.premium-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.premium-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.44fr) minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.premium-list strong {
  color: var(--ink);
}

.premium-list span {
  color: var(--muted);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: #f7fbf9;
}

.trust-card {
  position: sticky;
  top: 104px;
  padding: 28px;
}

.link-list {
  display: grid;
  gap: 14px;
}

.link-list.refined {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-section .link-list.refined {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.link-list a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 180px;
  padding: 24px 24px 26px;
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms ease;
}

.link-list a::before {
  width: 46px;
  height: 4px;
  margin-bottom: 18px;
  content: "";
  background: var(--coral);
}

.link-list a::after {
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  content: "";
  border: 1px solid rgba(16, 45, 42, 0.08);
  border-radius: 8px;
  transform: rotate(18deg);
}

.link-list a:nth-child(2)::before {
  background: var(--green);
}

.link-list a:nth-child(3)::before {
  background: var(--blue);
}

.link-list a:hover {
  border-color: rgba(29, 112, 93, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.link-list span {
  font-weight: 900;
}

.link-list small {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(90deg, rgba(218, 109, 85, 0.14), transparent 42%),
    var(--green-deep);
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.page-hero {
  position: relative;
  padding: clamp(58px, 7vw, 88px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 60, 52, 0.98), rgba(29, 112, 93, 0.94) 58%, rgba(59, 120, 149, 0.92)),
    var(--green-deep);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  right: clamp(20px, 6vw, 96px);
  bottom: -42px;
  width: 190px;
  height: 190px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  transform: rotate(12deg);
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 14px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.legal-content {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) 0;
}

.legal-content h2 {
  margin: 36px 0 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.25rem, 2vw, 1.66rem);
}

.legal-content h3 {
  margin: 24px 0 8px;
  color: var(--green-deep);
  font-size: 1.08rem;
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-2);
}

.legal-content a {
  color: var(--green);
  font-weight: 850;
}

.legal-contact {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.legal-contact div {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.legal-contact div:last-child {
  border-bottom: 0;
}

.legal-contact dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-contact dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(280px, 405px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.delete-layout {
  display: grid;
  grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.support-panel {
  position: sticky;
  top: 104px;
  padding: 28px;
}

.delete-card {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--soft-shadow);
}

.support-panel h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

.support-panel p,
.faq p {
  color: var(--muted);
}

.support-panel .button + .button {
  margin-top: 12px;
}

.delete-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.contact-list div {
  display: grid;
  gap: 3px;
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-weight: 850;
}

.support-main {
  display: grid;
  gap: 24px;
}

.delete-content {
  display: grid;
  gap: 24px;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.request-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.issue-grid div {
  position: relative;
  min-height: 176px;
  padding: 54px 18px 18px;
}

.request-steps article {
  position: relative;
  min-height: 188px;
  padding: 56px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--soft-shadow);
}

.request-steps span {
  position: absolute;
  top: 22px;
  left: 20px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
}

.issue-grid strong {
  display: block;
  margin-bottom: 6px;
}

.request-steps h3 {
  margin-bottom: 8px;
}

.request-steps p {
  margin: 0;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq h2 {
  margin-bottom: 8px;
}

.faq details {
  padding: 19px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.2%, 0.8%, 0);
  }
}

@keyframes phoneFloat {
  from {
    transform: translateY(0) rotate(-1deg);
  }

  to {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes cardPulse {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(16, 45, 42, 0.08);
  }

  50% {
    box-shadow: 0 16px 30px rgba(29, 112, 93, 0.22);
  }
}

@keyframes progressSweep {
  0% {
    width: 22%;
  }

  50% {
    width: 78%;
  }

  100% {
    width: 46%;
  }
}

@media (max-width: 1100px) {
  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 32px;
  }

  .hero {
    align-items: end;
    padding-bottom: 120px;
  }

  .statement-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .trust-card {
    position: static;
  }
}

@media (max-width: 980px) {
  .atelier-board,
  .link-list.refined,
  .issue-grid,
  .request-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .support-layout,
  .delete-layout,
  .app-showcase {
    grid-template-columns: 1fr;
  }

  .support-panel,
  .delete-card {
    position: static;
  }

  .hero {
    min-height: 760px;
  }

  .hero-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-rail span:nth-child(2) {
    border-right: 0;
  }

  .hero-rail span:nth-child(1),
  .hero-rail span:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .phone-shell {
    width: min(100%, 330px);
  }
}

@media (max-width: 640px) {
  .atelier-board,
  .link-list.refined,
  .issue-grid,
  .request-steps,
  .trust-section .link-list.refined {
    grid-template-columns: 1fr;
  }

  .premium-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .atelier-board article {
    min-height: 230px;
  }

  .atelier-board small {
    margin-bottom: 36px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .nav a {
    padding: 7px 8px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 620px;
    padding-inline: 18px;
    padding-top: 28px;
    padding-bottom: 96px;
  }

  h1 {
    font-size: clamp(2rem, 10.4vw, 2.65rem);
    line-height: 1.03;
  }

  .hero-actions .button,
  .hero-panel {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .hero-rail {
    right: 18px;
    bottom: 8px;
    left: 18px;
  }

  .hero-rail span {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .section,
  .page-hero {
    padding-inline: 18px;
  }

  .legal-contact div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .phone-screen {
    min-height: 510px;
    padding: 18px;
  }

  .app-progress {
    margin-top: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
