/* =========================================================================
   AccuGo — single-page site
   Aesthetic: warm editorial. Cream paper, deep apple red, sober ink.
   Type:      Fraunces (display) + Hanken Grotesk (body)
   ========================================================================= */

:root {
  /* paper / ink */
  --bg:        #F1E7D2;
  --bg-deep:   #ECDFC4;
  --paper:     #F8F1DF;
  --paper-2:   #FDF8EA;
  --ink:       #1B1611;
  --ink-soft:  #3E342A;
  --ink-mute:  #6E5E4D;
  --rule:      #C9B996;
  --rule-soft: #DCCDA9;

  /* accents */
  --apple:       #8E2A2A;
  --apple-deep:  #6E1E1E;
  --apple-ink:   #4B1414;
  --leaf:        #4D5C3D;
  --leaf-soft:   #7A8865;
  --gold:        #B98A2A;

  /* PKU / HCU variant tints */
  --pku-ink:  #1F3F77;
  --pku-bg:   #E4ECF8;
  --hcu-ink:  #7A3A0E;
  --hcu-bg:   #F7E5CE;

  /* layout */
  --col:   72rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 8px;

  /* type scale */
  --fs-display: clamp(2.7rem, 6.4vw, 5.6rem);
  --fs-h2:      clamp(2rem, 4vw, 3.4rem);
  --fs-h3:      clamp(1.35rem, 2.2vw, 1.75rem);
  --fs-lede:    clamp(1.05rem, 1.4vw, 1.2rem);
  --fs-body:    1.0625rem;
  --fs-small:   .875rem;
  --fs-micro:   .76rem;
}

/* ----- reset / base ----- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink-soft);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(248, 241, 223, .9), transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(142, 42, 42, .04), transparent 70%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle paper grain — pure CSS, no image */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .35;
  background-image:
    radial-gradient(rgba(110, 85, 50, .06) 1px, transparent 1px),
    radial-gradient(rgba(110, 85, 50, .04) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1.5px 1.5px;
  mix-blend-mode: multiply;
}

main { position: relative; z-index: 1; }

img, svg { display: block; max-width: 100%; }

a { color: var(--apple); text-decoration: none; }
a:hover { color: var(--apple-deep); }

::selection { background: var(--apple); color: var(--paper-2); }

/* skip link */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper-2);
  padding: .6rem .9rem; border-radius: 4px;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 999; }

/* ----- top bar ----- */

.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  background: rgba(241, 231, 210, .72);
  border-bottom: 1px solid rgba(201, 185, 150, .4);
}

.topbar-inner {
  max-width: var(--col);
  margin: 0 auto;
  padding: .85rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }

.brand-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 4px 12px -4px rgba(75, 20, 20, .25);
}

.brand-word {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}

.topnav {
  display: flex; align-items: center; gap: 1.8rem;
  font-size: .94rem;
}
.topnav a {
  color: var(--ink-soft);
  position: relative;
  padding: .25rem 0;
}
.topnav a:hover { color: var(--ink); }
.topnav a:not(.topnav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--apple);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.topnav a:not(.topnav-cta):hover::after { transform: scaleX(1); }

.topnav-cta {
  color: var(--apple);
  font-weight: 600;
}

@media (max-width: 640px) {
  .topnav a:not(.topnav-cta) { display: none; }
}

/* ----- shared section bits ----- */

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--apple);
  margin: 0 0 1.5rem;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--apple);
  box-shadow: 0 0 0 3px rgba(142, 42, 42, .14);
}

