:root {
  --navy: #093162;
  --navy-deep: #061e3d;
  --ink: #1a2332;
  --muted: #5a6577;
  --paper: #eef1f5;
  --card: #ffffff;
  --line: #dde2e8;
  --accent: #2b6cb0;
  --gold: #d4a84b;
  --gold-ink: #7a5c14;
  --radius: 1rem;
  --max: 68rem;
  --gutter: 1rem;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Figtree, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--navy);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: max(1rem, env(safe-area-inset-left));
  top: max(1rem, env(safe-area-inset-top));
  z-index: 20;
  background: var(--card);
  padding: 0.5rem 0.75rem;
}

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

.wrap {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: env(safe-area-inset-left) env(safe-area-inset-right);
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  font-family: "Bricolage Grotesque", Georgia, serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 0;
  display: block;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bars {
  display: block;
  width: 1.1rem;
  height: 0.75rem;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  height: 0.85rem;
  background: linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: calc(0.425rem - 1px);
  background: currentColor;
  transform: rotate(90deg);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--navy);
}

.hero {
  position: relative;
  background:
    radial-gradient(520px 280px at 88% 72%, rgba(212, 168, 75, 0.22), transparent 62%),
    radial-gradient(1200px 420px at 80% -10%, rgba(212, 168, 75, 0.16), transparent 55%),
    linear-gradient(165deg, var(--navy-deep), var(--navy) 55%, #0c3d73);
  color: #f4f7fb;
  padding: 2.5rem 0 3.5rem;
  padding-top: max(2.5rem, env(safe-area-inset-top));
  border-bottom: 3px solid var(--gold);
  overflow: clip;
}

.hero .site-header,
.hero .nav a,
.hero .brand {
  color: #f4f7fb;
}

.hero .nav a {
  color: rgba(244, 247, 251, 0.78);
}

.hero .nav a:hover,
.hero .nav a[aria-current="page"] {
  color: #fff;
}

.hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
  padding: 1.35rem 0 0.5rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 18.5rem);
    gap: 3rem;
  }
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", Georgia, serif;
  letter-spacing: -0.035em;
  line-height: 1.12;
  overflow-wrap: break-word;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 6.4vw, 3.55rem);
  font-weight: 800;
}

.gold-rule {
  width: 2.85rem;
  height: 3px;
  margin: 0 0 1.15rem;
  border: 0;
  background: var(--gold);
}

.lede {
  margin: 0;
  max-width: 40rem;
  color: rgba(244, 247, 251, 0.9);
  font-size: 1.15rem;
}

