/* ============================================================
   Multiply.Cards — public site redesign (Build 11)
   Shared stylesheet for Home / Parents / Teachers.
   Derived from mockups/public-site-redesign-mockup.html.
   Rule: editorial splits on white, colour only for earned moments
   (languages showcase, pricing offer, CTA bands).
   ============================================================ */

/* ============ Reset & Tokens ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #4281F2;
  --blue-deep: #2563EB;
  --blue-ink: #14346E;
  --orange: #FC8008;
  --orange-deep: #E66A00;
  --teal: #10B981;
  --teal-deep: #0E9F71;
  --ink: #17213E;
  --ink-soft: #4A5578;
  --ink-faint: #7B85A3;
  --bg: #F7FAFF;
  --mint: #E8F8F2;
  --sky: #E9F2FF;
  --peach: #FFF1E0;
  --lemon: #FFF9E0;
  --lilac: #E4ECFF;
  --line: #E6ECF7;
  --card: #FFFFFF;
  --shadow-sm: 0 4px 14px rgba(23, 33, 62, 0.06);
  --shadow: 0 10px 30px rgba(23, 33, 62, 0.09);
  --shadow-lg: 0 24px 60px rgba(23, 33, 62, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Fredoka', 'Nunito', sans-serif; font-weight: 600; line-height: 1.12; letter-spacing: -0.015em; }
.wrap { width: 100%; max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 12.5px; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
}

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247, 250, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 33, 62, 0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 13px; padding-bottom: 13px; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 11px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 21px; color: var(--ink); cursor: pointer; background: none; border: 0; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #74AAFF);
  display: grid; place-items: center; color: white; font-size: 21px; font-weight: 700;
  box-shadow: 0 5px 14px rgba(66, 129, 242, 0.42);
}
.logo-img { width: 40px; height: 40px; border-radius: 11px; object-fit: contain; display: block; filter: drop-shadow(0 4px 10px rgba(66, 129, 242, 0.35)); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 9px 15px; border-radius: 11px; font-weight: 700; font-size: 15px;
  color: var(--ink-soft); transition: all .15s; background: none; border: 0; cursor: pointer;
  font-family: 'Nunito', sans-serif;
}
.nav-link:hover { background: var(--sky); color: var(--blue-deep); }
.nav-link.active { color: var(--blue-deep); background: var(--sky); }
.nav-signin { color: var(--blue-deep); }
.nav-signin:hover { background: var(--sky); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 13px; font-weight: 800; font-size: 15px;
  background: linear-gradient(135deg, var(--orange), #FF9F3D); color: white;
  box-shadow: 0 6px 16px rgba(252, 128, 8, 0.36);
  transition: transform .15s, box-shadow .15s; margin-left: 6px;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 9px 22px rgba(252, 128, 8, 0.48); }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 11px; border: 0; background: none; cursor: pointer;
  border-radius: 11px;
}
.nav-toggle span { display: block; height: 2.5px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: rgba(247, 250, 255, 0.98); backdrop-filter: blur(14px);
    padding: 14px 20px 20px; border-bottom: 1px solid rgba(23, 33, 62, 0.08);
    box-shadow: var(--shadow);
    transform: translateY(-10px); opacity: 0; pointer-events: none; transition: transform .2s, opacity .2s;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-link { font-size: 17px; padding: 14px; text-align: left; border-radius: 12px; }
  .nav-cta { margin-left: 0; margin-top: 6px; justify-content: center; padding: 15px; font-size: 16px; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  border: 0; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s;
  text-align: center;
}
.btn-play {
  padding: 17px 38px; border-radius: 999px; font-size: 21px; letter-spacing: .01em;
  background: linear-gradient(135deg, var(--orange), #FFA547); color: white;
  box-shadow: 0 10px 26px rgba(252, 128, 8, 0.44);
}
.btn-play:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 32px rgba(252, 128, 8, 0.55); }
.btn-primary {
  padding: 14px 28px; border-radius: 14px; font-size: 17px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: white;
  box-shadow: 0 8px 20px rgba(66, 129, 242, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(66, 129, 242, 0.45); }
.btn-teal {
  padding: 14px 28px; border-radius: 14px; font-size: 17px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep)); color: white;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.32);
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(16, 185, 129, 0.42); }
.btn-ghost {
  padding: 14px 26px; border-radius: 14px; font-size: 17px;
  background: white; color: var(--ink); border: 2px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-deep); transform: translateY(-2px); }

/* ============ Hero (shared) ============ */
.hero { position: relative; padding: 60px 0 60px; text-align: center; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 760px 360px at 50% -30px, var(--sky) 0%, transparent 62%),
    radial-gradient(ellipse 500px 300px at 85% 20px, var(--peach) 0%, transparent 60%);
}
.hero h1 { font-size: clamp(38px, 6.2vw, 66px); margin-bottom: 18px; }
.hero h1 .accent { color: var(--blue); }
.hero h1 .accent-orange { color: var(--orange-deep); }
.fish { display: inline-block; animation: bob 3.2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-9px) rotate(4deg); } }
.hero .lead { font-size: clamp(17px, 2vw, 21px); color: var(--ink-soft); max-width: 600px; margin: 0 auto 28px; font-weight: 700; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.hero-meta { margin-top: 20px; font-size: 14.5px; color: var(--ink-soft); font-weight: 800; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta .tick { color: var(--teal-deep); }
.signin-inline { margin-top: 14px; font-size: 14.5px; font-weight: 700; color: var(--ink-soft); }
.signin-inline a { color: var(--blue-deep); font-weight: 800; }
.video-frame {
  margin: 42px auto 0; max-width: 1120px; position: relative;
}
.video-frame video { width: 100%; height: auto; display: block; }
.video-fade { position: relative; }
.video-fade::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 34px 14px var(--bg);
}

/* ============ Sections ============ */
section.band { padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.section-head p { font-size: 18px; color: var(--ink-soft); max-width: 580px; margin: 0 auto; font-weight: 700; }

/* Audience chooser (home) */
.chooser { background: white; }
.chooser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .chooser-grid { grid-template-columns: 1fr; } }
.chooser-card {
  position: relative; overflow: hidden; text-align: left; cursor: pointer;
  border-radius: var(--radius-lg); padding: 34px; border: 2px solid var(--line);
  background: var(--card); box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; gap: 8px;
  font-family: 'Nunito', system-ui, sans-serif; color: var(--ink);
}
.chooser-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.chooser-card.parent:hover { border-color: var(--orange); }
.chooser-card.teacher:hover { border-color: var(--blue); }
.chooser-card .cc-icon { font-size: 46px; line-height: 1; margin-bottom: 12px; }
.chooser-card .cc-img { width: 100%; height: 240px; object-fit: cover; display: block; margin: 0 0 20px; border-radius: 16px; }
@media (max-width: 640px) { .chooser-card .cc-img { height: 165px; } }
.chooser-card h3 { font-size: 25px; }
.chooser-card p { color: var(--ink-soft); font-weight: 700; font-size: 16px; line-height: 1.55; }
.chooser-card .cc-go { margin-top: 6px; font-weight: 900; font-size: 15px; display: inline-flex; align-items: center; gap: 7px; }
.chooser-card.parent .cc-go { color: var(--orange-deep); }
.chooser-card.teacher .cc-go { color: var(--blue-deep); }
.chooser-card .cc-blob { position: absolute; right: -30px; bottom: -30px; font-size: 130px; opacity: .07; transform: rotate(-12deg); }

/* Feature grid */
.features { background: linear-gradient(180deg, var(--bg) 0%, white 100%); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--card); border-radius: var(--radius-lg); padding: 26px;
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .f-icon { font-size: 36px; line-height: 1; margin-bottom: 13px; }
.feature h3 { font-size: 20px; margin-bottom: 7px; }
.feature p { color: var(--ink-soft); font-weight: 600; font-size: 15.5px; }

/* Split media rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 30px; } }
.split.reverse .split-media { order: 2; }
/* Desktop-only column flip: text-first DOM (so stacked = text above media),
   media moves left on wide screens for left/right alternation */
@media (min-width: 881px) { .split.flip .split-text { order: 2; } }
/* Narrower media column on desktop (home showcase rows) so the clip
   isn't oversized; media fills the smaller column at the outer edge */
@media (min-width: 881px) {
  .split.split-narrow { grid-template-columns: 1.9fr 1fr; }
  .split.split-narrow.flip { grid-template-columns: 1fr 1.9fr; }
}
.split-text h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.split-text p { font-size: 17.5px; color: var(--ink-soft); margin-bottom: 12px; font-weight: 600; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid white; background: var(--mint); }
.split-media video, .split-media img { width: 100%; height: auto; display: block; }
/* Cap media to the text block's height (desktop only; stacks normally on mobile) */
@media (min-width: 881px) {
  .split.stretch { align-items: stretch; }
  .split-media.media-cover { position: relative; }
  .split-media.media-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
}
/* Balanced media — identical box for both clips; crop to fill */
.split-media.balanced { align-self: center; width: 100%; max-width: 440px; aspect-ratio: 11 / 10; margin-inline: auto; }
.split-media.balanced video { width: 100%; height: 100%; object-fit: cover; }
/* Stacked tablet range: left-align the media under the text (not floating centred) */
@media (max-width: 880px) { .split-media.balanced { max-width: 390px; margin-inline: 0; } }
.badge-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.badge { background: white; padding: 8px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 800; color: var(--ink); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }

/* Languages / voices */
.languages-band { background: linear-gradient(135deg, var(--lilac) 0%, var(--sky) 100%); text-align: center; }
.lang-flags { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px 10px; justify-items: center; align-items: center; margin: 6px auto 32px; max-width: 560px; }
@media (max-width: 560px) { .lang-flags { grid-template-columns: repeat(4, 1fr); max-width: 340px; } }
@media (max-width: 360px) { .lang-flags { grid-template-columns: repeat(3, 1fr); } }
.lang-flags span { font-size: 44px; line-height: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,.14)); transition: transform .2s; animation: floatFlag 3.6s ease-in-out infinite; cursor: default; }
.lang-flags span:hover { transform: scale(1.2); }
.lang-flags span:nth-child(2n) { animation-delay: .4s; }
.lang-flags span:nth-child(3n) { animation-delay: .8s; }
.lang-flags span:nth-child(4n) { animation-delay: 1.2s; }
@keyframes floatFlag { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.lang-stats { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.lang-stat { background: white; border-radius: var(--radius); padding: 18px 30px; box-shadow: var(--shadow-sm); border: 1.5px solid var(--line); min-width: 148px; }
.lang-stat .ls-val { font-family: 'Fredoka'; font-size: 38px; font-weight: 600; color: var(--blue); line-height: 1; }
.lang-stat .ls-lab { font-weight: 800; color: var(--ink-soft); font-size: 14px; margin-top: 5px; text-transform: uppercase; letter-spacing: .05em; }

/* Steps (numbered) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step-card { background: white; border-radius: var(--radius-lg); padding: 28px; border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); position: relative; }
.step-card .num { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; font-family: 'Fredoka'; font-size: 22px; font-weight: 600; color: white; margin-bottom: 14px; }
.step-card:nth-child(1) .num { background: linear-gradient(135deg, var(--blue), #74AAFF); }
.step-card:nth-child(2) .num { background: linear-gradient(135deg, var(--orange), #FFA547); }
.step-card:nth-child(3) .num { background: linear-gradient(135deg, var(--teal), #34D399); }
.step-card h3 { font-size: 20px; margin-bottom: 7px; }
.step-card p { color: var(--ink-soft); font-weight: 600; font-size: 15.5px; }
.step-card code { background: var(--sky); color: var(--blue-deep); padding: 2px 8px; border-radius: 6px; font-size: 13.5px; font-weight: 700; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 460px; margin: 0 auto; }
.pricing-grid.two { grid-template-columns: 1fr 1fr; max-width: 1120px; }
@media (max-width: 720px) { .pricing-grid.two { grid-template-columns: 1fr; } }
.price-card {
  background: white; border-radius: var(--radius-lg); padding: 34px 30px;
  border: 2px solid var(--line); box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.price-card.featured { border-color: var(--orange); }
.price-card.featured-blue { border-color: var(--blue); }
.price-tag { position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 8px; }
.price-tag.orange { background: var(--peach); color: var(--orange-deep); }
.price-tag.blue { background: var(--sky); color: var(--blue-deep); }
.price-card h3 { font-size: 22px; margin-bottom: 4px; }
.price-card .sub { color: var(--ink-faint); font-weight: 700; font-size: 14.5px; margin-bottom: 18px; }
.amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.amount .cur { font-size: 26px; font-weight: 800; color: var(--ink-soft); }
.amount .val { font-family: 'Fredoka'; font-size: 54px; font-weight: 600; line-height: 1; }
.amount .per { font-size: 15px; font-weight: 800; color: var(--ink-faint); }
.price-card.featured .amount .val { color: var(--orange-deep); }
.price-card.featured-blue .amount .val { color: var(--blue-deep); }
.price-note { font-size: 13.5px; font-weight: 800; color: var(--teal-deep); margin-bottom: 20px; }
.price-list { list-style: none; margin: 0 0 24px; display: flex; flex-direction: column; gap: 11px; }
.price-list li { display: flex; gap: 10px; font-weight: 700; font-size: 15px; color: var(--ink-soft); }
.price-list li .ck { color: var(--teal-deep); font-weight: 900; flex-shrink: 0; }
.price-card .btn { width: 100%; }
.price-foot { text-align: center; margin-top: 22px; font-weight: 700; color: var(--ink-soft); font-size: 15px; }

/* Parent pricing: one unified panel — single column on mobile,
   plan + comparison as two columns of the SAME panel on wide */
.parent-panel { display: grid; grid-template-columns: 1fr; max-width: 460px; margin: 0 auto;
  background: white; border: 2px solid var(--orange); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.parent-panel .price-card { border: 0; box-shadow: none; border-radius: 0; background: transparent; padding: 34px 32px; }
.parent-panel .price-card:hover { transform: none; }
.price-aside { display: none; padding: 34px 32px; background: var(--bg); }
@media (min-width: 861px) {
  .parent-panel { grid-template-columns: 1fr 1fr; max-width: 1120px; border-color: var(--line); border-width: 1.5px; }
  .price-aside { display: block; }
  .parent-panel .price-card { border-left: 1px solid var(--line); }
  .price-foot.only-mobile { display: none; }
}
.price-aside h3 { font-size: 21px; margin-bottom: 5px; }
.price-aside .aside-sub { color: var(--ink-faint); font-weight: 700; font-size: 14px; margin-bottom: 18px; }
table.cmp { width: 100%; border-collapse: collapse; }
table.cmp th, table.cmp td { padding: 11px 8px; font-size: 14px; }
table.cmp th:first-child, table.cmp td:first-child { text-align: left; width: 60%; }
table.cmp th:not(:first-child), table.cmp td:not(:first-child) { text-align: center; width: 20%; }
table.cmp thead th { font-weight: 900; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-faint); padding-bottom: 8px; }
table.cmp thead th:last-child { color: var(--orange-deep); }
table.cmp tbody td:first-child { font-weight: 700; color: var(--ink-soft); }
table.cmp tbody tr { border-top: 1px solid var(--line); }
table.cmp td.y { color: var(--teal-deep); font-weight: 900; font-size: 16px; }
table.cmp td.n { color: var(--ink-faint); font-weight: 700; }
table.cmp th:last-child, table.cmp td:last-child { background: var(--peach); }
.aside-callout { margin-top: 20px; background: var(--mint); border-radius: 14px; padding: 15px 16px; font-weight: 700; font-size: 14px; color: var(--ink); line-height: 1.5; }
.aside-try { margin-top: 16px; text-align: center; font-weight: 700; font-size: 14px; color: var(--ink-soft); }
.aside-try a { color: var(--blue-deep); font-weight: 900; }

/* Teacher AI showcase */
/* Editorial split on white — colour reserved for the languages showcase, pricing offer & CTA bands (matches Home/Parents) */
.ai-showcase { background: white; }
.ai-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center; }
@media (max-width: 940px) { .ai-grid { grid-template-columns: 1fr; gap: 34px; } }
.ai-shot { width: 100%; height: auto; display: block; border-radius: 16px; filter: drop-shadow(0 16px 36px rgba(23, 33, 62, 0.16)); }
.ai-text h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 16px; }
.ai-text p { font-size: 17.5px; color: var(--ink-soft); font-weight: 600; margin-bottom: 14px; }
.ai-points { list-style: none; margin: 20px 0 26px; display: flex; flex-direction: column; gap: 13px; }
.ai-points li { display: flex; gap: 12px; align-items: flex-start; font-weight: 700; color: var(--ink); font-size: 16px; }
.ai-points .pin { width: 30px; height: 30px; border-radius: 9px; background: var(--sky); display: grid; place-items: center; font-size: 16px; flex-shrink: 0; box-shadow: var(--shadow-sm); }