.display, .h-display {
  font-family: "Fraunces", serif;
  color: var(--ink);
  letter-spacing: -.025em;
  line-height: 1.02;
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.display { font-size: var(--fs-display); font-weight: 400; }
.h-display { font-size: var(--fs-h2); font-weight: 450; line-height: 1.05; }
.h-display.soft { font-variation-settings: "opsz" 144, "SOFT" 80; }

.display em, .h-display em {
  font-style: italic;
  font-weight: 350;
  color: var(--apple);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.section-head {
  max-width: 48rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-lede {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  font-size: var(--fs-lede);
  color: var(--ink-soft);
}

/* divider */
.rule {
  max-width: var(--col);
  margin: 4rem auto 5rem;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: center;
  gap: .9rem;
}
.rule span:nth-child(1),
.rule span:nth-child(3) {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rule), transparent);
}
.rule span:nth-child(2) {
  width: 9px; height: 9px;
  background: var(--apple);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

/* ============================ HERO ============================ */

.hero {
  position: relative;
  max-width: var(--col);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 6rem) var(--gutter) clamp(3rem, 6vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
}

.hero-copy { max-width: 38rem; }

.hero .display {
  margin-bottom: 1.5rem;
}

.lede {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: var(--fs-lede);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 32rem;
  margin: 0 0 2rem;
}

.cta-row {
  display: flex; align-items: center; gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* App Store badge — custom-designed, not the official PNG */
.appstore {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--ink);
  color: var(--paper-2);
  padding: .85rem 1.4rem;
  border-radius: 14px;
  border: 1px solid var(--ink);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  transition:
    transform .35s cubic-bezier(.2,.7,.2,1),
    box-shadow .35s cubic-bezier(.2,.7,.2,1),
    background .25s ease;
  box-shadow: 0 8px 20px -10px rgba(27, 22, 17, .55);
  position: relative;
  overflow: hidden;
}
.appstore::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 50%);
  pointer-events: none;
}
.appstore:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(27, 22, 17, .55);
  color: var(--paper-2);
  background: #2a221a;
}
.appstore-logo {
  width: 28px; height: 28px;
  flex: 0 0 auto;
}
.appstore-text {
  display: flex; flex-direction: column;
  line-height: 1.05;
  text-align: left;
}
.appstore-kicker {
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .04em;
  opacity: .82;
}
.appstore-name {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.01em;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 36, "SOFT" 30;
}
.appstore-name em {
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 36, "SOFT" 100;
  margin-left: .15em;
}

.appstore-pku .appstore-name em { color: #98B6E8; }
.appstore-hcu .appstore-name em { color: #E8B27A; }

.appstore-lg {
  padding: 1.05rem 1.7rem;
}
.appstore-lg .appstore-logo { width: 34px; height: 34px; }
.appstore-lg .appstore-name { font-size: 1.5rem; }

/* dual badge row */
.cta-row.dual {
  flex-wrap: wrap;
}
.cta-row.dual .appstore { flex: 0 0 auto; }
.cta-row.dual.centered { justify-content: center; }

@media (max-width: 520px) {
  .cta-row.dual .appstore { width: 100%; justify-content: flex-start; }
}

.ghost-link {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
  padding-bottom: .15rem;
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.ghost-link:hover {
  color: var(--apple);
  border-color: var(--apple);
}
.ghost-link span {
  display: inline-block;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  margin-left: .2rem;
}
.ghost-link:hover span { transform: translateX(4px); }

.hero-foot {
  font-size: var(--fs-small);
  color: var(--ink-mute);
  margin: 0;
}

.variant-tag {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  font-variation-settings: "opsz" 12, "SOFT" 60;
  padding: .2rem .55rem;
  border-radius: 999px;
  margin: 0 .15rem;
}
.variant-tag.pku { background: var(--pku-bg); color: var(--pku-ink); }
.variant-tag.hcu { background: var(--hcu-bg); color: var(--hcu-ink); }

/* ----- hero visual: paper + phone mock ----- */

.hero-visual {
  position: relative;
  display: flex; justify-content: center;
}

.paper {
  position: relative;
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 30px 50px rgba(75, 20, 20, .14));
}

/* Modern iPhone-style frame (~19.5:9 aspect). The screenshot inside is
   iPhone 6/7/8 Plus era (9:16) — so we letterbox with colored bands that
   bleed into the screenshot's gray status bar (top) and blue summary bar
   (bottom), then overlay Dynamic Island + home indicator. */
.phone {
  position: relative;
  aspect-ratio: 9 / 19.5;
  width: 100%;
  padding: 6px;
  background:
    linear-gradient(180deg, rgba(255, 220, 180, .14) 0%, transparent 8%, transparent 92%, rgba(0,0,0,.4) 100%),
    linear-gradient(125deg, #2e271f 0%, #14100c 30%, #100c08 60%, #1f1812 90%, #322a22 100%);
  border-radius: 48px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 220, 180, .12),
    inset 0 1.5px 0 rgba(255, 220, 180, .18),
    inset 0 -1.5px 0 rgba(0, 0, 0, .55),
    0 30px 60px -20px rgba(27, 22, 17, .5),
    0 4px 10px -2px rgba(27, 22, 17, .2);
  transform: rotate(-1.4deg);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.hero-visual:hover .phone { transform: rotate(-.3deg) translateY(-4px); }

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: #1a1a1a;
}

/* top band — matches the screenshot's light gray iOS 7 status bar so the
   real status bar (Carrier / 3:24 PM / battery) reads as part of it */
.phone-screen::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 11%;
  background: #D5D5D5;
  z-index: 2;
}
/* bottom band — matches the screenshot's bottom blue summary bar */
.phone-screen::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 9%;
  background: #4E7DAD;
  z-index: 2;
}

.phone-shot {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  z-index: 1;
}

/* Dynamic Island — small black pill near top center */
.phone-island {
  position: absolute;
  top: 2.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 3.6%;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 1),
    inset 0 0 6px rgba(0, 0, 0, .6);
}

