/* ─────────────────────────────────────────────────────────────
   Zain · preview site · editorial-lite
   Palette, typography, and primitives pulled from the app's own
   Bookcloth / Dispatch theme tokens so the site and the product
   speak the same language.
   ───────────────────────────────────────────────────────────── */

:root {
  /* ── Palette ─────────────────────────────────────────── */
  --paper:        #FBF9F4;  /* Dispatch paper */
  --paper-warm:   #FCFAF3;  /* Bookcloth paper */
  --card:         #FFFFFF;
  --card-warm:    #F7F2E5;  /* Bookcloth card */
  --ink:          #0A3F42;  /* Primary text — dark teal */
  --ink-soft:     #1E3F42;
  --ink-mute:     #5A7577;
  --sepia:        #8A5E1F;
  --oxblood:      #6E1E2B;  /* Accent */
  --oxblood-soft: #8A3641;
  --rule:         #B8985A;  /* Gold foil hairline */
  --rule-soft:    #D9C89A;
  --primary:      #0D7377;  /* Brand teal */
  --primary-dark: #0A5E61;
  --stage:        #0E2A2C;  /* Charcoal/stage for hero art ambient */
  --placeholder:  #9CABA9;

  /* ── Typography ──────────────────────────────────────── */
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* ── Spacing ─────────────────────────────────────────── */
  --wrap: 1200px;
  --gutter: 24px;
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;

  /* ── Effects ─────────────────────────────────────────── */
  --shadow-soft: 0 24px 48px -32px rgba(14, 42, 44, .18);
  --shadow-device: 0 60px 120px -50px rgba(14, 42, 44, .38), 0 0 0 1px rgba(255,255,255,.04) inset;
  --radius-card: 14px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ───────────────────────────────── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; }
em { font-style: italic; font-family: var(--serif); font-weight: 400; }

.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;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ───────────────────────────────── Grain texture ───────────────────────────────── */
/* A subtle paper grain overlay we can drop in any section. */
.hero__grain,
.day__grain,
.download__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.25 0 0 0 0 0.26 0 0 0 0.8 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ───────────────────────────────── Kicker (tracked uppercase) ───────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 18px;
}
.kicker__line {
  width: 28px; height: 1px;
  background: var(--rule);
  display: inline-block;
}
.kicker--oxblood { color: var(--oxblood); }
.kicker--oxblood .kicker__line { background: var(--oxblood); }
.kicker--light { color: rgba(255,255,255,.7); }
.kicker--light .kicker__line { background: var(--rule); }

/* ───────────────────────────────── Section head ───────────────────────────────── */
.section-head { max-width: 760px; margin-bottom: 72px; }
.section-head--centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-head__title em { color: var(--oxblood); }
.section-head__lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-mute);
  max-width: 560px;
  margin: 0;
}
.section-head--centered .section-head__lede { margin: 0 auto; }

/* ───────────────────────────────── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .005em;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn--small { padding: 10px 16px; font-size: 13.5px; }
.btn--lg { padding: 17px 28px; font-size: 16px; }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 8px 18px -10px rgba(14, 42, 44, .55);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -14px rgba(14, 42, 44, .65);
  background: #062F31;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(10, 63, 66, .18);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(10, 63, 66, .04);
}

.btn--light {
  background: var(--paper);
  color: var(--ink);
}
.btn--light:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.4);
}

.btn__arrow {
  transition: transform .3s var(--ease);
}
.btn--ghost:hover .btn__arrow { transform: translateX(4px); }

/* ───────────────────────────────── Masthead ───────────────────────────────── */
.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 249, 244, .86);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  padding-top: 18px;
  padding-bottom: 10px;
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.masthead__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.masthead__mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.masthead__wordmark {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.masthead__nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-mute);
}
.masthead__nav a {
  position: relative;
  padding: 4px 0;
  transition: color .25s var(--ease);
}
.masthead__nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--oxblood);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.masthead__nav a:hover { color: var(--ink); }
.masthead__nav a:hover::after { transform: scaleX(1); }