/* Info strip / stats */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 720px) { .stat-strip { grid-template-columns: 1fr 1fr; } }
.stat { text-align: center; padding: 22px 14px; background: white; border-radius: var(--radius); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.stat .s-val { font-family: 'Fredoka'; font-size: 40px; font-weight: 600; color: var(--blue); line-height: 1; }
.stat .s-lab { font-weight: 800; color: var(--ink-soft); font-size: 14px; margin-top: 6px; }

/* Three apps panel */
.apps-panel { background: linear-gradient(160deg, #EFF4FF 0%, #E4ECFF 100%); border: 1.5px solid var(--line); border-radius: var(--radius-xl); padding: 34px; box-shadow: var(--shadow-sm); }
.apps-head { text-align: center; margin-bottom: 26px; }
.apps-head h2 { font-size: clamp(24px, 3.2vw, 34px); margin-top: 12px; }
.apps-head p { color: var(--ink-soft); font-weight: 700; font-size: 16px; margin-top: 8px; }
.apps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 760px) { .apps-row { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }
.app-chip { display: flex; flex-direction: column; background: white; border-radius: var(--radius); padding: 18px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.app-shot { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 15px; }
.app-chip h4 { font-family: 'Fredoka'; font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.app-chip p { color: var(--ink-soft); font-weight: 600; font-size: 14.5px; }

/* Plans comparison table */
.plans-table-wrap { max-width: 920px; margin: 26px auto 0; overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1.5px solid var(--line); }
table.plans { width: 100%; border-collapse: collapse; background: white; min-width: 620px; }
table.plans th, table.plans td { padding: 15px 16px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line); }
table.plans thead th { background: var(--ink); color: white; font-family: 'Nunito'; font-weight: 800; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; }
table.plans tbody tr:last-child td { border-bottom: 0; }
table.plans .plan-name { font-family: 'Fredoka'; font-weight: 600; font-size: 16px; color: var(--ink); }
table.plans .plan-price { font-weight: 900; color: var(--blue-deep); white-space: nowrap; }
table.plans td { color: var(--ink-soft); font-weight: 700; }
table.plans tr.free-row { background: var(--mint); }
table.plans tr.free-row .plan-price { color: var(--teal-deep); }
table.plans tr.free-row td:first-child::after { content: "Start here"; display: inline-block; margin-left: 8px; font-family: 'Nunito'; font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-deep); background: white; padding: 2px 8px; border-radius: 6px; vertical-align: middle; }
table.plans tr.trust-row { background: var(--lilac); }
table.plans tr.trust-row .plan-discount { color: var(--orange-deep); }
table.plans tr.trust-row td:first-child::after { content: "Best value"; display: inline-block; margin-left: 8px; font-family: 'Nunito'; font-size: 10px; font-weight: 900; letter-spacing: .06em; color: var(--blue-deep); background: white; padding: 2px 8px; border-radius: 6px; vertical-align: middle; }
.trust-note { max-width: 1120px; margin: 18px auto 0; text-align: center; font-weight: 700; color: var(--ink-soft); font-size: 14.5px; }
.trust-note strong { color: var(--ink); }

/* Unified pricing panel (free features + plan table + CTA as one group) */
.pricing-panel { max-width: 1120px; margin: 0 auto; background: white; border: 1.5px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.pp-included { padding: 28px 32px 24px; background: linear-gradient(180deg, var(--sky) 0%, #FFFFFF 100%); border-bottom: 1px solid var(--line); }
.pp-inc-head { text-align: center; font-family: 'Fredoka'; font-weight: 600; font-size: 20px; color: var(--ink); margin-bottom: 20px; }
.pp-inc-head .tag { display: inline-block; font-family: 'Nunito'; font-weight: 900; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--teal-deep); background: white; padding: 4px 10px; border-radius: 8px; margin-left: 8px; vertical-align: middle; box-shadow: var(--shadow-sm); }
.pp-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 30px; max-width: 660px; margin: 0 auto; }
@media (max-width: 620px) { .pp-feats { grid-template-columns: 1fr; gap: 11px; } }
.pp-feat { display: flex; gap: 10px; font-weight: 700; font-size: 15px; color: var(--ink-soft); align-items: flex-start; }
.pp-feat .ck { color: var(--teal-deep); font-weight: 900; flex-shrink: 0; }
.pricing-panel .plans-table-wrap { max-width: none; margin: 0; border: 0; border-radius: 0; box-shadow: none; }
.pricing-panel table.plans { min-width: 560px; }
.pp-foot { display: flex; flex-direction: column; align-items: center; gap: 11px; padding: 26px 32px 30px; text-align: center; border-top: 1px solid var(--line); }
.pp-foot .btn { min-width: 300px; }
@media (max-width: 480px) { .pp-foot .btn { min-width: 0; width: 100%; } }
.pp-foot-note { font-weight: 700; color: var(--ink-faint); font-size: 14px; max-width: 420px; }
.pp-foot-note em { font-style: normal; font-weight: 800; color: var(--blue-deep); }
.pp-foot-fine { font-weight: 700; color: var(--ink-faint); font-size: 12.5px; max-width: 480px; margin-top: 2px; }
.pp-foot-fine strong { color: var(--ink-soft); }

/* FAQ */
.faq-wrap { max-width: 1120px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details.faq { background: white; border-radius: var(--radius); border: 1.5px solid var(--line); padding: 4px 20px; box-shadow: var(--shadow-sm); }
details.faq summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 800; font-size: 17px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-family: 'Fredoka'; font-size: 26px; color: var(--blue); font-weight: 400; transition: transform .2s; }
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p { padding: 0 0 18px; color: var(--ink-soft); font-weight: 600; font-size: 15.5px; }

/* Final CTA band */
.final-cta { text-align: center; position: relative; overflow: hidden; color: white; }
.final-cta.blue { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%); }
.final-cta.orange { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%); }
.final-cta.teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%); }
.final-cta::before {
  content: "🐠 🦞 🐢 🦀 🐙 🦑 🐡 🐠 🐟 🦐"; position: absolute; inset: 0;
  font-size: 58px; opacity: .08; letter-spacing: 34px; display: flex; align-items: center;
  animation: drift 34s linear infinite; white-space: nowrap;
}
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-320px); } }
.final-cta h2 { font-size: clamp(30px, 5vw, 48px); color: white; margin-bottom: 12px; position: relative; }
.final-cta p { font-size: 19px; opacity: .93; margin-bottom: 30px; font-weight: 700; position: relative; }
.final-cta .btns { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-ghost { background: rgba(255,255,255,.14); color: white; border-color: rgba(255,255,255,.4); }
.final-cta .btn-ghost:hover { background: rgba(255,255,255,.24); border-color: white; color: white; }
.final-cta .btn-white { background: white; }
.final-cta.blue .btn-white { color: var(--blue-deep); }
.final-cta.orange .btn-white { color: var(--orange-deep); }
.final-cta.teal .btn-white { color: var(--teal-deep); }

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 46px 0 34px; }
.footer-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 28px; }
.footer .logo { color: white; }
.footer .logo-mark { box-shadow: none; }
.footer-tag { max-width: 260px; margin-top: 12px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.55); }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h5 { font-family: 'Nunito'; font-weight: 900; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 13px; }
.footer-col a { display: block; color: rgba(255,255,255,.8); font-weight: 700; font-size: 14.5px; padding: 5px 0; cursor: pointer; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; text-align: center; font-size: 13px; color: rgba(255,255,255,.45); font-weight: 600; }

