/* ============================================================================
   sand.css v2 — GOLDEN HOUR, FULL BLAST
   Vibrant sticker-sheet system: blazing sunset hero, saturated color-blocked
   sections (teal / amber / sunshine), white sticker cards with ink outlines and
   hard offset shadows, vivid UAE-green actions, landmark game pieces.
   No beige. No muted anything.
   ========================================================================== */

/* ---- fonts (same families as the live site, same files) ------------------ */
@font-face { font-family: 'Amiri'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('/fonts/Amiri-Regular-Arabic.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF; }
@font-face { font-family: 'Amiri'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('/fonts/Amiri-Bold-Arabic.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF; }
@font-face { font-family: 'Montserrat Arabic'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('/fonts/MontserratArabic-Regular.woff2') format('woff2'), url('/fonts/MontserratArabic-Regular.woff') format('woff'); }
@font-face { font-family: 'Montserrat Arabic'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('/fonts/MontserratArabic-Bold.woff2') format('woff2'), url('/fonts/MontserratArabic-Bold.woff') format('woff'); }
@font-face { font-family: 'Unbounded'; font-style: normal; font-weight: 400 700; font-display: optional;
  src: url('/fonts/Unbounded-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 400 600; font-display: optional;
  src: url('/fonts/InstrumentSans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400 700; font-display: optional;
  src: url('/fonts/JetBrainsMono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ---- tokens --------------------------------------------------------------- */
:root {
  /* the blaze */
  --sun-1:   #FFE38C;   /* high sky */
  --sun-2:   #FFB147;   /* mid sky */
  --sun-3:   #FF8E52;   /* horizon */
  --dune-1:  #FFC145;
  --dune-2:  #F79E2D;
  --dune-3:  #EC8A0F;

  /* vivid blocks */
  --teal:    #00A79B;
  --teal-tint: #E0F6F2;
  --amber:   #FFB938;
  --sunshine:#FFE9A8;
  --white:   #FFFFFF;

  /* ink — deep roasted brown, outlines + text */
  --ink:     #2B1500;
  --ink-soft:#6E5335;

  /* actions — bright spring green (Ali: the old #00A651 read dark and dull) */
  --green:   #2EC66D;
  --green-deep: #1E9B54;
  --red:     #EF3340;   /* flag red, pops only */
  --gold:    #FFB300;

  --line: 3px solid var(--ink);
  --pop:  0 6px 0 var(--ink);        /* hard sticker shadow */
  --pop-sm: 0 4px 0 var(--ink);

  --f-disp: 'Unbounded', sans-serif;
  --f-body: 'Instrument Sans', sans-serif;
  --f-mono: 'JetBrains Mono', monospace;
  --f-ar:   'Montserrat Arabic', 'Amiri', serif;

  --r-card: 26px;
  --r-pill: 999px;
}

/* ---- reset + base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { max-width: 100%; height: auto; }
a { color: inherit; }
.ar { font-family: var(--f-ar); }

.wrap   { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-n { max-width: 880px;  margin: 0 auto; padding: 0 24px; }

/* ---- type ----------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border: 2.5px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
  padding: 6px 15px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
  transform: rotate(-1.5deg);
}
.sect-title {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.18;
  letter-spacing: -.01em;
}
.sect-sub { color: var(--ink-soft); font-size: 17px; max-width: 56ch; margin: 14px auto 0; }
.sect-head { text-align: center; margin-bottom: 52px; }
.tgold { color: #E88A00; }
.lead { color: var(--ink-soft); font-size: 17px; max-width: 50ch; margin: 16px 0 18px; }

/* accent word as a tilted highlight sticker */
.hlword {
  display: inline-block;
  background: var(--gold);
  border-radius: 12px;
  padding: 0 .18em;
  transform: rotate(-1.5deg);
  box-shadow: 3px 3px 0 var(--ink);
  border: 2.5px solid var(--ink);
}

/* ---- buttons: game buttons ------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-weight: 700; font-size: 16px;
  color: var(--ink); text-decoration: none; cursor: pointer;
  border: var(--line);
  padding: 14px 28px; border-radius: var(--r-pill);
  transition: transform .12s ease, box-shadow .12s ease;
  will-change: transform;
}
.btn-lg { padding: 17px 34px; font-size: 17.5px; }
.btn-sm { padding: 9px 20px; font-size: 14.5px; }
.btn-primary { background: var(--green); box-shadow: var(--pop); }
.btn-white   { background: var(--white); box-shadow: var(--pop); }
.btn:hover  { transform: translateY(-3px) scale(1.03); box-shadow: 0 9px 0 var(--ink); }
.btn:active { transform: translateY(4px) scale(1.04, .92); box-shadow: 0 1px 0 var(--ink); }
.btn svg { transition: transform .15s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ---- nav: outlined white pill --------------------------------------------- */
.nav-shell { position: fixed; top: 14px; left: 0; right: 0; z-index: 60; padding: 0 16px; }
.nav {
  max-width: 640px; margin: 0 auto;
  display: flex; align-items: center; gap: 6px;
  background: var(--white);
  border: var(--line);
  border-radius: var(--r-pill);
  padding: 5px 6px 5px 18px;
  box-shadow: 0 5px 0 var(--ink);
}
.brand {
  font-family: var(--f-disp); font-weight: 700; font-size: 19px;
  text-decoration: none; display: inline-flex; align-items: baseline; gap: 8px;
  flex-shrink: 0;
}
.brand .ar { color: #E88A00; font-size: 17px; font-weight: 700; }
.nav-links { display: flex; gap: 2px; margin-left: auto; }
.nav-link {
  text-decoration: none; font-weight: 600; font-size: 14.5px; color: var(--ink);
  padding: 7px 12px; border-radius: var(--r-pill);
  transition: background .15s ease;
  white-space: nowrap;
}
/* the CTA stays inside the pill: no shrink, tame the lift so the hard shadow
   never pokes past the nav's rounded edge */
.nav-shop { flex-shrink: 0; white-space: nowrap; padding: 8px 16px; font-size: 14px; box-shadow: 0 3px 0 var(--ink); }
.nav-shop:hover  { transform: translateY(-1px); box-shadow: 0 4px 0 var(--ink); }
.nav-shop:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink); }
.nav-link:hover { background: var(--sunshine); }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.burger span { display: block; width: 22px; height: 3px; background: var(--ink); border-radius: 2px; margin: 4.5px 0; transition: transform .2s, opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mnav {
  position: fixed; inset: 70px 16px auto 16px; z-index: 59;
  background: var(--white); border: var(--line); border-radius: var(--r-card);
  box-shadow: var(--pop);
  padding: 18px; display: none; flex-direction: column; gap: 4px;
}
.mnav.open { display: flex; }
.mnav-link { text-decoration: none; font-weight: 700; font-size: 17px; padding: 13px 16px; border-radius: 14px; }
.mnav-link:hover { background: var(--sunshine); }
.mnav .btn { justify-content: center; margin-top: 10px; }

/* ---- hero: the generated desert scene, copy in the open left third --------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 90px;
  /* approximates the art's sky-to-sand wash while the image loads */
  background: linear-gradient(180deg, #BDE8F0 0%, #FDF2CE 55%, #F7E0AC 100%);
  overflow: hidden;
}
.hero-art { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-art img {
  /* anchor the crop to the top: when the viewport is shorter than the art's
     16:10 shape, the desert foreground gives way, never Saqr's head */
  width: 100%; height: 100%; object-fit: cover; object-position: 76% 0%;
  display: block;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.hero-grid { position: relative; z-index: 4; width: 100%; }
.hero-copy { max-width: 580px; }
.hero-title {
  font-family: var(--f-disp); font-weight: 700;
  font-size: clamp(34px, 4.3vw, 60px);
  line-height: 1.16; letter-spacing: -.015em;
}
.hl-gold {
  position: relative; white-space: nowrap;
  display: inline-block;
  color: var(--gold);
  text-shadow: 3px 3px 0 var(--ink);
}
.hl-swash {
  position: absolute; left: 2%; bottom: -.16em; width: 96%; height: .16em;
  color: var(--ink); opacity: 1;
}
.hl-strike { position: relative; white-space: nowrap; }
.hl-strike svg {
  position: absolute; left: -3%; top: 52%; width: 106%; height: .28em;
  color: var(--red);
  filter: drop-shadow(1px 2px 0 rgba(255,255,255,.5));
}
.hero-sub { color: var(--ink); font-size: clamp(17px, 1.6vw, 19.5px); font-weight: 600; max-width: 44ch; margin: 22px 0 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- phrase marquee band: teal ---------------------------------------------- */
.phrase-band {
  background: var(--teal);
  border-top: var(--line); border-bottom: var(--line);
  padding: 24px 0;
  overflow: hidden;
  position: relative; z-index: 4;
}
.phrase-track {
  display: flex; gap: 18px; width: max-content;
  animation: marquee 36s linear infinite;
}
.phrase-band:hover .phrase-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pchip {
  display: inline-flex; align-items: baseline; gap: 10px;
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-pill);
  padding: 9px 20px;
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
}
.pchip b { font-size: 15px; font-weight: 700; }
.pchip .ar { font-size: 14px; color: #C67400; }
.pchip:nth-child(odd)  { transform: rotate(-1.4deg); }
.pchip:nth-child(even) { transform: rotate(1.4deg); }
.pchip:nth-child(4n)   { background: var(--gold); }
.pchip:nth-child(4n) .ar { color: var(--ink); }

/* ---- section chrome -------------------------------------------------------- */
.sect { position: relative; padding: 100px 0; }
.sect-white { background: var(--white); }
.sect-cream { background: var(--white); }
#talkback { background: var(--teal); }
#testimonials { background: var(--amber); }
#why { background: var(--sunshine); }
.faq-sect { background: var(--teal-tint); }
/* wavy section joins: each sep sits at the top of a section and is filled with
   the color of the section ABOVE it, so that color dips into this one. */
.sep {
  display: block; position: absolute; top: -1px; left: 0;
  width: 100%; height: 58px; pointer-events: none; z-index: 1;
}
.sep--white    { fill: var(--white); }
.sep--teal     { fill: var(--teal); }
.sep--amber    { fill: var(--amber); }
.sep--sunshine { fill: var(--sunshine); }

/* titles on vivid blocks */
#talkback .sect-title { color: var(--white); text-shadow: 3px 3px 0 rgba(0, 60, 55, .55); }
#talkback .sect-sub { color: #E9FFFB; }
#talkback .tgold { color: var(--gold); }
#testimonials .tgold { color: var(--white); text-shadow: 2px 2px 0 var(--ink); }

/* ---- e-books launch -------------------------------------------------------- */
.ebl-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 5fr); gap: 48px; align-items: center; }

/* game-shop price tags */
.ptags { display: flex; gap: 16px; flex-wrap: wrap; margin: 0 0 24px; }
.ptag {
  position: relative;
  display: flex; flex-direction: column; gap: 2px;
  background: var(--white);
  border: var(--line); border-radius: 18px;
  padding: 14px 22px;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-1deg);
  color: inherit; text-decoration: none; cursor: pointer;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease;
}
.ptag:hover { transform: rotate(-1deg) translateY(-4px) scale(1.03); box-shadow: 7px 9px 0 var(--ink); }
.ptag:active { transform: rotate(-1deg) translateY(1px) scale(1.02, .94); box-shadow: 3px 3px 0 var(--ink); }
.ptag-deal { background: var(--sunshine); transform: rotate(1deg); padding-right: 58px; }
.ptag-deal:hover { transform: rotate(1deg) translateY(-4px) scale(1.03); }
.ptag-deal:active { transform: rotate(1deg) translateY(1px) scale(1.02, .94); }
.ptag-go {
  margin-top: 5px;
  font-family: var(--f-mono); font-weight: 700; font-size: 10.5px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-deep);
  transition: transform .18s ease;
}
.ptag-deal .ptag-go { color: var(--ink); }
.ptag:hover .ptag-go { transform: translateX(3px); }
.ptag-k { font-family: var(--f-mono); font-weight: 700; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.ptag-v { font-family: var(--f-disp); font-weight: 700; font-size: 22px; line-height: 1.2; }
.ptag-v s { font-family: var(--f-mono); font-weight: 400; font-size: 13px; color: var(--ink-soft); margin-left: 6px; }
.ptag-save {
  position: absolute; top: -16px; right: -18px;
  background: var(--red); color: var(--white);
  border: 2.5px solid var(--ink); border-radius: 999px;
  font-family: var(--f-mono); font-weight: 700; font-size: 10.5px; line-height: 1.25;
  letter-spacing: .04em; text-align: center;
  padding: 9px 10px;
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 var(--ink);
  animation: savepulse 2.6s ease-in-out infinite;
}
@keyframes savepulse { 0%, 100% { transform: rotate(8deg) scale(1); } 50% { transform: rotate(8deg) scale(1.08); } }
.ebl-stage {
  position: relative; display: flex; justify-content: center; align-items: flex-end;
  min-height: 360px; perspective: 1100px;
}
.ebl-pool {
  position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%);
  width: 86%; height: 46px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 179, 0, .55), transparent 72%);
  filter: blur(5px);
}
.bk {
  position: relative; flex: 0 0 auto; border-radius: 8px;
  border: var(--line);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px)) rotate(var(--rz, 0deg));
  transition: transform .45s cubic-bezier(.2, .7, .2, 1);
  overflow: hidden;
}
/* the art never moves inside its ink frame (owner rule: animate the frame,
   never the cover). Motion lives on .bk itself: the hover flatten + lift. */
.bk img { display: block; width: 100%; height: auto; }
/* the three books present as equals: same width, the middle one only slightly
   lifted so the fan still reads */
.bk-l { width: 31%; z-index: 1; --ry: 13deg;  --rz: -3deg; }
.bk-r { width: 31%; z-index: 1; --ry: -13deg; --rz: 3deg; }
.bk-m { width: 31%; z-index: 2; margin: 0 -2%; --ty: -6px; }
.ebl-stage:hover .bk { --ry: 0deg; --rz: 0deg; }
.ebl-stage:hover .bk-m { --ty: -14px; }

/* the rule-of-three path: 1 basics → 2 real life → 3 your own words = bundle */
.path-wrap { margin-top: 64px; }
.path {
  display: flex; align-items: stretch; gap: 14px;
}
.pstep {
  flex: 1;
  background: var(--white);
  border: var(--line); border-radius: 20px;
  padding: 22px 22px 20px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s ease;
}
.pstep:nth-child(1) { transform: rotate(-.7deg); }
.pstep:nth-child(5) { transform: rotate(.7deg); }
.pstep:hover { transform: translateY(-5px) rotate(0deg); }
.pstep-n {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
  font-family: var(--f-disp); font-weight: 700; font-size: 16px;
  margin-bottom: 12px;
}
.pstep-n-green { background: var(--green); color: var(--ink); }
.pstep-n-gold  { background: var(--gold); color: var(--ink); }
.pstep-n-red   { background: var(--red); color: var(--white); }
.pstep b { display: block; font-size: 16.5px; margin-bottom: 4px; }
.pstep > span:not(.pstep-n) { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.path-arrow {
  align-self: center; flex: 0 0 auto;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--sunshine); color: var(--ink);
  border: 2.5px solid var(--ink);
  display: grid; place-items: center;
}
.path-arrow svg { width: 16px; height: 16px; }
.path-cap { text-align: center; font-size: 16.5px; color: var(--ink-soft); margin-top: 26px; }
.path-cap b {
  color: var(--ink);
  background: var(--sunshine); border-radius: 8px; padding: 1px 8px;
  border: 2px solid var(--ink); box-shadow: 2px 2px 0 var(--ink);
  display: inline-block; transform: rotate(-1deg);
}

/* ---- textbooks that talk back (teal block) ---------------------------------- */
.tb-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); gap: 56px; align-items: center; }
.tb-book { position: relative; display: flex; justify-content: center; }
.tb-cover {
  width: min(100%, 300px); border-radius: 10px;
  border: var(--line);
  box-shadow: 10px 10px 0 rgba(0, 60, 55, .5);
  transform: rotate(-2.5deg);
  transition: transform .3s ease;
}
.tb-book:hover .tb-cover { transform: rotate(0deg) scale(1.02); }
.tb-qr {
  position: absolute; right: 0%; bottom: -8%;
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  padding: 10px 14px; text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(3deg);
  font-size: 12.5px; line-height: 1.35; color: var(--ink-soft);
  transition: transform .2s ease;
}
.tb-qr:hover { transform: rotate(0deg) translateY(-3px); }
.tb-qr b { color: var(--ink); }
.tb-qr img { border-radius: 8px; }
.tb-feats { display: flex; flex-direction: column; gap: 16px; }
.feat {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white);
  border: var(--line);
  border-radius: 20px;
  padding: 17px 21px;
  box-shadow: 5px 5px 0 rgba(0, 60, 55, .55);
  transition: transform .18s ease;
}
.feat:hover { transform: translate(3px, -3px) rotate(-.4deg); }
.feat-ico {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 14px;
  border: 2.5px solid var(--ink);
  background: var(--sunshine);
  display: grid; place-items: center;
  color: #B26800;
}
.feat-ico svg { width: 30px; height: 30px; }