/* Home indicator — small white pill at the bottom */
.phone-home {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 4px;
  background: rgba(255, 255, 255, .85);
  border-radius: 999px;
  z-index: 3;
}

/* side buttons — power on right, silent + volumes on left */
.phone-btn {
  position: absolute;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,.5) 0%,
      #1a140f 12%,
      #2a221a 50%,
      #1a140f 88%,
      rgba(0,0,0,.5) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 180, .12),
    inset 0 -1px 0 rgba(0, 0, 0, .6),
    0 1px 2px rgba(0,0,0,.3);
  border-radius: 1.5px;
  z-index: 0;
}
.pb-silent {
  left: -3px;
  top: 14%;
  width: 4.5px;
  height: 22px;
}
.pb-volup {
  left: -3px;
  top: 21%;
  width: 4.5px;
  height: 38px;
}
.pb-voldown {
  left: -3px;
  top: 31%;
  width: 4.5px;
  height: 38px;
}
.pb-power {
  right: -3px;
  top: 24%;
  width: 4.5px;
  height: 64px;
}

/* a soft sweep of glare across the glass — gives the front a sense of a screen surface */
.phone-glare {
  position: absolute;
  inset: 9px;
  border-radius: 38px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, .08) 0%,
    rgba(255, 255, 255, .02) 18%,
    transparent 28%,
    transparent 72%,
    rgba(255, 255, 255, .03) 88%,
    rgba(255, 255, 255, .06) 100%
  );
  mix-blend-mode: screen;
}

/* ============================ VARIANTS ============================ */

.variants {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.variant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 780px) {
  .variant-grid { grid-template-columns: 1fr; }
}

.variant-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  padding: 2rem 1.85rem 2rem;
  transition:
    transform .45s cubic-bezier(.2,.7,.2,1),
    box-shadow .45s cubic-bezier(.2,.7,.2,1),
    border-color .25s ease;
  overflow: hidden;
}
.variant-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--apple);
  transform: scaleX(.35); transform-origin: left;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.variant-card:hover {
  transform: translateY(-3px);
  border-color: var(--rule);
  box-shadow: 0 24px 40px -24px rgba(75, 20, 20, .25);
}
.variant-card:hover::before { transform: scaleX(1); }

.pku-card::before { background: var(--pku-ink); }
.hcu-card::before { background: var(--hcu-ink); }

.variant-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.4rem;
}
.variant-card-id {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--rule);
  font-variation-settings: "opsz" 48, "SOFT" 100;
}
.variant-card h3 {
  font-family: "Fraunces", serif;
  font-size: var(--fs-h3);
  font-weight: 450;
  color: var(--ink);
  letter-spacing: -.02em;
  margin: 0 0 .8rem;
  font-variation-settings: "opsz" 36;
}
.variant-card h3 em {
  font-style: italic;
  font-weight: 350;
  color: var(--apple);
  font-variation-settings: "opsz" 36, "SOFT" 100;
}
.pku-card h3 em { color: var(--pku-ink); }
.hcu-card h3 em { color: var(--hcu-ink); }
.variant-card > p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}
.variant-card strong { color: var(--ink); font-weight: 600; }

.bullets {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--rule-soft);
  padding-top: 1rem;
}
.bullets li {
  position: relative;
  padding: .35rem 0 .35rem 1.3rem;
  font-size: var(--fs-small);
  color: var(--ink-soft);
}
.bullets li::before {
  content: "";
  position: absolute; left: 0; top: .82rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--apple);
}
.pku-card .bullets li::before { background: var(--pku-ink); }
.hcu-card .bullets li::before { background: var(--hcu-ink); }

.variant-link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.25rem;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .005em;
  padding: .55rem .9rem;
  border-radius: 8px;
  border: 1px solid currentColor;
  transition:
    background .25s ease,
    color .25s ease,
    transform .35s cubic-bezier(.2,.7,.2,1);
}
.variant-link span {
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  display: inline-block;
}
.variant-link:hover span { transform: translate(2px, -2px); }
.pku-link {
  color: var(--pku-ink);
}
.pku-link:hover {
  background: var(--pku-ink);
  color: var(--paper-2);
}
.hcu-link {
  color: var(--hcu-ink);
}
.hcu-link:hover {
  background: var(--hcu-ink);
  color: var(--paper-2);
}

/* ============================ FEATURES ============================ */

.features {
  max-width: var(--col);
  margin: 6rem auto 0;
  padding: 0 var(--gutter);
}

.feature-list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--rule);
}
.feature-list li {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  position: relative;
  transition: padding .35s ease;
}
.feature-list li:hover { padding-left: .75rem; }
.feature-list li::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--apple);
  transform: scaleY(0); transform-origin: top;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.feature-list li:hover::after { transform: scaleY(1); }