.center { text-align: center; }
.mt-40 { margin-top: 40px; } .mt-24 { margin-top: 24px; }

/* ============ Small-screen polish ============ */
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  section.band { padding: 52px 0; }
  .section-head { margin-bottom: 34px; }
  .hero { padding: 40px 0 22px; }
  .hero .lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { gap: 10px 18px; margin-top: 18px; }
  .video-frame { margin-top: 30px; }
  .chooser-card, .feature, .price-card { padding: 24px 22px; }
  .chooser-card .cc-blob { font-size: 100px; }
  .apps-panel { padding: 24px 18px; }
  .ai-showcase .chat-body { max-height: none; }
  .bubble { max-width: 90%; }
  .split-media.balanced { max-width: 340px; margin-inline: auto; }
  .final-cta .btns { flex-direction: column; align-items: stretch; }
  .final-cta .btns .btn { width: 100%; }
  .footer-cols { gap: 30px 40px; }
  .amount .val { font-size: 46px; }
  details.faq summary { font-size: 16px; }
  .plans-table-wrap { border-radius: var(--radius); }
  table.plans th, table.plans td { padding: 12px 13px; }
}
@media (max-width: 380px) {
  .logo { font-size: 18px; }
  .logo-mark { width: 32px; height: 32px; font-size: 18px; }
  .btn-play { padding: 15px 28px; font-size: 19px; }
}