/* live mini-animations, ported from the current site (preview-kit.css fx-*):
   each icon moves to show what the feature does. Pure CSS, no JS. */
.fx-eq { display: flex; align-items: center; gap: 2.5px; height: 26px; }
.fx-eq i { display: block; width: 3.5px; height: 30%; border-radius: 999px; background: linear-gradient(180deg, var(--gold), var(--green)); animation: fxEq 1.1s ease-in-out infinite; }
.fx-eq i:nth-child(1) { --h: 45%; animation-delay: -.20s; }
.fx-eq i:nth-child(2) { --h: 80%; animation-delay: -.55s; }
.fx-eq i:nth-child(3) { --h: 100%; animation-delay: 0s; }
.fx-eq i:nth-child(4) { --h: 70%; animation-delay: -.35s; }
.fx-eq i:nth-child(5) { --h: 50%; animation-delay: -.15s; }
@keyframes fxEq { 0%, 100% { height: 25%; } 50% { height: var(--h, 90%); } }

.fx-wave { overflow: visible; }
.fx-wave .fw-body { fill: var(--ink); stroke: none; }
.fx-wave .fw-arc { fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; transform-origin: 11px 12px; animation: fxWave 2.2s ease-in-out infinite; }
.fx-wave .fw-arc + .fw-arc { animation-delay: .3s; }
@keyframes fxWave { 0%, 100% { opacity: .22; transform: scale(.8); } 45% { opacity: 1; transform: scale(1); } }