.masthead__rule {
  margin-top: 14px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0, var(--rule) 12%, var(--rule) 88%, transparent 100%);
}
.dateline {
  margin: 10px auto 0;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}
.dateline em {
  color: var(--oxblood);
  font-style: italic;
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 820px) {
  .masthead__nav { display: none; }
}

/* ───────────────────────────────── Hero ───────────────────────────────── */
.hero {
  position: relative;
  padding: var(--s-7) 0 var(--s-8);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero__copy {}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero__title em {
  color: var(--oxblood);
  position: relative;
}
.hero__lede {
  font-size: 1.175rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 40px;
}
.hero__lede strong {
  color: var(--ink);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 62%, rgba(184, 152, 90, .22) 62%, rgba(184, 152, 90, .22) 92%, transparent 92%);
  padding: 0 2px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__meta {
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .01em;
}
.hero__meta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--oxblood);
  box-shadow: 0 0 0 4px rgba(110, 30, 43, .12);
}

/* Hero art — floating device with orbit icons */
.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}
.hero__foilrule {
  position: absolute;
  right: -40px; top: 50%;
  width: 220px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule) 60%, transparent);
  transform: rotate(-8deg);
  opacity: .5;
}

.br-mobile { display: none; }

/* ───────────────────────────────── Device (iPhone-ish) ───────────────────────────────── */
.device {
  position: relative;
  width: 340px;
  max-width: 72vw;
  padding: 14px 12px 16px;
  background: linear-gradient(180deg, #1A1A1A 0%, #080808 100%);
  border-radius: 58px;
  box-shadow: var(--shadow-device);
  transition: transform .6s var(--ease);
}
.device__notch {
  position: absolute;
  top: 22px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 28px;
  background: #050505;
  border-radius: 18px;
  z-index: 2;
}
.device__screen {
  border-radius: 46px;
  overflow: hidden;
  display: block;
  width: 100%;
  background: #0E2A2C;
}
.device--tilt-left { transform: rotate(-2deg); }
.device--tilt-right { transform: rotate(2deg); }
.device:hover { transform: rotate(0) translateY(-6px); }
@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero__art .device { animation: floatPhone 7s ease-in-out infinite; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__art { min-height: 480px; }
  .br-mobile { display: inline; }
}

/* ───────────────────────────────── Pillars ───────────────────────────────── */
.pillars {
  padding: var(--s-8) 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  border-top: 1px solid rgba(184, 152, 90, .25);
  border-bottom: 1px solid rgba(184, 152, 90, .25);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184, 152, 90, .35);
  border: 1px solid rgba(184, 152, 90, .35);
  border-radius: 10px;
  overflow: hidden;
}
.pillar {
  background: var(--paper-warm);
  padding: 44px 32px 38px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .35s var(--ease), transform .35s var(--ease);
  position: relative;
}
.pillar:hover {
  background: #fff;
}
.pillar:hover .pillar__read { color: var(--oxblood); }
.pillar:hover .pillar__icon { transform: translateY(-4px) rotate(-3deg); }