@media (max-width: 600px) {
  .feature-list li { grid-template-columns: 1fr; gap: .5rem; }
}

.feat-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 2.1rem;
  font-weight: 350;
  color: var(--apple);
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 48, "SOFT" 100;
  line-height: 1;
}

.feature-list h4 {
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 .4rem;
  letter-spacing: -.015em;
  font-variation-settings: "opsz" 36;
}
.feature-list p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 38rem;
}

/* ============================ GALLERY ============================ */

.gallery {
  max-width: var(--col);
  margin: 7rem auto 0;
  padding: 0 var(--gutter);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  align-items: start;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.75rem; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 2.25rem; max-width: 22rem; margin: 0 auto; }
}

.shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.shot img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  background: var(--paper);
  box-shadow:
    0 0 0 1px rgba(75, 20, 20, .04),
    0 24px 48px -24px rgba(75, 20, 20, .35);
  transition:
    transform .5s cubic-bezier(.2,.7,.2,1),
    box-shadow .5s cubic-bezier(.2,.7,.2,1);
}
.shot:nth-child(1) img { transform: rotate(-.9deg); }
.shot:nth-child(2) img { transform: rotate(.6deg) translateY(8px); }
.shot:nth-child(3) img { transform: rotate(-.4deg); }
.shot:nth-child(4) img { transform: rotate(1deg) translateY(6px); }
.shot:hover img {
  transform: rotate(0) translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(75, 20, 20, .06),
    0 32px 56px -24px rgba(75, 20, 20, .4);
}

.shot figcaption {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  padding: 0 .25rem;
}
.shot-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--apple);
  flex: 0 0 auto;
  line-height: 1;
  font-variation-settings: "opsz" 36, "SOFT" 100;
}
.shot-cap {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ============================ PRIVACY ============================ */

.privacy {
  margin: 7rem auto 0;
  padding: 0 var(--gutter);
}
.privacy-inner {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.25rem);
  position: relative;
}
.privacy-inner::before,
.privacy-inner::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--apple);
}
.privacy-inner::before {
  top: -1px; left: -1px;
  border-right: none; border-bottom: none;
}
.privacy-inner::after {
  bottom: -1px; right: -1px;
  border-left: none; border-top: none;
}
.privacy-inner .eyebrow { justify-content: center; }
.privacy-inner h2 { margin-bottom: 1rem; }
.privacy-inner p { color: var(--ink-soft); }
.privacy-links { margin-top: 1.25rem !important; }
.privacy-links a {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ============================ CTA ============================ */

.cta {
  margin: 7rem auto 5rem;
  padding: 0 var(--gutter);
  max-width: var(--col);
}
.cta-inner {
  background:
    radial-gradient(ellipse at top right, rgba(142, 42, 42, .14), transparent 60%),
    linear-gradient(170deg, var(--paper) 0%, var(--paper-2) 100%);
  border: 1px solid var(--rule-soft);
  border-radius: 18px;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 42, 42, .15), transparent 65%);
  pointer-events: none;
}
.cta-inner::after {
  content: "AccuGo";
  position: absolute;
  bottom: -3rem; left: 50%;
  transform: translateX(-50%);
  font-family: "Fraunces", serif;
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 800;
  color: rgba(27, 22, 17, .045);
  letter-spacing: -.04em;
  pointer-events: none;
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p { color: var(--ink-soft); margin: 0 0 2rem; }

/* ============================ FOOTER ============================ */

.site-footer {
  margin-top: 4rem;
  padding: 3rem var(--gutter) 2.5rem;
  border-top: 1px solid var(--rule-soft);
  background: var(--bg-deep);
  position: relative;
  z-index: 1;
}
.site-footer-inner {
  max-width: var(--col);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 720px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
}
.brand-foot .brand-word { font-size: 1.15rem; }

.foot-nav {
  display: flex; justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: var(--fs-small);
}
.foot-nav a {
  color: var(--ink-soft);
}
.foot-nav a:hover { color: var(--apple); }

.foot-fine {
  margin: 0;
  font-size: var(--fs-micro);
  color: var(--ink-mute);
  max-width: 22rem;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .foot-fine { max-width: 100%; grid-column: 1; }
}

/* ============================ MOTION ============================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal .9s cubic-bezier(.2,.7,.2,1) forwards;
}
[data-reveal="1"] { animation-delay: .05s; }
[data-reveal="2"] { animation-delay: .18s; }
[data-reveal="3"] { animation-delay: .32s; }
[data-reveal="4"] { animation-delay: .48s; }
[data-reveal="5"] { animation-delay: .62s; }

@keyframes reveal {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