.fx-cards { position: relative; width: 26px; height: 31px; perspective: 220px; }
.fx-cards-back { position: absolute; inset: 0; border: 2px solid var(--ink); border-radius: 4px; background: var(--white); transform: translate(4px, 3px) rotate(5deg); opacity: .4; }
.fx-cards-flip { position: absolute; inset: 0; transform-style: preserve-3d; animation: fxFlip 3.8s ease-in-out infinite; }
.fx-cards-flip b { position: absolute; inset: 0; border: 2px solid var(--ink); border-radius: 4px; background: var(--white); backface-visibility: hidden; display: grid; place-items: center; }
.fx-cards-flip .ff-front { font-family: var(--f-ar); font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1; }
.fx-cards-flip .ff-back { transform: rotateY(180deg); background: var(--gold); }
@keyframes fxFlip { 0%, 30% { transform: rotateY(0); } 58%, 84% { transform: rotateY(180deg); } 100% { transform: rotateY(360deg); } }

.fx-scan { position: relative; width: 21px; height: 27px; border-radius: 4px; border: 2px solid var(--ink); background: var(--white); overflow: hidden; }
.fx-scan::before { content: ''; position: absolute; left: 4px; right: 4px; top: 5px; height: 2px; border-radius: 9px; background: var(--ink); opacity: .4; box-shadow: 0 5px 0 -.25px var(--ink), 0 10px 0 -.25px var(--ink); }
.fx-scan b { position: absolute; left: -1px; right: -1px; top: 1px; height: 2.5px; background: linear-gradient(90deg, transparent, var(--green-deep), transparent); box-shadow: 0 0 6px var(--green); animation: fxScan 1.9s ease-in-out infinite; }
@keyframes fxScan { 0% { top: 1px; } 50% { top: calc(100% - 5px); } 100% { top: 1px; } }
.feat-tx b { display: block; font-size: 16.5px; margin-bottom: 2px; }
.feat-tx span { color: var(--ink-soft); font-size: 14.5px; }
.tb-note {
  font-family: var(--f-mono); font-size: 13px; font-weight: 700;
  color: var(--white); margin: 8px 0 14px;
}