.pillar__icon {
  width: 56px; height: 56px;
  object-fit: contain;
  margin-bottom: 14px;
  transition: transform .5s var(--ease);
  filter: drop-shadow(0 6px 12px rgba(14, 42, 44, .12));
}
.pillar__kicker {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.pillar__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.8rem;
  margin: 2px 0 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pillar__body {
  color: var(--ink-mute);
  font-size: .98rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.pillar__read {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 18px;
  transition: color .25s var(--ease);
}

@media (max-width: 900px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pillars__grid { grid-template-columns: 1fr; }
}

/* ───────────────────────────────── Feature sections ───────────────────────────────── */
.feature {
  padding: var(--s-8) 0;
  position: relative;
}
.feature + .feature { padding-top: 0; }
.feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.feature--reverse .feature__inner {
  grid-template-columns: 1fr 1fr;
}
.feature--reverse .feature__copy { order: 2; }
.feature--reverse .feature__art  { order: 1; }

.feature__glyph {
  width: 72px; height: 72px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 10px 20px rgba(14, 42, 44, .14));
}
.feature__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--ink);
}
.feature__title em { color: var(--oxblood); }
.feature__lede {
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 520px;
}
.feature__lede em { color: var(--oxblood); }
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}
.feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .99rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.feature__li-dot {
  flex: none;
  width: 8px; height: 8px; margin-top: 8px;
  border-radius: 50%;
  background: var(--rule);
  box-shadow: 0 0 0 3px rgba(184, 152, 90, .18);
}
.feature__art {
  display: grid;
  place-items: center;
  position: relative;
}
.feature__art::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  max-width: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 152, 90, .18) 0%, transparent 65%);
  z-index: -1;
}

@media (max-width: 900px) {
  .feature__inner { grid-template-columns: 1fr; gap: 48px; }
  .feature--reverse .feature__copy { order: 1; }
  .feature--reverse .feature__art { order: 2; }
}

/* ───────────────────────────────── A day in Zain ───────────────────────────────── */
.day {
  position: relative;
  padding: var(--s-8) 0;
  background: var(--paper-warm);
  border-top: 1px solid rgba(184, 152, 90, .25);
  border-bottom: 1px solid rgba(184, 152, 90, .25);
  overflow: hidden;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(184, 152, 90, .35);
  counter-reset: tl;
}
.timeline__entry {
  position: relative;
  padding: 40px 22px 20px;
  border-right: 1px solid rgba(184, 152, 90, .35);
  counter-increment: tl;
}
.timeline__entry:last-child { border-right: none; }
.timeline__entry::before {
  content: counter(tl, decimal-leading-zero);
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--serif);
  font-size: 12px;
  color: var(--oxblood);
  letter-spacing: .08em;
}
.timeline__icon {
  width: 42px; height: 42px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 6px 10px rgba(14, 42, 44, .12));
}
.timeline__time {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--sepia);
  margin-bottom: 6px;
}
.timeline__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.timeline__body {
  color: var(--ink-mute);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1024px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline__entry { border-right: 1px solid rgba(184, 152, 90, .35); }
  .timeline__entry:nth-child(2n) { border-right: none; }
  .timeline__entry:nth-child(n+3) { border-top: 1px solid rgba(184, 152, 90, .35); }
}
@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline__entry { border-right: none !important; }
  .timeline__entry + .timeline__entry { border-top: 1px solid rgba(184, 152, 90, .35); }
}

/* ───────────────────────────────── Pull quote ───────────────────────────────── */
.pullquote {
  padding: var(--s-8) 0;
  background: var(--paper);
}
.pullquote__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pullquote__mark {
  font-family: var(--serif);
  font-size: 160px;
  line-height: .7;
  color: var(--oxblood);
  opacity: .3;
  position: absolute;
  top: -24px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.pullquote__body {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.pullquote__body em { color: var(--oxblood); }
.pullquote__cite {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

/* ───────────────────────────────── Letters ───────────────────────────────── */
.letters { padding: var(--s-8) 0; background: var(--paper-warm); }
.letters__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.letter {
  background: var(--card);
  padding: 36px 32px 28px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(184, 152, 90, .3);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.letter::before {
  content: '"';
  position: absolute;
  top: 14px; left: 22px;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  color: var(--rule);
  opacity: .45;
}
.letter__body {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 12px 0 20px;
  padding-top: 24px;
}
.letter__cite {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(184, 152, 90, .35);
}
@media (max-width: 780px) {
  .letters__grid { grid-template-columns: 1fr; }
}

/* ───────────────────────────────── Download ───────────────────────────────── */
.download {
  position: relative;
  padding: var(--s-8) 0;
  background: linear-gradient(160deg, #062F31 0%, #0A3F42 45%, #0D5E61 100%);
  color: var(--paper);
  overflow: hidden;
}
.download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(184, 152, 90, .22) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 100%, rgba(110, 30, 43, .25) 0%, transparent 55%);
  pointer-events: none;
}
.download__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.download__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 0 0 22px;
}
.download__title em { color: var(--rule); }
.download__lede {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(251, 249, 244, .82);
  max-width: 580px;
  margin: 0 auto 38px;
}
.download__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.download__soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px dashed rgba(184, 152, 90, .5);
  border-radius: var(--radius-pill);
  color: rgba(251, 249, 244, .7);
  font-size: 14px;
}
.download__soon-chip {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rule);
}
.download__soon-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--paper);
}
.download__bullets {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px 36px;
  font-size: 13.5px;
  color: rgba(251, 249, 244, .7);
  letter-spacing: .01em;
}
.download__bullets li { position: relative; padding-left: 14px; }
.download__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 4px; height: 4px;
  background: var(--rule);
  border-radius: 50%;
}

