/* ===========================================================
   Dayframe — Frame your days.
   Matches the Figma source: white ground, blue wordmark,
   massive Fraunces hero, collage aesthetic, pill CTAs.
   =========================================================== */

:root {
  /* Ground */
  --bg: #FFFFFF;
  --bg-2: #FAFAF7;
  --bg-3: #F3F1EB;
  --paper: #FBFAF4;

  /* Ink */
  --ink: #0A0A0A;
  --ink-2: #2F2F32;
  --ink-3: #5C5C5C;
  --ink-4: #8C8C8C;
  --ink-5: #C4C4C4;
  --line: #E8E5DD;
  --line-2: #D9D5CB;

  /* Brand — sky blue wordmark + subscribe CTA */
  --blue: #17A2E8;
  --blue-2: #0E8BC8;
  --blue-soft: #BFE3F5;

  /* Collage accents (pulled from the source imagery) */
  --peach: #FF9A87;
  --peach-2: #FFC786;
  --cream: #EBEBB9;
  --pink: #F5547F;
  --rose: #E85D6E;
  --red: #C0352B;
  --calendar-sky: #7FB7D6;

  --accent: var(--blue);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow: 0 10px 30px rgba(10,10,10,.06), 0 2px 6px rgba(10,10,10,.04);
  --shadow-lg: 0 30px 80px -20px rgba(10,10,10,.18), 0 8px 20px rgba(10,10,10,.08);

  --font-serif: "Fraunces", "Crimson Text", Georgia, serif;
  --font-sans: "DM Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1440px;
  --section-py: clamp(80px, 12vw, 160px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
::selection { background: var(--blue); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 0 0 10px 0; z-index: 1000; font-weight: 500;
}
.skip-link:focus { left: 0; }

/* ===========================================================
   Typography
   =========================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: .98;
  color: var(--ink);
  margin: 0 0 .4em;
}

h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-4);
  margin: 0 0 20px;
}

.section-title {
  font-size: clamp(40px, 6vw, 84px);
  max-width: 18ch;
  line-height: .96;
}
.section-title.alt { max-width: 14ch; }

.section-sub {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--ink-3);
  max-width: 56ch;
  margin-bottom: 44px;
  line-height: 1.55;
}

/* ===========================================================
   Brand wordmark
   =========================================================== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-word {
  display: inline-flex;
  align-items: baseline;
}
.brand-word .brand-day {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.brand-word .brand-frame {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.brand-star {
  color: var(--ink);
  font-size: 14px;
  display: inline-block;
  transform: translateY(-8px);
}
.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, background .25s ease, color .25s ease, border-color .25s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-dark {
  background: var(--ink);
  color: #fff;
  padding: 13px 22px;
  gap: 12px;
}
.btn-dark:hover { background: #000; }

.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { background: var(--blue-2); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.btn-link .icon-circle {
  width: 28px; height: 28px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn .icon { flex-shrink: 0; }

.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 10px 22px 10px 18px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.15;
  cursor: pointer;
  transition: background .25s ease;
}
.appstore-btn:hover { background: #000; }
.appstore-btn .apple { width: 26px; height: 26px; }
.appstore-btn .as-text { display: inline-flex; flex-direction: column; font-weight: 500; }
.appstore-btn .as-text small { font-size: 10px; opacity: .75; text-transform: uppercase; letter-spacing: .06em; font-weight: 400; }
.appstore-btn .as-text span { font-size: 16px; letter-spacing: -0.01em; }

/* ===========================================================
   Header / Nav
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 20px;
  padding-top: 18px;
}

.site-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-3);
}
.site-nav a:hover { color: var(--ink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.lang-btn { padding: 3px 4px; color: var(--ink-4); transition: color .2s; }
.lang-btn.active { color: var(--ink); }
.lang-btn:hover { color: var(--ink); }
.lang-divider { color: var(--ink-5); padding: 0 4px; }

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

/* ===========================================================
   Hero — the big feature
   =========================================================== */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) 0 clamp(60px, 10vw, 120px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  min-height: min(820px, 88vh);
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-copy { position: relative; z-index: 2; }

.hero-title {
  font-size: clamp(64px, 10.5vw, 168px);
  line-height: .9;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
  color: var(--ink);
  font-weight: 400;
}
.hero-title em {
  color: var(--ink);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  max-width: 46ch;
  margin: 0 0 36px;
  color: var(--ink-2);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-below {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

/* ---------- Collage art ---------- */
.hero-collage {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
}

.hero-cover-img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-mock {
  position: absolute;
  width: 46%;
  aspect-ratio: 9/19;
  background: var(--ink);
  border-radius: 36px;
  border: 6px solid var(--ink);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 2;
}
.phone-mock .nav-dots {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .14em;
}
.phone-mock .nav-dots span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: .85;
}
.phone-mock .nav-dots i {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: rgba(255,255,255,.2);
  display: block;
}
.phone-mock .nav-dots .active i { background: #fff; }

/* Left phone — calendar page */
.phone-left {
  left: 6%;
  top: 8%;
  transform: rotate(-4deg);
}
.phone-left .phone-inner {
  position: absolute;
  inset: 0 0 34px 0;
  background: linear-gradient(180deg, var(--calendar-sky) 0%, #A8C8DE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-page {
  width: 84%;
  aspect-ratio: 3/4.2;
  background: var(--paper);
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  padding: 14px 10px 12px;
  position: relative;
  transform: rotate(-2deg);
}
.cal-page::before {
  content: "";
  position: absolute;
  top: -8px; left: 0; right: 0;
  height: 12px;
  background: linear-gradient(to bottom, var(--red) 0%, var(--red) 60%, transparent 60%);
  border-radius: 2px;
  background-image: repeating-linear-gradient(90deg, var(--red) 0 6px, #A82820 6px 8px);
}
.cal-page .cal-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-sans);
  font-size: 7px;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.cal-page .cal-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--rose);
  font-weight: 400;
  text-align: center;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.cal-page .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-page .cal-grid i {
  aspect-ratio: 1;
  background: var(--bg-3);
  border-radius: 2px;
  display: block;
  font-size: 5px;
  font-family: var(--font-sans);
  color: var(--ink-4);
}
.cal-page .cal-grid i:nth-child(3n) { background: var(--peach-2); }
.cal-page .cal-grid i:nth-child(5n) { background: var(--peach); }
.cal-page .cal-grid i:nth-child(7n) { background: var(--cream); }
.cal-page .cal-grid i:nth-child(11n) { background: var(--pink); }

/* Safety pin */
.pin {
  position: absolute;
  top: -14px; left: 20%;
  width: 26px; height: 70px;
  border: 2px solid #B8B8B8;
  border-radius: 12px;
  background: transparent;
  z-index: 3;
  transform: rotate(-8deg);
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.pin::before {
  content: "";
  position: absolute;
  top: 4px; left: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #D4D4D4;
}

/* Binder clip */
.clip {
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 34px;
  background: var(--ink);
  border-radius: 2px 2px 6px 6px;
  z-index: 3;
  box-shadow: 0 4px 8px rgba(0,0,0,.25);
}
.clip::before, .clip::after {
  content: "";
  position: absolute;
  top: -6px;
  width: 8px; height: 10px;
  border: 1.5px solid #888;
  border-radius: 4px 4px 0 0;
  border-bottom: 0;
}
.clip::before { left: 8px; }
.clip::after { right: 8px; }

/* Right phone — weekly recap */
.phone-right {
  right: 2%;
  top: 12%;
  transform: rotate(3deg);
  width: 42%;
}
.phone-right .phone-inner {
  position: absolute;
  inset: 0 0 34px 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 20px 14px 0;
}
.phone-right .recap-title {
  font-family: var(--font-serif);
  color: #fff;
  text-align: center;
  font-size: 14px;
  letter-spacing: .18em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.phone-right .recap-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 7px;
  color: #fff;
  text-align: center;
}
.phone-right .recap-week i {
  display: block;
  padding: 4px 0;
  border-radius: 3px;
  opacity: .7;
}
.phone-right .recap-week .on {
  background: #fff;
  color: var(--ink);
  opacity: 1;
  font-weight: 600;
}
.phone-right .recap-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  flex: 1;
}
.phone-right .recap-photos i {
  border-radius: 4px;
  background: var(--bg-3);
}
.phone-right .recap-photos i:nth-child(1) { background: linear-gradient(160deg, #C6A888, #6B5340); }
.phone-right .recap-photos i:nth-child(2) { background: linear-gradient(160deg, #B89878, #756045); grid-row: span 2; }
.phone-right .recap-photos i:nth-child(3) { background: linear-gradient(160deg, #EAD8B8, #A68856); }
.phone-right .recap-photos i:nth-child(4) { background: linear-gradient(160deg, var(--peach), var(--rose)); }
.phone-right .recap-photos i:nth-child(5) { background: linear-gradient(160deg, #2B2825, #0D0B0A); }

/* Floating decorative elements */
.star-red {
  position: absolute;
  width: 62px; height: 62px;
  background: var(--red);
  right: 28%; top: 54%;
  z-index: 3;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  transform: rotate(18deg);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.2));
}
.flower {
  position: absolute;
  left: 10%; bottom: 6%;
  width: 110px; height: 110px;
  z-index: 3;
  transform: rotate(-14deg);
}
.flower::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, #F5C8D4 0%, #E8A5B8 30%, transparent 32%),
    conic-gradient(from 0deg at 50% 50%,
      #F5C8D4 0 8%, transparent 8% 12.5%,
      #F5C8D4 12.5% 20.5%, transparent 20.5% 25%,
      #F5C8D4 25% 33%, transparent 33% 37.5%,
      #F5C8D4 37.5% 45.5%, transparent 45.5% 50%,
      #F5C8D4 50% 58%, transparent 58% 62.5%,
      #F5C8D4 62.5% 70.5%, transparent 70.5% 75%,
      #F5C8D4 75% 83%, transparent 83% 87.5%,
      #F5C8D4 87.5% 95.5%, transparent 95.5% 100%);
  filter: blur(0.6px) drop-shadow(0 3px 6px rgba(0,0,0,.1));
  border-radius: 50%;
}
.flower::after {
  content: "";
  position: absolute;
  inset: 30%;
  background: radial-gradient(circle at 50% 50%, #8A5A3C 0%, #5D3920 60%, #4A2C18 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 12px rgba(0,0,0,.3);
}

.stamp {
  position: absolute;
  left: 32%; bottom: 2%;
  width: 78px; height: 90px;
  background: var(--paper);
  z-index: 3;
  transform: rotate(4deg);
  border: 2px dashed var(--ink-5);
  padding: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.stamp::before {
  content: "50¢";
  position: absolute;
  top: 4px; left: 6px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--ink);
  font-weight: 500;
}
.stamp-apple {
  position: absolute;
  top: 30%;
  left: 22%;
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 35% 35%, #D14A28, #8A1F0F 70%, #5D0F05 100%);
  border-radius: 50% 50% 48% 48% / 42% 42% 58% 58%;
}
.stamp-apple::before {
  content: "";
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%) rotate(12deg);
  width: 14px; height: 8px;
  background: #5A8C3A;
  border-radius: 50% 10% 50% 10%;
}

.cherry {
  position: absolute;
  right: 20%; bottom: 18%;
  width: 66px; height: 66px;
  background: radial-gradient(circle at 35% 30%, #D42841 0%, #8B0F1F 70%);
  border-radius: 50%;
  z-index: 3;
  box-shadow:
    -18px 10px 0 -4px radial-gradient(circle at 35% 30%, #D42841, #8B0F1F),
    0 4px 10px rgba(0,0,0,.15);
  transform: rotate(-8deg);
}
.cherry::after {
  content: "";
  position: absolute;
  top: -12px; left: 40%;
  width: 1px; height: 14px;
  background: #4A6B2A;
  transform: rotate(15deg);
}

@media (max-width: 960px) {
  .hero-collage {
    margin: 40px auto 0;
    max-width: 500px;
  }
}

/* ===========================================================
   Marquee
   =========================================================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
  padding: 22px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.2vw, 40px);
  color: var(--ink);
  padding-left: 40px;
  font-weight: 400;
}
.marquee-track span:nth-child(even) {
  font-style: italic;
  color: var(--blue);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================================================
   Sections
   =========================================================== */
.section { padding: var(--section-py) 0; position: relative; }

/* BENEFITS */
.benefits { background: var(--bg); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .3s ease, border-color .3s ease;
}
.feature:hover { transform: translateY(-3px); border-color: var(--blue); }
.feature h3 { font-size: 26px; margin-top: 22px; margin-bottom: 10px; color: var(--ink); }
.feature p { font-size: 15px; color: var(--ink-3); margin: 0; line-height: 1.6; }
.feature-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-ico svg {
  width: 28px; height: 28px;
  display: block;
}
.ico-1 { color: var(--peach); }
.ico-2 { color: var(--peach-2); }
.ico-3 { color: var(--blue); }
.ico-4 { color: #B8B866; }
.ico-5 { color: var(--pink); }
.ico-6 { color: var(--blue); }

/* HOW IT WORKS */
.how { background: var(--bg-2); }
.steps {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.step-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 64px;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 { font-size: 28px; margin-bottom: 10px; color: var(--ink); }
.step p { color: var(--ink-3); margin: 0; font-size: 15px; line-height: 1.6; }

/* RECAPS */
.recaps { background: var(--bg); }
.recaps-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .recaps-grid { grid-template-columns: 1fr; } }

.tick-list {
  list-style: none; padding: 0; margin: 28px 0 36px;
  display: grid; gap: 12px;
}
.tick-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  color: var(--ink-2);
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--blue);
}

.recaps-art { display: flex; justify-content: center; }
.week-card-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.week-card {
  width: 100%;
  max-width: 480px;
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.wc-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.wc-head > span:first-child {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: rgba(255,255,255,.65);
}
.wc-range {
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
  color: var(--peach-2);
}
.wc-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.wc-day {
  aspect-ratio: 1/1.4;
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.wc-day em {
  font-style: normal;
  font-size: 18px;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}
.wc-day.c1 { background: linear-gradient(160deg, var(--peach), var(--pink)); }
.wc-day.c2 { background: linear-gradient(160deg, var(--peach-2), #DB8335); }
.wc-day.c3 { background: linear-gradient(160deg, var(--cream), var(--peach-2)); }
.wc-day.c4 { background: linear-gradient(160deg, var(--blue-soft), var(--blue)); color: #fff; }
.wc-day.c5 { background: linear-gradient(160deg, var(--pink), var(--red)); color: #fff; }
.wc-foot { display: flex; gap: 8px; }
.wc-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2em;
  background: rgba(255,255,255,.1);
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto blockquote {
  margin: 0 auto;
  max-width: 26ch;
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: var(--ink);
}
.manifesto blockquote em { color: var(--blue); font-style: italic; }
.manifesto blockquote p { margin: 0; }

/* PREORDER */
.preorder {
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.preorder-inner .section-title,
.preorder-inner .section-sub { margin-left: auto; margin-right: auto; }
.preorder-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* NEWSLETTER */
.newsletter {
  background: var(--blue);
  color: #fff;
}
.newsletter .eyebrow { color: #fff; opacity: .75; }
.newsletter h2, .newsletter h2 em { color: #fff; }
.newsletter p { color: #fff; opacity: .92; }
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px) { .newsletter-inner { grid-template-columns: 1fr; } }

.klaviyo-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px;
  border-radius: 999px;
}
.klaviyo-form .form-status:empty { display: none; }
.klaviyo-form input {
  border: 0;
  background: transparent;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.klaviyo-form input::placeholder { color: var(--ink-4); }
.klaviyo-form .btn { padding: 14px 24px; background: var(--ink); color: #fff; }
.klaviyo-form .btn:hover { background: #000; }
.klaviyo-form .form-status,
.klaviyo-form .form-fine {
  grid-column: 1 / -1;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  margin: 4px 0 0;
  padding: 0 14px;
}
.klaviyo-form .form-fine a { color: #fff; text-decoration: underline; }
.klaviyo-form .form-status[data-state="success"] { color: #fff; }
.klaviyo-form .form-status[data-state="error"] { color: #FFE4E4; }

/* FAQ */
.faq { background: var(--bg-2); }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 10px;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 26px;
  color: var(--blue);
  font-family: var(--font-sans);
  font-weight: 300;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; color: var(--ink-3); font-size: 15px; line-height: 1.6; }
.faq-item p a { color: var(--blue); text-decoration: underline; }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
  background: var(--bg);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.foot-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.foot-tag { color: var(--ink-3); margin: 6px 0 0; font-size: 14px; font-style: italic; font-family: var(--font-serif); }

.foot-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--ink-4);
  margin: 0 0 18px;
}
.foot-col a {
  display: block;
  color: var(--ink-2);
  font-size: 15px;
  padding: 5px 0;
  transition: color .2s;
}
.foot-col a:hover { color: var(--blue); }

.foot-base {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-4);
}
.foot-base p { margin: 0; }
.foot-base a { text-decoration: underline; margin-right: 20px; }

/* ===========================================================
   Newsletter Popup
   =========================================================== */
.nl-popup {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}
.nl-popup.is-open { display: flex; }
.nl-popup-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: pop .3s ease-out;
}
@keyframes pop {
  from { transform: scale(.95) translateY(8px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.nl-popup h3 { font-size: 34px; margin-bottom: 14px; color: var(--ink); }
.nl-popup p { color: var(--ink-3); }
.nl-popup .klaviyo-form { background: var(--bg-2); border: 1px solid var(--line); }
.nl-popup .klaviyo-form .form-status[data-state="success"] { color: var(--blue); }
.nl-popup .klaviyo-form .form-status[data-state="error"] { color: #c44; }
.nl-popup .klaviyo-form .form-fine { color: var(--ink-4); }
.nl-popup .klaviyo-form .form-fine a { color: var(--blue); }
.nl-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  font-size: 20px;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}
.nl-close:hover { background: var(--ink); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