/* ---- compare ---------------------------------------------------------------- */
.vs {
  background: var(--white);
  border: var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--pop);
  overflow: hidden;
}
.vs-head, .vs-row {
  display: grid; grid-template-columns: 130px 1fr 1fr; gap: 14px;
  padding: 18px 26px; align-items: center;
}
.vs-head { padding-bottom: 6px; }
.vs-tag {
  justify-self: start; font-family: var(--f-mono); font-weight: 700;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: var(--r-pill);
  border: 2px solid var(--ink);
}
.vs-tag-us   { background: var(--green); color: var(--ink); box-shadow: 2px 2px 0 var(--ink); }
.vs-tag-them { background: #EFEFEA; color: var(--ink-soft); }
.vs-row { border-top: 2.5px dashed #F0DCA8; }
.vs-k { font-family: var(--f-mono); font-weight: 700; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.vs-us, .vs-them { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.vs-us { font-weight: 600; }
.vs-them { color: var(--ink-soft); }
.vs-ic { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; }
.vs-ic svg { width: 12px; height: 12px; }
.vs-ic.yes { background: var(--green); color: var(--ink); }
.vs-ic.no  { background: var(--red); color: var(--white); }
/* checkmarks draw themselves when the table reveals */
.vs-ic.yes svg polyline { stroke-dasharray: 26; stroke-dashoffset: 26; }
.vs.in .vs-ic.yes svg polyline { animation: drawCheck .5s ease forwards; }
.vs.in .vs-row:nth-child(2) .vs-ic.yes svg polyline { animation-delay: .25s; }
.vs.in .vs-row:nth-child(3) .vs-ic.yes svg polyline { animation-delay: .5s; }
.vs.in .vs-row:nth-child(4) .vs-ic.yes svg polyline { animation-delay: .75s; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

/* ---- testimonials (amber block) --------------------------------------------- */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.t-card {
  background: var(--white);
  border: var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 6px 6px 0 var(--ink);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .2s ease;
}
.t-card:nth-child(odd)  { transform: rotate(-.7deg); }
.t-card:nth-child(even) { transform: rotate(.7deg); }
.t-card:hover { transform: translateY(-6px) rotate(0deg); }
.t-card blockquote { font-size: 15px; line-height: 1.65; }
.t-card blockquote::before { content: '\201C'; display: block; font-family: var(--f-disp); font-size: 36px; line-height: .6; color: var(--amber); margin-bottom: 10px; -webkit-text-stroke: 1.5px var(--ink); }
.t-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t-ava {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  border: 2.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-disp); font-weight: 700; font-size: 16px;
}
.t-card:nth-child(2n) .t-ava { background: var(--red); }
.t-card:nth-child(3n) .t-ava { background: var(--green); color: var(--ink); }
.t-card figcaption b { display: block; font-size: 14.5px; }
.t-card figcaption i { display: block; font-style: normal; font-family: var(--f-mono); font-size: 11.5px; color: var(--ink-soft); }
.bridge { text-align: center; margin-top: 48px; }

/* ---- AI suite ---------------------------------------------------------------- */
.show { max-width: 780px; margin: 0 auto; }
.show-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.show-tab {
  font-family: var(--f-body); font-weight: 700; font-size: 14.5px;
  background: var(--white); color: var(--ink);
  border: 2.5px solid var(--ink); cursor: pointer;
  padding: 10px 20px; border-radius: var(--r-pill);
  box-shadow: 0 3px 0 var(--ink);
  transition: background .15s, transform .12s, box-shadow .12s;
}
.show-tab:hover { transform: translateY(-2px); box-shadow: 0 5px 0 var(--ink); }
.show-tab.is-on { background: var(--teal); color: var(--white); }
.show-track { position: relative; }
.slide { display: none; }
.slide.is-on { display: block; animation: slidein .35s ease; }
@keyframes slidein { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.slide-cap { text-align: center; color: var(--ink-soft); font-size: 16px; margin-bottom: 22px; }
.show-dots { display: flex; gap: 8px; justify-content: center; margin-top: 26px; }
.show-dot {
  width: 12px; height: 12px; border-radius: 50%; cursor: pointer;
  background: var(--white); border: 2px solid var(--ink);
  transition: background .15s, transform .15s;
}
.show-dot.is-on { background: var(--teal); transform: scale(1.25); }

/* demo cards */
.demo {
  background: var(--white);
  border: var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--pop);
  max-width: 560px; margin: 0 auto; overflow: hidden;
}
.demo-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; border-bottom: 2.5px solid var(--ink);
  background: var(--sunshine);
}
.demo-title { font-family: var(--f-mono); font-weight: 700; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); }
.demo-badge {
  font-family: var(--f-mono); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  background: var(--green); color: var(--ink);
  border: 2px solid var(--ink);
  padding: 3px 11px; border-radius: var(--r-pill);
}
.demo-badge-ghost { background: var(--white); color: var(--ink-soft); }
.demo-chat { display: flex; flex-direction: column; gap: 10px; padding: 22px; }
.bub { max-width: 84%; border-radius: 18px; padding: 12px 16px; font-size: 14.5px; line-height: 1.5; border: 2.5px solid var(--ink); }
.bub-user { align-self: flex-end; background: var(--teal); color: var(--white); border-bottom-right-radius: 6px; box-shadow: 3px 3px 0 var(--ink); }
.bub-user i { font-style: normal; opacity: .85; }
.bub-ai { align-self: flex-start; background: var(--sunshine); border-bottom-left-radius: 6px; box-shadow: 3px 3px 0 var(--ink); }
.bub-ai .ar { display: block; font-size: 18px; color: #B26800; margin-bottom: 2px; }
.bub-ai b { font-weight: 700; }
.bub-ai i { display: block; font-style: normal; color: var(--ink-soft); font-size: 12.5px; margin-top: 2px; }
.demo-inrow {
  display: flex; align-items: center; gap: 12px;
  margin: 0 22px 22px; padding: 10px 10px 10px 18px;
  background: var(--white); border: 2.5px solid var(--ink); border-radius: var(--r-pill);
}
.demo-in { flex: 1; color: var(--ink-soft); font-size: 14.5px; }
.demo-send {
  background: var(--green); color: var(--ink);
  border: 2px solid var(--ink); box-shadow: 0 2.5px 0 var(--ink);
  font-weight: 700; font-size: 14px;
  padding: 6px 18px; border-radius: var(--r-pill);
}

/* Saqr call */
.demo-call { min-height: 380px; }
.call-ring { position: relative; display: flex; flex-direction: column; align-items: center; padding: 34px 22px; text-align: center; }
.call-pulse {
  position: absolute; top: 26px; width: 130px; height: 130px; border-radius: 50%;
  border: 3px solid var(--green); opacity: 0;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.8); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }
.call-ava { width: 110px; height: auto; }
.call-name { font-family: var(--f-disp); font-weight: 700; font-size: 20px; margin-top: 14px; }
.call-status { font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px; }
.call-answer {
  width: 62px; height: 62px; border-radius: 50%; cursor: pointer;
  background: var(--green); color: var(--ink);
  border: var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-top: 20px;
  box-shadow: 0 4px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
  animation: ringwiggle 1.6s ease-in-out infinite;
}
.call-answer:hover { transform: scale(1.06); }
.call-answer:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--ink); }
@keyframes ringwiggle { 0%, 100% { rotate: 0deg; } 10% { rotate: -8deg; } 20% { rotate: 8deg; } 30% { rotate: -6deg; } 40% { rotate: 6deg; } 50% { rotate: 0deg; } }
.call-hint { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }
.call-live { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.call-head { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 2.5px dashed #F0DCA8; }
.call-mini { width: 40px; height: auto; }
.call-meta b { display: block; font-size: 15px; }
.call-meta i { font-style: normal; font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--green-deep); }
.turn { border-radius: 18px; padding: 12px 16px; max-width: 88%; border: 2.5px solid var(--ink); }
.turn.them { background: var(--sunshine); align-self: flex-start; border-bottom-left-radius: 6px; box-shadow: 3px 3px 0 var(--ink); }
.turn.you  { background: var(--teal); color: var(--white); align-self: flex-end; border-bottom-right-radius: 6px; box-shadow: 3px 3px 0 var(--ink); }
.turn .who { display: block; font-family: var(--f-mono); font-weight: 700; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-bottom: 3px; }
.turn b { display: block; font-size: 15px; }
.turn .ar { display: block; font-size: 15px; margin: 2px 0; }
.turn.them .ar { color: #B26800; }
.turn i { display: block; font-style: normal; font-size: 12.5px; opacity: .8; }

/* trace */
.trace-pad {
  margin: 22px; height: 200px; border-radius: 18px;
  background: var(--teal-tint);
  border: 2.5px dashed var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.trace-letter { font-family: var(--f-ar); font-size: 110px; line-height: 1; color: rgba(43, 21, 0, .28); }
.trace-row { display: flex; align-items: center; justify-content: space-between; padding: 0 22px 22px; }
.trace-name { font-weight: 700; font-size: 16px; }
.trace-name em { font-style: normal; font-family: var(--f-mono); font-size: 13px; color: var(--ink-soft); margin-left: 6px; }

/* pronunciation */
.pron { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 28px 22px 30px; text-align: center; }
.pron-word .ar { display: block; font-size: 40px; color: #B26800; line-height: 1.3; }
.pron-word b { display: block; font-family: var(--f-mono); font-size: 15px; }
.pron-word i { display: block; font-style: normal; color: var(--ink-soft); font-size: 13.5px; }
.wave { display: flex; align-items: center; gap: 4px; height: 30px; }
.wave span { width: 5px; border-radius: 3px; background: var(--teal); animation: wavey 1.1s ease-in-out infinite; }
.wave span:nth-child(odd)  { height: 12px; }
.wave span:nth-child(even) { height: 24px; animation-delay: .18s; background: var(--gold); }
.wave span:nth-child(3n)   { height: 18px; animation-delay: .32s; background: var(--red); }
@keyframes wavey { 0%, 100% { transform: scaleY(.6); } 50% { transform: scaleY(1.25); } }
.pron-mic {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--red); color: var(--white);
  border: var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 0 var(--ink);
}
.pron-hint { font-family: var(--f-mono); font-size: 12px; color: var(--ink-soft); }

/* ---- why (sunshine block) ----------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why {
  background: var(--white);
  border: var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s ease;
}
.why:nth-child(odd)  { transform: rotate(-.6deg); }
.why:nth-child(even) { transform: rotate(.6deg); }
.why:hover { transform: translateY(-7px) rotate(0deg); }
.why-ico {
  width: 50px; height: 50px; border-radius: 16px;
  border: 2.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-ico svg { width: 26px; height: 26px; }
.why-ico-green { background: var(--green); color: var(--ink); }
.why-ico-gold  { background: var(--gold); color: var(--ink); }
.why-ico-red   { background: var(--red); color: var(--white); }
.why-ico-ink   { background: var(--teal); color: var(--white); }
.why h3 { font-family: var(--f-disp); font-weight: 700; font-size: 16.5px; margin-bottom: 8px; }
.why p { color: var(--ink-soft); font-size: 14.5px; }

/* ---- final CTA: sunset reprise ------------------------------------------------- */
.final {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF4D2 60%, var(--sunshine) 100%);
  padding: 110px 0 110px;
  text-align: center;
}
.final-sun {
  position: absolute; bottom: -300px; left: 50%; transform: translateX(-50%);
  width: 740px; height: 740px; border-radius: 50%;
  background: radial-gradient(circle, #FFF8E0 0%, rgba(255, 231, 150, .7) 45%, transparent 70%);
  pointer-events: none;
}
.final-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.final-saqr { width: min(46vw, 230px); margin-bottom: 8px; filter: drop-shadow(0 18px 24px rgba(120, 50, 0, .3)); }
.final-sub { color: var(--ink); font-weight: 600; font-size: 17px; margin: 14px 0 26px; }
.final-promise { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--ink); margin-top: 24px; }
.final-promise svg { color: var(--green-deep); flex: 0 0 auto; }
.final-promise a { color: inherit; }

/* ---- Saqr's Guarantee: a wax-seal sticker over the real refund terms ---------- */
.guar {
  display: flex; align-items: center; gap: 22px; text-align: left;
  max-width: 560px; margin: 40px auto 0;
  background: var(--white);
  border: var(--line); border-radius: var(--r-card);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 22px 26px;
  transform: rotate(-.6deg);
}
.guar-center { margin-left: auto; margin-right: auto; }
.guar-saqr { flex: 0 0 96px; width: 96px; }
.guar-saqr img { display: block; width: 100%; height: auto; filter: drop-shadow(0 6px 10px rgba(120, 50, 0, .25)); }
.guar-title {
  display: block;
  font-family: var(--f-disp); font-weight: 700; font-size: 19px;
  margin-bottom: 6px;
}
.guar-tx p { font-size: 14.5px; line-height: 1.55; color: var(--ink); margin: 0; }
.guar-tx a { color: inherit; font-weight: 700; }
@media (max-width: 560px) {
  .guar { flex-direction: column; text-align: center; gap: 14px; padding: 24px 20px; }
}

/* ---- testimonial stars (added on the owner's instruction) --------------------- */
.t-stars {
  display: block; margin-bottom: 8px;
  color: var(--gold); font-size: 15px; letter-spacing: 3px; line-height: 1;
  text-shadow: 1px 1px 0 var(--ink);
}

/* ---- instagram ------------------------------------------------------------------ */
.ig { padding-bottom: 84px; }
.ig-band { overflow: hidden; margin-top: 8px; }
.ig-row { display: flex; gap: 16px; width: max-content; animation: marquee 60s linear infinite; }
.ig-band:hover .ig-row { animation-play-state: paused; }
.ig-item {
  flex: 0 0 auto; width: 200px; border-radius: 18px; overflow: hidden;
  border: var(--line);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s ease;
}
.ig-item:nth-child(odd) { transform: rotate(-1deg); }
.ig-item:nth-child(even) { transform: rotate(1deg); }
.ig-item:hover { transform: translateY(-6px) rotate(0deg); }
/* a touch more portrait than 4/5 — posters read better slightly rectangular
   (Ali, 2026-08-14), but not so tall they dominate the band */
.ig-item img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.ig-follow { text-align: center; margin-top: 40px; }

/* ---- FAQ -------------------------------------------------------------------------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.fq {
  background: var(--white);
  border: var(--line);
  border-radius: 18px;
  box-shadow: 4px 4px 0 var(--ink);
  overflow: hidden;
}
.fq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 700; font-size: 16px;
  padding: 18px 24px;
}
.fq summary::-webkit-details-marker { display: none; }
.fq-ico {
  flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
  transition: transform .2s ease, background .2s ease;
}
.fq[open] .fq-ico { transform: rotate(45deg); background: var(--teal); color: var(--white); }
.fq-a { padding: 0 24px 20px; color: var(--ink-soft); font-size: 15px; max-width: 62ch; }

/* ---- footer ------------------------------------------------------------------------ */
.foot { position: relative; background: var(--ink); color: #FFE9C4; padding: 84px 0 34px; }
.foot-dune { position: absolute; top: -1px; left: 0; width: 100%; height: 80px; fill: var(--teal-tint); transform: scaleY(-1); }
.foot-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.brand-foot { color: #FFF; font-size: 22px; }
.brand-foot .ar { color: var(--gold); }
.foot-ig { display: inline-flex; align-items: center; gap: 8px; color: #FFE9C4; text-decoration: none; font-size: 14px; }
.foot-ig:hover { color: #FFF; }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; margin: 26px 0 10px; font-size: 13.5px; }
.foot-links a { color: rgba(255, 233, 196, .8); text-decoration: none; }
.foot-links a:hover { color: #FFF; }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .08em;
  color: rgba(255, 233, 196, .6);
  border-top: 1px solid rgba(255, 233, 196, .2);
  padding-top: 20px; margin-top: 18px;
}

/* ---- reveals: springy pop-in with stagger (delay set by v2.js) ---------------------- */
.reveal {
  opacity: 0; transform: translateY(26px) scale(.97);
  transition: opacity .5s ease, transform .6s cubic-bezier(.34, 1.56, .64, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* level chips: the page reads as a numbered path */
.lvl {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  border: 2.5px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
  font-family: var(--f-mono); font-weight: 700; font-size: 12.5px;
  margin: 0 auto 12px;
  transform: rotate(-4deg);
}
.ebl-copy .lvl { margin: 0 10px 12px 0; vertical-align: middle; }
#talkback .lvl { background: var(--gold); color: var(--ink); }
#testimonials .lvl { background: var(--white); color: var(--ink); }
#why .lvl { background: var(--red); color: var(--white); }

/* scroll progress: the game bar */
.pbar {
  position: fixed; top: 0; left: 0; right: 0; height: 5px; z-index: 90;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform-origin: 0 50%; transform: scaleX(0);
  border-bottom: 2px solid var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .phrase-track, .ig-row, .call-answer, .wave span,
  .bk img, .ptag-save, .fx-eq i, .fx-cards-flip, .fx-scan b, .fx-wave .fw-arc { animation: none !important; }
  .fx-wave .fw-arc { opacity: 1; transform: none; }
  .fx-eq i { height: 65%; }
  .vs-ic.yes svg polyline { stroke-dashoffset: 0 !important; }
}

/* ---- responsive --------------------------------------------------------------------- */
@media (max-width: 980px) {
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .tb-grid { grid-template-columns: 1fr; gap: 60px; }
  .tb-book { max-width: 340px; margin: 0 auto; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-shop { display: none; }
  .burger { display: block; margin-left: auto; }
  /* phone hero: the portrait art full-bleed (same 9:19.5 shape as the phones
     it was drawn for). Title and sub live in the open sky at the top, the
     CTAs sit on the stone platforms at the bottom, Saqr and the runner own
     the middle. */
  .hero { padding: 96px 0 0; min-height: 100svh; justify-content: flex-start; }
  .hero-art img { object-position: 50% 70%; }
  /* a soft cream veil over the top of the art so the copy reads without
     touching the artwork itself; it fades out before the runner */
  .hero-art::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(253, 242, 206, .88) 0%, rgba(253, 242, 206, .55) 30%, transparent 50%);
  }
  .hero-grid { position: static; } /* so the CTAs anchor to .hero, not the grid */
  .hero-copy { max-width: none; text-align: center; }
  .hero-title { font-size: clamp(30px, 8.6vw, 38px); text-shadow: 0 2px 14px rgba(255, 255, 255, .55); }
  .hero-sub { margin-left: auto; margin-right: auto; max-width: 320px; font-size: 15px; text-shadow: 0 1px 10px rgba(255, 255, 255, .7); }
  .hero-ctas { position: absolute; left: 16px; right: 16px; bottom: max(26px, env(safe-area-inset-bottom)); justify-content: center; z-index: 5; }
  .ebl-grid { grid-template-columns: 1fr; gap: 34px; }
  .ebl-stage { order: -1; min-height: 0; }
  .ebl-copy { text-align: center; }
  .ebl-copy .lead { margin-left: auto; margin-right: auto; }
  .path { flex-direction: column; }
  .path-arrow { transform: rotate(90deg); margin: -4px auto; }
  .vs-head, .vs-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 20px; }
  .vs-head { display: none; }
  .vs-k { margin-bottom: 2px; }
  .sect { padding: 76px 0; }
  .sep { height: 34px; }
}
@media (max-width: 560px) {
  .t-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(32px, 9.4vw, 42px); }
  .btn-lg { padding: 15px 26px; font-size: 16px; }
  .ig-item { width: 160px; }
  .tb-qr { right: -2%; }
}

/* ============================================================================
   PAGES — the rest of the public site in the same sticker-sheet system.
   Shop (.shp-*), auth card (.au-*), free handbook (.gc-* reskin),
   404 (.nf-*), about (.ab-*), shared utilities.
   ========================================================================== */

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* colored section blocks by class (the homepage keys these to ids) */
.sect-tealblock { background: var(--teal); }
.sect-tealblock .sect-title { color: var(--white); text-shadow: 3px 3px 0 rgba(0, 60, 55, .55); }
.sect-tealblock .sect-sub { color: #E9FFFB; }
.sect-tealblock .tgold { color: var(--gold); }
.sect-tealblock .lvl-gold { background: var(--gold); color: var(--ink); }

/* ---- SHOP ------------------------------------------------------------------ */
.shp-hero { padding-top: 150px; background: var(--white); }
.shp-title {
  font-family: var(--f-disp); font-weight: 700;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.16; letter-spacing: -.015em;
  text-align: center; margin-bottom: 46px;
}

/* the offer band: one sunshine sticker, covers left, deal right */
.shp-offer {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);
  gap: 40px; align-items: center;
  background: var(--teal-tint);
  border: var(--line); border-radius: var(--r-card);
  box-shadow: var(--pop);
  padding: 42px 46px;
  transform: rotate(-.4deg);
}
.shp-offer-stage { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 360px; perspective: 1100px; }
.shp-offer-stage .shp-pool {
  position: absolute; left: 50%; bottom: -4px; transform: translateX(-50%);
  width: 88%; height: 46px; border-radius: 50%;
  background: rgba(0, 96, 88, .18);
}
.shp-offer-tx { display: flex; flex-direction: column; align-items: flex-start; }
.shp-offer-name { font-family: var(--f-disp); font-weight: 700; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.2; margin-bottom: 8px; }
.shp-offer-line { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; }
/* the value stack: one row per named thing the payment buys */
/* the value stack lives in its own #value section down the page, not in the
   opening offer (Ali, 2026-08-14) */
.shp-value { max-width: 620px; margin: 0 auto; }
.shp-value .shp-stack { box-shadow: 5px 5px 0 var(--ink); }
.shp-stack-deal { font-size: 15px; color: var(--ink); }
.shp-stack-deal b { font-family: var(--f-disp); font-weight: 700; font-size: 24px; }
.shp-value-cta { text-align: center; margin-top: 22px; }
.shp-stack { list-style: none; margin: 0 0 12px; padding: 14px 16px; background: var(--teal-tint); border: 2.5px solid var(--ink); border-radius: 16px; }
.shp-stack li { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 7px 0; }
.shp-stack li + li { border-top: 2px dashed rgba(43, 21, 0, .18); }
.stk-n { font-weight: 700; font-size: 14.5px; line-height: 1.3; }
.stk-n i { display: block; font-style: normal; font-weight: 500; font-size: 12.5px; color: var(--ink-soft); }
.stk-v { font-family: var(--f-mono); font-weight: 700; font-size: 12.5px; white-space: nowrap; }
.stk-inc { color: var(--green-deep); text-transform: uppercase; letter-spacing: .05em; font-size: 11px; }
.shp-stack-total { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; align-self: stretch; width: 100%; margin: 0 2px 14px; font-size: 13px; color: var(--ink-soft); }
.shp-stack-total s { font-family: var(--f-mono); font-weight: 700; }
.shp-credit { margin-top: 12px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.shp-card-credit { margin-top: 8px; font-family: var(--f-mono); font-weight: 700; font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); }
.shp-price { position: relative; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; padding-right: 64px; }
.shp-price b { font-family: var(--f-disp); font-weight: 700; font-size: clamp(30px, 3.4vw, 40px); line-height: 1; }
.shp-price span { font-size: 15px; color: var(--ink-soft); font-weight: 600; }
.shp-price s { font-family: var(--f-mono); font-size: 14px; color: var(--ink-soft); }
.shp-price .ptag-save { top: -34px; right: -22px; }
.shp-guar { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-size: 13px; color: var(--ink-soft); }
.shp-guar svg { color: var(--green-deep); }
.shp-guar a { color: var(--ink); }

.shp-or { display: flex; align-items: center; gap: 18px; margin: 54px 0 46px; color: var(--ink-soft); }
.shp-or::before, .shp-or::after { content: ""; flex: 1; height: 3px; border-radius: 3px; background: #F0DCA8; }
.shp-or span { font-family: var(--f-mono); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

/* the "best value" ribbon on the deal band */
.shp-ribbon {
  position: absolute; top: -16px; left: 30px;
  background: var(--green); color: var(--ink);
  border: 2.5px solid var(--ink); border-radius: var(--r-pill);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--f-mono); font-weight: 700; font-size: 11.5px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 16px;
  transform: rotate(-2deg);
}

/* single volumes: the store shelf — product cards, price + buy on every one */
.shp-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; align-items: stretch; }
.shp-card {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--white);
  border: var(--line); border-radius: var(--r-card);
  box-shadow: var(--pop);
  padding: 26px 22px 24px;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease;
}
.shp-card:nth-child(1) { transform: rotate(-.5deg); }
.shp-card:nth-child(3) { transform: rotate(.5deg); }
.shp-card:hover { transform: translateY(-6px) rotate(0deg); box-shadow: 0 12px 0 var(--ink); }
.shp-card-cover { position: relative; display: flex; justify-content: center; padding: 10px 0 16px; width: 100%; }
.shp-card-cover::before {
  content: ""; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
  width: 72%; height: 30px; border-radius: 50%;
}
.shp-stage-green::before { background: rgba(46, 198, 109, .3); }
.shp-stage-gold::before  { background: rgba(255, 179, 0, .3); }
.shp-stage-red::before   { background: rgba(239, 51, 64, .22); }
.shp-card-cover img {
  width: min(100%, 180px); border-radius: 8px;
  border: var(--line);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-2deg);
  transition: transform .25s ease;
  position: relative; z-index: 1;
}
.shp-card:hover .shp-card-cover img { transform: rotate(0deg) translateY(-4px); }
.shp-card-step {
  display: inline-block;
  font-family: var(--f-mono); font-weight: 700; font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  border: 2px solid var(--ink); border-radius: var(--r-pill);
  padding: 4px 12px; margin-bottom: 10px;
  box-shadow: 0 2px 0 var(--ink);
  transform: rotate(-1deg);
}
.shp-step-green { background: var(--green); }
.shp-step-gold  { background: var(--gold); }
.shp-step-red   { background: var(--red); color: var(--white); }
.shp-name { font-family: var(--f-disp); font-weight: 700; font-size: 19px; line-height: 1.25; margin-bottom: 5px; }
.shp-role { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.shp-inside { color: var(--ink-soft); font-size: 14px; margin-bottom: 18px; }
.shp-card-buy {
  margin-top: auto; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 2.5px dashed #F0DCA8;
}
.shp-pricebig { font-family: var(--f-disp); font-weight: 700; font-size: 27px; line-height: 1; }
.shp-buybtn { width: 100%; justify-content: center; }

.shp-trust { list-style: none; display: flex; gap: 10px 22px; flex-wrap: wrap; margin-top: 20px; padding: 0; }
.shp-trust-center { justify-content: center; margin-top: 34px; }
.shp-trust li { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.shp-trust li::before { content: "✓"; display: inline-grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; background: var(--green); color: var(--ink); border: 2px solid var(--ink); font-size: 10px; }
@media (max-width: 820px) {
  /* phones: one tidy left-aligned stack (centered wrap left ragged edges) */
  .shp-trust { flex-direction: column; align-items: flex-start; gap: 12px; width: fit-content; max-width: 100%; margin-left: auto; margin-right: auto; }
  .shp-trust li { align-items: flex-start; text-align: left; line-height: 1.5; }
  .shp-trust li::before { flex: 0 0 17px; margin-top: 1px; }
}

/* the reader */
.rdr-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 5fr); gap: 56px; align-items: center; }
.rdr-mock {
  background: var(--white); border: var(--line); border-radius: 20px;
  box-shadow: var(--pop); overflow: hidden; transform: rotate(-1deg);
}
.rdr-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; background: var(--sunshine); border-bottom: var(--line); }
.rdr-bar i { width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--ink); }
.rdr-bar i:nth-child(1) { background: var(--red); }
.rdr-bar i:nth-child(2) { background: var(--gold); }
.rdr-bar i:nth-child(3) { background: var(--green); }
.rdr-bar b { margin-left: 8px; font-family: var(--f-mono); font-weight: 700; font-size: 11.5px; letter-spacing: .04em; color: var(--ink-soft); }
.rdr-page { display: flex; flex-direction: column; gap: 8px; padding: 26px 28px 30px; }
.rdr-kicker { font-family: var(--f-mono); font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.rdr-tl { font-weight: 700; font-size: clamp(19px, 2vw, 24px); }
.rdr-tl mark { background: var(--sunshine); border-radius: 6px; padding: 0 5px; border: 2px solid var(--gold); }
.rdr-ar { font-size: 21px; color: #B26800; }
.rdr-en { color: var(--ink-soft); font-size: 15px; }
.rdr-note {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  margin-top: 10px; padding: 7px 13px;
  background: var(--teal-tint); border: 2.5px solid var(--teal); border-radius: 12px;
  font-size: 13px; font-weight: 600; color: #00615A;
  transform: rotate(-1.2deg);
}
.rdr-audio { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; padding: 7px 13px; background: var(--white); border: 2.5px solid var(--ink); border-radius: 999px; box-shadow: 2.5px 2.5px 0 var(--ink); font-family: var(--f-mono); font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.rdr-pts { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 4px 0 16px; padding: 0; }
.rdr-pts li { display: flex; align-items: center; gap: 12px; font-size: 16px; }
.rdr-pts svg { flex: 0 0 34px; width: 34px; height: 34px; padding: 7px; border-radius: 11px; border: 2.5px solid var(--ink); background: var(--sunshine); color: #B26800; }
.rdr-foot { color: var(--ink-soft); font-size: 14.5px; }

/* course waitlist band */
.shp-soon { text-align: center; margin-top: 70px; }
.shp-soon-title { font-family: var(--f-disp); font-weight: 700; font-size: clamp(23px, 3vw, 32px); margin-bottom: 22px; }
.shp-soon-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.shp-soon-form input[type="email"] {
  flex: 1 1 220px; min-width: 0; padding: 13px 20px;
  border-radius: var(--r-pill); border: var(--line);
  background: var(--white); color: var(--ink);
  font-size: 15px; font-family: var(--f-body);
  box-shadow: var(--pop-sm);
}
@media (pointer: coarse) { .shp-soon-form input[type="email"] { font-size: 16px; } }
.shp-soon-form input[type="email"]::placeholder { color: var(--ink-soft); }
.shp-soon-form input[type="email"]:focus { outline: 3px solid var(--gold); outline-offset: 2px; }
.shp-soon-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.shp-soon-note { margin-top: 14px; font-size: 13px; color: var(--ink-soft); }
.shp-soon-status { margin-top: 12px; font-size: 14.5px; font-weight: 600; }
.shp-soon-status.is-success { color: var(--green-deep); }
.shp-soon-status.is-error { color: var(--red); }

@media (max-width: 900px) {
  .shp-offer { grid-template-columns: 1fr; padding: 30px 24px; gap: 24px; }
  .shp-offer-stage { min-height: 230px; }
  .shp-grid { grid-template-columns: 1fr; gap: 30px; }
  .rdr-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 560px) {
  .shp-hero { padding-top: 120px; }
  .shp-price { padding-right: 0; }
  .shp-price .ptag-save { position: static; align-self: center; margin-left: 4px; animation: none; }
}

/* ---- AUTH CARD (login + reset) --------------------------------------------- */
.au-body {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 32px 20px;
  background:
    radial-gradient(ellipse 90% 55% at 50% 108%, var(--sunshine) 0%, transparent 62%),
    var(--white);
}
.au-split { display: flex; align-items: center; justify-content: center; gap: 64px; width: 100%; max-width: 960px; }
.au-brandpanel { display: none; }
@media (min-width: 900px) {
  .au-brandpanel { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 0 0 330px; }
}
.au-brandpanel img { width: 210px; height: 210px; object-fit: contain; margin-bottom: 14px; filter: drop-shadow(0 14px 16px rgba(120, 50, 0, .25)); }
.au-brandpanel .au-eyebrow { font-family: var(--f-mono); font-weight: 700; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.au-brandpanel h2 { font-family: var(--f-disp); font-weight: 700; font-size: 27px; line-height: 1.2; margin-bottom: 10px; }
.au-brandpanel h2 .gold { color: var(--gold); text-shadow: 2px 2px 0 var(--ink); }
.au-brandpanel p { color: var(--ink-soft); font-size: 15px; max-width: 30ch; }

.au-card {
  width: 100%; max-width: 430px;
  background: var(--white);
  border: var(--line); border-radius: var(--r-card);
  box-shadow: var(--pop);
  padding: 36px 32px;
}
@media (max-width: 380px) { .au-card { padding: 28px 20px; } }
.au-brand { display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 20px; font-family: var(--f-disp); font-weight: 700; font-size: 20px; }
.au-brand .ar { font-size: 23px; color: #B26800; }
.au-eyebrow-chip {
  display: inline-block; font-family: var(--f-mono); font-weight: 700; font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--sunshine); border: 2px solid var(--ink); border-radius: var(--r-pill);
  box-shadow: 0 2.5px 0 var(--ink); padding: 4px 12px; margin-bottom: 14px;
  transform: rotate(-1.5deg);
}
.au-card h1 { font-family: var(--f-disp); font-weight: 700; font-size: 23px; margin-bottom: 8px; }
.au-sub { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 22px; }

.field { margin-bottom: 14px; }
.field label { display: block; font-family: var(--f-mono); font-weight: 700; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.field input {
  width: 100%; font-family: var(--f-body); font-size: 15px; color: var(--ink);
  background: var(--white); border: 2.5px solid var(--ink); border-radius: 14px;
  padding: 13px 15px; outline: none;
  box-shadow: inset 2.5px 2.5px 0 rgba(43, 21, 0, .07);
  transition: box-shadow .15s ease;
}
@media (pointer: coarse) { .field input { font-size: 16px; } }
.field input::placeholder { color: #A88C6B; }
.field input:focus { box-shadow: inset 2.5px 2.5px 0 rgba(43, 21, 0, .07), 0 0 0 3.5px var(--gold); }
.pw-row { position: relative; }
.pw-toggle { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--ink-soft); padding: 8px; display: grid; place-items: center; }
.pw-toggle:hover { color: var(--ink); }
.pw-toggle svg { width: 18px; height: 18px; }

.au-card .btn-block { width: 100%; justify-content: center; margin-top: 6px; }
.link-btn { background: none; border: none; cursor: pointer; font-family: var(--f-body); font-weight: 700; font-size: 13.5px; color: var(--green-deep); text-decoration: none; padding: 4px; }
.link-btn:hover { text-decoration: underline; }
.alt { margin-top: 16px; text-align: center; }
.alt .muted { color: var(--ink-soft); font-size: 13.5px; }
#alt-buy { display: block; }
#alt-buy .muted { display: block; margin-bottom: 4px; }
#alt-buy .link-btn { display: inline-block; }
.divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--ink-soft); font-family: var(--f-mono); font-weight: 700; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.divider::before, .divider::after { content: ""; flex: 1; height: 2.5px; border-radius: 3px; background: #F0DCA8; }

.msg { margin-top: 16px; padding: 12px 15px; border-radius: 14px; font-size: 13.5px; font-weight: 600; line-height: 1.5; display: none; border: 2.5px solid var(--ink); }
.msg.show { display: block; }
.msg.err { background: #FFE3E0; color: #A31220; }
.msg.ok  { background: #DFF7E8; color: #14713B; }

.home-link { display: block; margin-top: 22px; text-align: center; font-size: 13px; color: var(--ink-soft); text-decoration: none; }
.home-link:hover { color: var(--ink); }
.auth-legal { margin-top: 16px; text-align: center; font-size: 12px; line-height: 1.5; color: var(--ink-soft); }
.auth-legal a { color: var(--ink); }

.spinner { width: 16px; height: 16px; border: 2.5px solid rgba(43, 21, 0, .25); border-top-color: var(--ink); border-radius: 50%; animation: au-spin .7s linear infinite; }
.checking { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 14px; }
.checking .dot { width: 14px; height: 14px; border: 2.5px solid #F0DCA8; border-top-color: var(--gold); border-radius: 50%; animation: au-spin .7s linear infinite; }
@keyframes au-spin { to { transform: rotate(360deg); } }
.forgot-row { margin-top: 6px; }
.forgot-row .link-btn { padding: 4px 0; }

/* ---- FREE HANDBOOK (gc reskin) --------------------------------------------- */
.gc-body {
  background:
    radial-gradient(ellipse 100% 55% at 50% 112%, var(--sunshine) 0%, transparent 60%),
    var(--white);
  min-height: 100vh;
}
.gc-main { padding: 140px 24px 80px; }
.gc-layout { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); gap: 56px; align-items: center; }
.gc-copy .gc-eyebrow {
  display: inline-block; font-family: var(--f-mono); font-weight: 700; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--gold); border: 2.5px solid var(--ink); border-radius: var(--r-pill);
  box-shadow: 0 3px 0 var(--ink); padding: 6px 15px; margin-bottom: 18px;
  transform: rotate(-1.5deg);
}
.gc-copy h1 { font-family: var(--f-disp); font-weight: 700; font-size: clamp(30px, 3.8vw, 46px); line-height: 1.18; margin-bottom: 14px; }
.gc-lead { color: var(--ink-soft); font-size: 17px; max-width: 44ch; }
.gc-claim-card {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 30px; align-items: center;
  background: var(--white); border: var(--line); border-radius: var(--r-card);
  box-shadow: var(--pop); padding: 34px 32px;
  transform: rotate(.5deg);
}
.gc-book-stage { position: relative; display: flex; justify-content: center; }
.gc-book img { width: min(100%, 210px); border-radius: 8px; border: var(--line); box-shadow: 7px 7px 0 var(--ink); transform: rotate(-2.5deg); }
.gc-seal {
  position: absolute; right: -8px; bottom: -14px;
  display: flex; flex-direction: column; align-items: center; line-height: 1.2;
  background: var(--red); color: var(--white);
  border: 2.5px solid var(--ink); border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--f-mono); font-weight: 700; font-size: 10px; letter-spacing: .05em; text-transform: uppercase;
  padding: 12px 14px; text-align: center;
  transform: rotate(7deg);
}
.gc-seal small { font-size: 8.5px; opacity: .85; }
.gc-form-panel h2 { font-family: var(--f-disp); font-weight: 700; font-size: 20px; margin-bottom: 14px; }
.gc-form label { display: block; font-family: var(--f-mono); font-weight: 700; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.gc-field-row input {
  width: 100%; font-family: var(--f-body); font-size: 15px; color: var(--ink);
  background: var(--white); border: 2.5px solid var(--ink); border-radius: 14px;
  padding: 13px 15px; outline: none;
  box-shadow: inset 2.5px 2.5px 0 rgba(43, 21, 0, .07);
}
@media (pointer: coarse) { .gc-field-row input { font-size: 16px; } }
.gc-field-row input::placeholder { color: #A88C6B; }
.gc-field-row input:focus { box-shadow: inset 2.5px 2.5px 0 rgba(43, 21, 0, .07), 0 0 0 3.5px var(--gold); }
.gc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.gc-error { min-height: 18px; margin: 8px 0 0; font-size: 13px; font-weight: 700; color: var(--red); }
.gc-consent-detail { margin: 8px 0 14px; font-size: 12px; line-height: 1.55; color: var(--ink-soft); }
.gc-consent-detail span { display: block; margin-top: 4px; }
.gc-consent-detail a { color: var(--ink); }
.gc-submit { width: 100%; justify-content: center; }
.gc-submit[disabled] { opacity: .55; cursor: default; transform: none !important; box-shadow: var(--pop) !important; }
.gc-skip-signup { display: block; margin: 12px auto 0; background: none; border: none; cursor: pointer; font-family: var(--f-body); font-weight: 700; font-size: 13px; color: var(--ink-soft); text-decoration: underline; }
.gc-skip-signup:hover { color: var(--ink); }
.gc-success .gc-download { width: 100%; justify-content: center; }
.gc-file-meta { display: flex; gap: 8px; justify-content: center; margin-top: 12px; font-family: var(--f-mono); font-weight: 700; font-size: 11px; letter-spacing: .04em; color: var(--ink-soft); }
.gc-file-meta a { color: var(--green-deep); }
.gc-download-note { margin-top: 10px; text-align: center; font-size: 13.5px; font-weight: 600; color: var(--green-deep); }
.gc-edition-note { margin-top: 20px; text-align: center; font-size: 13px; color: var(--ink-soft); }
.gc-edition-note span { font-weight: 700; color: var(--ink); }
.gc-social { display: flex; gap: 22px; justify-content: center; margin-top: 18px; }
.gc-social a { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-weight: 700; font-size: 12px; color: var(--ink-soft); text-decoration: none; }
.gc-social a:hover { color: var(--ink); }
.gc-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; max-width: 1080px; margin: 0 auto; padding: 26px 24px 40px; font-size: 13px; color: var(--ink-soft); }
.gc-footer nav { display: flex; gap: 16px; }
.gc-footer a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.gc-footer a:hover { color: var(--ink); }
.gc-footer .nav-brand { font-family: var(--f-disp); font-weight: 700; font-size: 17px; color: var(--ink); }
.gc-footer .nav-brand .ar { color: #B26800; margin-left: 5px; }
.gc-skip { position: absolute; left: 8px; top: -60px; z-index: 100; background: var(--ink); color: var(--white); padding: 10px 16px; border-radius: 10px; font-weight: 700; font-size: 14px; text-decoration: none; transition: top .18s ease; }
.gc-skip:focus { top: 8px; }
@media (max-width: 900px) {
  .gc-main { padding-top: 120px; }
  .gc-layout { grid-template-columns: 1fr; gap: 34px; }
  .gc-claim-card { grid-template-columns: 1fr; padding: 28px 22px; }
  .gc-book-stage { margin-bottom: 8px; }
}

/* ---- 404 -------------------------------------------------------------------- */
.nf-body {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 48px 20px;
  background:
    radial-gradient(ellipse 100% 55% at 50% 112%, var(--sunshine) 0%, transparent 60%),
    var(--white);
  text-align: center;
}
.nf-wrap { max-width: 540px; }
.nf-saqr { width: 180px; height: 180px; object-fit: contain; display: block; margin: 0 auto 10px; filter: drop-shadow(0 14px 16px rgba(120, 50, 0, .25)); }
.nf-eyebrow {
  display: inline-block; font-family: var(--f-mono); font-weight: 700; font-size: 11.5px;
  letter-spacing: .16em; text-transform: uppercase;
  background: var(--red); color: var(--white);
  border: 2.5px solid var(--ink); border-radius: var(--r-pill);
  box-shadow: 0 3px 0 var(--ink); padding: 6px 15px; margin-bottom: 16px;
  transform: rotate(-2deg);
}
.nf-wrap h1 { font-family: var(--f-disp); font-weight: 700; font-size: clamp(28px, 5vw, 40px); line-height: 1.18; margin-bottom: 10px; }
.nf-sub { color: var(--ink-soft); font-size: 16px; max-width: 42ch; margin: 0 auto 28px; }
.nf-ctas { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.nf-ghost { color: var(--ink-soft); font-weight: 700; font-size: 14px; text-decoration: none; border-bottom: 2.5px solid transparent; }
.nf-ghost:hover { color: var(--ink); border-bottom-color: var(--gold); }

/* ---- ABOUT ------------------------------------------------------------------ */
.ab-hero { padding: 160px 0 60px; background: var(--white); text-align: center; }
.ab-title { font-family: var(--f-disp); font-weight: 700; font-size: clamp(30px, 4.4vw, 50px); line-height: 1.16; }
.ab-meta { color: var(--ink-soft); font-size: 17px; margin-top: 14px; }
.ab-intro { max-width: 720px; margin: 0 auto; padding: 0 24px; font-size: 17px; }
.ab-intro p + p { margin-top: 14px; }
.ab-secs { display: flex; flex-direction: column; gap: 28px; max-width: 760px; margin: 54px auto 0; padding: 0 24px; }
.ab-sec {
  background: var(--white); border: var(--line); border-radius: var(--r-card);
  box-shadow: var(--pop); padding: 30px 32px;
}
.ab-sec:nth-child(odd)  { transform: rotate(-.4deg); }
.ab-sec:nth-child(even) { transform: rotate(.4deg); }
.ab-sec-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.ab-sec-ico {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 14px;
  border: 2.5px solid var(--ink); background: var(--sunshine);
  display: grid; place-items: center; color: #B26800;
}
.ab-sec-ico svg { width: 26px; height: 26px; }
.ab-sec h2 { font-family: var(--f-disp); font-weight: 700; font-size: 20px; }
.ab-sec p + p, .ab-sec ul + p, .ab-sec p + ul { margin-top: 12px; }
.ab-sec ul { padding-left: 22px; }
.ab-sec li { margin: 6px 0; }
.ab-contact { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 16px; }
.ab-contact-col a { font-weight: 700; color: var(--green-deep); text-decoration: none; font-size: 16px; }
.ab-contact-col a:hover { text-decoration: underline; }
.ab-contact-label { font-family: var(--f-mono); font-weight: 700; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.ab-ack { max-width: 760px; margin: 40px auto 0; padding: 0 24px 90px; color: var(--ink-soft); font-size: 14.5px; text-align: center; }
.ab-ack a { color: var(--ink); }

/* footer dune tint when the section above the footer is white/sunshine */
.foot-dune--white { fill: var(--white); }
.foot-dune--tealtint { fill: var(--teal-tint); }

/* ---- product pages (book-one / book-three / book-four) -----------------------
   The Shopify product-page anatomy in the sand system: real-page gallery on
   the left, one sticker buy box on the right, chapters on teal, the
   collection cross-sell reusing the shop offer band. */
.pdp-sect { padding-top: 150px; background: var(--white); }
.pdp-crumb {
  display: flex; gap: 10px; margin-bottom: 26px;
  font-family: var(--f-mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: .14em; color: var(--ink-soft);
}
.pdp-crumb a { color: var(--ink-soft); text-decoration: none; border-bottom: 2px solid #F0DCA8; }
.pdp-crumb a:hover { color: var(--ink); border-color: var(--gold); }
.pdp-crumb b { color: var(--ink); }

.pdp-grid {
  display: grid; grid-template-columns: minmax(0, 6.5fr) minmax(0, 5.5fr);
  gap: 44px; align-items: start;
}
.pdp-main {
  margin: 0; display: flex; justify-content: center;
  border: var(--line); border-radius: var(--r-card); box-shadow: var(--pop);
  padding: 28px;
}
.pdp-stage-green { background: #E7F8EC; }
.pdp-stage-gold  { background: var(--sunshine); }
.pdp-stage-red   { background: #FDE7E9; }
.pdp-main img {
  width: auto; max-width: 100%; height: auto; max-height: 560px;
  border-radius: 10px; box-shadow: 0 14px 28px rgba(60, 30, 0, .18);
}
.pdp-thumbs { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.pdp-thumb {
  width: 64px; padding: 0; overflow: hidden; cursor: pointer;
  background: var(--white); border: 2.5px solid var(--ink); border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .15s cubic-bezier(.34, 1.56, .64, 1);
}
.pdp-thumb img { display: block; width: 100%; height: auto; }
.pdp-thumb:hover { transform: translateY(-3px); }
.pdp-thumb.is-on { outline: 3px solid var(--gold); outline-offset: 2px; }

.pdp-box {
  position: sticky; top: 104px;
  background: var(--white); border: var(--line); border-radius: var(--r-card);
  box-shadow: var(--pop); padding: 30px 28px;
}
.pdp-title {
  font-family: var(--f-disp); font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px); line-height: 1.14; margin: 14px 0 10px;
}
.pdp-role { color: var(--ink-soft); font-size: 16px; line-height: 1.55; margin: 0 0 18px; }
.pdp-specs {
  list-style: none; margin: 0 0 18px; padding: 16px 0 0;
  border-top: 2.5px dashed #F0DCA8; display: grid; gap: 9px;
}
.pdp-specs li { position: relative; padding-left: 27px; font-size: 14.5px; font-weight: 600; }
.pdp-specs li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); color: #FFFFFF; border: 2px solid var(--ink);
  font-size: 11px; font-weight: 800; line-height: 15px; text-align: center;
}
.pdp-price {
  display: flex; align-items: baseline; gap: 12px; margin: 0 0 14px;
  padding-top: 16px; border-top: 2.5px dashed #F0DCA8;
}
.pdp-price b { font-family: var(--f-disp); font-size: 34px; }
.pdp-price span { color: var(--ink-soft); font-weight: 600; font-size: 14px; }
.pdp-buybtn { width: 100%; justify-content: center; }
.pdp-trust { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.pdp-trust li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.pdp-trust svg { color: var(--green-deep); flex: none; }
.pdp-trust a { color: inherit; }
.pdp-bundleline {
  margin: 16px 0 0; padding-top: 14px; border-top: 2.5px dashed #F0DCA8;
  font-size: 14px; color: var(--ink-soft);
}
.pdp-bundleline a { color: var(--ink); font-weight: 700; }

.pdp-chapters {
  list-style: none; margin: 0 auto; padding: 0; max-width: 780px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 26px;
}
.pdp-chapters li {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, .12); border: 2.5px solid rgba(255, 255, 255, .38);
  border-radius: 14px; padding: 12px 16px;
  color: var(--white); font-weight: 600; font-size: 15px;
}
.pdp-chapters b { font-family: var(--f-mono); font-size: 12px; color: var(--gold); }

.pdp-xsell { background: var(--white); }
.pdp-morefaq { text-align: center; margin-top: 22px; font-size: 14.5px; color: var(--ink-soft); }
.pdp-morefaq a { color: var(--ink); font-weight: 700; }

/* sticky buy bar: small screens only, once the buy box scrolls away */
.pdp-buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--white); border-top: 3px solid var(--ink);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.pdp-buybar.show { transform: none; }
.pdp-buybar-tx { display: flex; flex-direction: column; min-width: 0; }
.pdp-buybar-tx b { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pdp-buybar-tx span { font-family: var(--f-mono); font-size: 12.5px; color: var(--ink-soft); }

@media (max-width: 900px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 30px; }
  .pdp-box { position: static; }
  .pdp-main img { max-height: 440px; }
  .pdp-buybar { display: flex; }
  .pdp-chapters { grid-template-columns: 1fr; }
}

/* shop cards: the see-inside affordance into the product pages */
.shp-name a { color: inherit; text-decoration: none; }
.shp-name a:hover { color: var(--green-deep); }
.shp-see {
  display: inline-block; margin: 10px 0 2px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink); text-decoration: none;
  border-bottom: 2.5px solid var(--gold);
  padding-bottom: 2px;
}
.shp-see:hover { color: var(--green-deep); border-color: var(--green-deep); }