/* ───────────────────────────────── Updates (newsletter) ───────────────────────────────── */
.updates {
  padding: var(--s-8) 0;
  background: var(--paper);
}
.updates__card {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 48px;
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(184, 152, 90, .35);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.updates__rose {
  width: 52px; height: 52px;
  object-fit: contain;
  margin: 0 auto 8px;
  opacity: .9;
}
.updates__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.updates__title em { color: var(--oxblood); }
.updates__lede {
  color: var(--ink-mute);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 24px;
}
.updates__form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto 16px;
}
.updates__form input {
  flex: 1;
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid rgba(10, 63, 66, .2);
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color .25s var(--ease);
}
.updates__form input:focus { border-color: var(--ink); }
.updates__success {
  font-family: var(--serif);
  font-style: italic;
  color: var(--oxblood);
  margin: 10px 0 0;
}
.updates__fine {
  font-size: 12px;
  color: var(--ink-mute);
  margin: 4px 0 0;
  letter-spacing: .04em;
}

@media (max-width: 600px) {
  .updates__card { padding: 44px 24px; }
  .updates__form { flex-direction: column; }
  .updates__form input, .updates__form button { width: 100%; }
}

/* ───────────────────────────────── Footer ───────────────────────────────── */
.footer { padding: 80px 0 40px; background: var(--paper); }
.footer__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 0, var(--rule) 20%, var(--rule) 80%, transparent 100%);
  margin-bottom: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  align-items: start;
}
.footer__brand {}
.footer__mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 12px;
}
.footer__wordmark {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 8px;
}
.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 15px;
  margin: 0;
  max-width: 260px;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__nav h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin: 0 0 16px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  color: var(--ink-mute);
  font-size: 14.5px;
  transition: color .25s var(--ease);
}
.footer__nav a:hover { color: var(--ink); }

.colophon {
  margin-top: 56px;
  padding-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12.5px;
  color: var(--ink-mute);
  text-align: center;
  border-top: 1px solid rgba(184, 152, 90, .35);
}

@media (max-width: 780px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}

/* ───────────────────────────────── Sticky CTA ───────────────────────────────── */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 20px;
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta__inner {
  background: var(--ink);
  color: var(--paper);
  max-width: 580px;
  margin: 0 auto;
  padding: 10px 10px 10px 22px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
}
.sticky-cta__copy {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
}
.sticky-cta .btn--primary {
  background: var(--paper);
  color: var(--ink);
  padding: 10px 18px;
}
.sticky-cta .btn--primary:hover {
  background: #fff;
}

@media (max-width: 600px) {
  .sticky-cta__copy { display: none; }
  .sticky-cta__inner { justify-content: center; padding: 10px 14px; }
}

/* ───────────────────────────────── Scroll reveal ───────────────────────────────── */
.will-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.will-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .will-animate { opacity: 1; transform: none; }
  .hero__art .device { animation: none; }
  .orbit { animation: none; }
}