.status {
  margin: 1.15rem 0 0;
  max-width: 36rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(212, 168, 75, 0.38);
  border-radius: 0.75rem;
  background: rgba(6, 30, 61, 0.35);
  color: rgba(244, 247, 251, 0.92);
  font-size: 0.98rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold:hover {
  color: var(--navy-deep);
  filter: brightness(1.05);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.phone-stage {
  position: relative;
  margin: 0 auto;
  width: min(18.5rem, 100%);
}

.phone {
  position: relative;
  z-index: 1;
}

.phone-bezel {
  border: 2px solid rgba(168, 196, 230, 0.38);
  border-radius: 2.1rem;
  background: linear-gradient(180deg, rgba(12, 42, 82, 0.55), rgba(6, 30, 61, 0.92));
  padding: 0.55rem 0.55rem 0.7rem;
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.28);
}

.phone-notch {
  display: block;
  width: 5.4rem;
  height: 0.72rem;
  margin: 0.2rem auto 0.55rem;
  border-radius: 999px;
  background: rgba(6, 22, 44, 0.95);
}

.phone-screen {
  border-radius: 1.35rem;
  background: rgba(4, 18, 38, 0.72);
  padding: 0.95rem 0.85rem 1.05rem;
}

.phone-app {
  margin: 0;
  font-family: "Bricolage Grotesque", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.phone-sub {
  margin: 0.15rem 0 0.85rem;
  color: rgba(244, 247, 251, 0.58);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.nag-row {
  margin: 0;
  padding: 0.7rem 0.8rem 0.8rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.nag-row strong {
  display: block;
  font-family: "Bricolage Grotesque", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nag-when {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nag-due {
  border-color: rgba(212, 168, 75, 0.62);
  background: rgba(212, 168, 75, 0.16);
}

.nag-due .nag-when {
  color: var(--gold);
}

.nag-soon {
  border-color: rgba(212, 168, 75, 0.32);
}

.nag-soon .nag-when {
  color: rgba(212, 168, 75, 0.88);
}

.nag-quiet {
  opacity: 0.72;
}

.nag-quiet .nag-when {
  color: rgba(244, 247, 251, 0.55);
}

.bloom {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.7), rgba(212, 168, 75, 0.08) 58%, transparent 70%);
  pointer-events: none;
  filter: blur(2px);
}

.bloom-a {
  width: 6.2rem;
  height: 6.2rem;
  right: -1.4rem;
  top: 28%;
}

.bloom-b {
  width: 4.4rem;
  height: 4.4rem;
  right: 0.2rem;
  bottom: 12%;
  opacity: 0.85;
}

.section {
  padding: 3.2rem 0;
}

.section h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.55rem, 4.2vw, 2.3rem);
}

.section-lead {
  margin: 0 0 1.6rem;
  color: var(--muted);
  max-width: 40rem;
}

.nag-track {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .nag-track {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.nag-beat {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.35rem;
}

.nag-offset {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--gold-ink);
  font-family: "Bricolage Grotesque", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nag-beat-day {
  border-color: rgba(212, 168, 75, 0.55);
  box-shadow: 0 0 0 1px rgba(212, 168, 75, 0.18);
}

.nag-beat h3,
.step h3,
.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.nag-beat p,
.step p,
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.steps,
.cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

.step,
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem 1.25rem;
}

.step {
  border-top: 4px solid var(--gold);
}

.num {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--gold-ink);
  font-family: "Bricolage Grotesque", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.band {
  background: var(--navy);
  color: #f4f7fb;
}

.band .section-lead,
.band p {
  color: rgba(244, 247, 251, 0.82);
}

.band a {
  color: var(--gold);
}

.band .card {
  background: rgba(6, 30, 61, 0.45);
  border-color: rgba(255, 255, 255, 0.12);
}

.band .card h3 {
  color: #fff;
}

.band .card p {
  color: rgba(244, 247, 251, 0.78);
}

.facts {
  display: grid;
  gap: 0.85rem 1.5rem;
  margin: 0;
}

@media (min-width: 720px) {
  .facts {
    grid-template-columns: 1fr 1fr;
  }
}

.facts > div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem 1.1rem;
}

.facts dt {
  margin: 0 0 0.25rem;
  color: var(--gold-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.facts code {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: 0.95rem;
}

.prose {
  max-width: 44rem;
}

.prose h2 {
  margin-top: 2rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.site-footer {
  padding: 1.5rem 0 max(2.4rem, env(safe-area-inset-bottom));
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  margin-bottom: 0.7rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer a:hover {
  color: var(--navy);
}

.site-footer p {
  margin: 0;
  max-width: 46rem;
}

@media (max-width: 719px) {
  :root {
    --gutter: 1.15rem;
  }

  body {
    font-size: 1rem;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    flex-shrink: 0;
  }

  header:not(.hero) .nav-toggle {
    border-color: var(--line);
    color: var(--navy);
  }

  .nav {
    display: none !important;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: calc(var(--radius) - 0.15rem);
    background: rgba(6, 30, 61, 0.55);
  }

  header:not(.hero) .nav {
    border-color: var(--line);
    background: var(--card);
  }

  .site-header.nav-open .nav {
    display: flex !important;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.55rem 0.85rem;
    border-radius: 0.65rem;
    font-size: 1rem;
    font-weight: 500;
  }

  .hero .nav a:hover,
  .hero .nav a:focus-visible,
  .hero .nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  header:not(.hero) .nav a:hover,
  header:not(.hero) .nav a:focus-visible,
  header:not(.hero) .nav a[aria-current="page"] {
    background: var(--paper);
    color: var(--navy);
  }

  .hero {
    padding: 1.15rem 0 2.4rem;
    padding-top: max(1.15rem, env(safe-area-inset-top));
  }

  .lede {
    font-size: 1.05rem;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 2.4rem 0;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-footer a {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
  }
}

@media (min-width: 480px) and (max-width: 719px) {
  .actions {
    flex-direction: row;
  }

  .btn {
    width: auto;
  }
}

.phone-bezel-shot {
  padding: 0.4rem;
  background: #0a1413;
}

.phone-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.65rem;
}

.shot-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .shot-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
  }
}

.shot-card {
  margin: 0;
}

.shot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.15rem;
  border: 1px solid var(--line);
  background: #0a1413;
  box-shadow: 0 16px 32px rgba(9, 49, 98, 0.08);
}

.shot-card figcaption {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}
