/* =========================================================================
   UnTechIt — Main Stylesheet
   Design system + components + page styles
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Color — warm, restrained, premium */
  --bone:           #F2EBE0;
  --bone-2:         #ECE4D6;
  --cream:          #E8DFD1;
  --paper:          #F7F2E9;
  --graphite:       #1C1C1A;
  --charcoal:       #2E2E2B;
  --ash:            #6B6B66;
  --ash-2:          #93908A;
  --silver:         #BFBAAF;
  --digital-green:  #5E7A5C;   /* Faded CRT — primary accent */
  --digital-green-2:#7A9577;
  --amber:          #C08638;   /* Warm retro pilot-light */
  --amber-soft:     #E4B57A;

  --surface:        var(--bone);
  --surface-deep:   var(--graphite);
  --ink:            var(--graphite);
  --ink-soft:       var(--ash);
  --accent:         var(--digital-green);
  --accent-warm:    var(--amber);

  /* Typography */
  --font-display:   'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body:      'Geist', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  --font-mono:      'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Spacing scale (8-point soft rhythm) */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.5rem;
  --s-6:  2rem;
  --s-7:  3rem;
  --s-8:  4rem;
  --s-9:  6rem;
  --s-10: 8rem;
  --s-11: 12rem;

  /* Container */
  --container:      1240px;
  --container-narrow: 880px;
  --gutter:         clamp(1.25rem, 4vw, 2.5rem);

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadow / depth — warm, soft, never dramatic */
  --shadow-soft:   0 1px 2px rgba(28,28,26,0.04), 0 12px 32px -12px rgba(28,28,26,0.12);
  --shadow-lift:   0 2px 4px rgba(28,28,26,0.06), 0 24px 60px -18px rgba(28,28,26,0.18);
  --shadow-object: 0 30px 60px -24px rgba(28,28,26,0.35), 0 8px 16px -8px rgba(28,28,26,0.12);

  /* Motion */
  --ease:          cubic-bezier(0.2, 0.6, 0.15, 1);
  --ease-in:       cubic-bezier(0.6, 0.0, 0.9, 0.4);
  --t-fast:        180ms;
  --t-med:         420ms;
  --t-slow:        800ms;
}

/* -------------------------------------------------------------------------
   2. RESET + BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  font-weight: 400;
  font-feature-settings: "ss01", "ss02";
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea { font: inherit; color: inherit; }

::selection { background: var(--graphite); color: var(--bone); }

/* Paper grain — subtle, earns its keep */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(rgba(28,28,26,0.12) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* -------------------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------------------- */
.display,
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 380;        /* Fraunces variable — softer editorial weight */
  font-variation-settings: "SOFT" 50, "opsz" 144;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--ink);
}

h1, .h1 {
  font-size: clamp(2.75rem, 7vw, 6rem);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h2, .h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.75rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
}

h3, .h3 {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-weight: 420;
}

.italic,
em { font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
}

.eyebrow--accent { color: var(--accent); }

.lede {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 60ch;
  font-weight: 400;
}

.micro {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
}

/* -------------------------------------------------------------------------
   4. LAYOUT
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.container--narrow { max-width: var(--container-narrow); }

section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

section.dense { padding: clamp(3rem, 6vw, 5rem) 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-bottom: var(--s-8);
  max-width: 62ch;
}

.section-head .eyebrow { margin-bottom: var(--s-2); }

/* -------------------------------------------------------------------------
   5. NAVIGATION
   ------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s-4) 0;
  transition: background var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              padding var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(242, 235, 224, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: rgba(28,28,26,0.08);
  padding: var(--s-3) 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5ch;
  font-family: var(--font-display);
  font-weight: 450;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav__logo .logo-mark {
  width: 28px;
  height: 28px;
}

.nav__links {
  display: flex;
  gap: var(--s-6);
  list-style: none;
  padding: 0;
}

.nav__links a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color var(--t-fast) var(--ease);
  position: relative;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--ink);
}

.nav__links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
}

/* Featured nav item — Sprout TeleWorks earns a small amber pilot light
   to signal "this product has its own dedicated page". */
.nav__links a.featured {
  display: inline-flex;
  align-items: center;
  gap: 0.55ch;
  color: var(--ink);
}
.nav__links a.featured::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 2px rgba(192,134,56,0.18);
  flex: 0 0 auto;
}

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 20px; height: 1.5px; background: var(--ink);
  transition: transform var(--t-fast) var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }

/* -------------------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.9rem 1.6rem;
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  will-change: transform;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--graphite);
  color: var(--bone);
}
.btn--primary:hover {
  background: var(--charcoal);
  box-shadow: var(--shadow-lift);
}

.btn--ghost {
  color: var(--ink);
  border: 1px solid rgba(28,28,26,0.18);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(28,28,26,0.03);
}

.btn--link {
  padding: 0;
  background: none;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding-bottom: 2px;
}
.btn--link:hover { color: var(--accent); }

.btn .arrow {
  display: inline-block;
  transition: transform var(--t-fast) var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* -------------------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------------------- */
.hero {
  min-height: 92vh;
  padding-top: clamp(7rem, 14vh, 10rem);
  padding-bottom: clamp(4rem, 10vw, 6rem);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(192,134,56,0.08), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(94,122,92,0.07), transparent 55%),
    linear-gradient(180deg, var(--bone) 0%, var(--bone-2) 100%);
}

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

.hero__copy { max-width: 32ch; }

.hero__meta {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}

.hero__meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--digital-green);
  box-shadow: 0 0 0 3px rgba(94,122,92,0.18);
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(94,122,92,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(94,122,92,0.05); }
}

.hero h1 {
  margin-bottom: var(--s-5);
}
.hero h1 em {
  color: var(--accent);
  font-weight: 380;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: var(--s-6);
  max-width: 42ch;
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual svg,
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 50px rgba(28,28,26,0.22));
  transition: transform var(--t-med) var(--ease);
}
.hero__visual img {
  border-radius: var(--r-xl);
  object-fit: cover;
}

.hero__caption {
  position: absolute;
  bottom: 0; left: 0;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}
.hero__caption::before {
  content: ""; width: 24px; height: 1px; background: var(--ash);
}

/* -------------------------------------------------------------------------
   8. MARQUEE / TICKER
   ------------------------------------------------------------------------- */
.ticker {
  border-top: 1px solid rgba(28,28,26,0.1);
  border-bottom: 1px solid rgba(28,28,26,0.1);
  overflow: hidden;
  padding: var(--s-4) 0;
  background: var(--paper);
}

.ticker__track {
  display: flex;
  gap: var(--s-7);
  white-space: nowrap;
  animation: slide 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.ticker__track span {
  display: inline-flex;
  align-items: center;
  gap: var(--s-5);
}
.ticker__track span::after {
  content: "✦";
  color: var(--accent);
  opacity: 0.7;
}

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------------------------------------------------------------------------
   9. STATEMENT / EDITORIAL BLOCKS
   ------------------------------------------------------------------------- */
.statement {
  background: var(--bone);
}

.statement__lead {
  font-family: var(--font-display);
  font-weight: 340;
  font-variation-settings: "SOFT" 70, "opsz" 144;
  font-size: clamp(1.7rem, 3.1vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 28ch;
}

.statement__lead em {
  font-style: italic;
  color: var(--accent);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.two-col p + p { margin-top: var(--s-4); }

/* -------------------------------------------------------------------------
   10. PRODUCT CARDS
   ------------------------------------------------------------------------- */
.products {
  background: var(--bone);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1.25rem, 2vw, 2rem);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(28,28,26,0.06);
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.product-card__media {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 65% 35%, var(--bone-2), var(--cream) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-6);
  position: relative;
  overflow: hidden;
}

.product-card__media svg {
  width: 78%;
  height: auto;
  filter: drop-shadow(0 20px 28px rgba(28,28,26,0.22));
  transition: transform var(--t-slow) var(--ease);
}

.product-card:hover .product-card__media svg {
  transform: translateY(-4px) scale(1.02);
}

/* Photo variant — used when the card media is a JPG render, not an SVG illustration.
   Fills the media box, no inner padding, gentle zoom on hover. */
.product-card__media--img {
  padding: 0;
  background: var(--paper);
}
.product-card__media--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.product-card:hover .product-card__media--img img {
  transform: scale(1.03);
}

/* Stub variant — used when a product is committed to the catalog but
   doesn't have a render yet. Honest placeholder with the logomark and
   a mono "render in progress" label. */
.product-card__media--stub {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  text-align: center;
}
.product-card__media--stub .stub-mark {
  width: 48px; height: 48px; opacity: 0.35;
}
.product-card__media--stub .stub-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}

.product-card__badge {
  position: absolute;
  top: var(--s-4); left: var(--s-4);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 4px 10px;
  border: 1px solid rgba(28,28,26,0.15);
  border-radius: var(--r-pill);
  background: rgba(247,242,233,0.6);
  backdrop-filter: blur(4px);
}
.product-card__badge--live {
  color: var(--accent);
  border-color: rgba(94,122,92,0.4);
}
.product-card__badge--soon {
  color: var(--amber);
  border-color: rgba(192,134,56,0.4);
}

.product-card__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  background: var(--paper);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 430;
  letter-spacing: -0.015em;
}

.product-card__tagline {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.product-card__foot {
  margin-top: var(--s-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-3);
  border-top: 1px solid rgba(28,28,26,0.08);
  font-size: 0.85rem;
}

.product-card__price {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--ink);
}

.product-card__cta {
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.4ch;
  transition: color var(--t-fast) var(--ease);
}

.product-card:hover .product-card__cta {
  color: var(--accent);
}

/* -------------------------------------------------------------------------
   11. PROBLEM SECTION (dark)
   ------------------------------------------------------------------------- */
.dark-section {
  background: var(--graphite);
  color: var(--bone);
}
.dark-section h2 { color: var(--bone); }
.dark-section .eyebrow { color: var(--digital-green-2); }
.dark-section p { color: rgba(242,235,224,0.75); }

.stat-grid {
  margin-top: var(--s-8);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-6);
  border-top: 1px solid rgba(242,235,224,0.15);
  padding-top: var(--s-6);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--bone);
  font-weight: 380;
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--digital-green-2);
}

.stat__note {
  font-size: 0.9rem;
  color: rgba(242,235,224,0.6);
  max-width: 24ch;
}

/* -------------------------------------------------------------------------
   12. PHILOSOPHY / PRINCIPLES
   ------------------------------------------------------------------------- */
.principles {
  background: var(--bone);
}

.principle-row {
  display: grid;
  grid-template-columns: 72px 1fr minmax(0, 1.6fr);
  gap: clamp(1rem, 3vw, 3rem);
  padding: var(--s-6) 0;
  border-top: 1px solid rgba(28,28,26,0.1);
  align-items: start;
}
.principle-row:last-child { border-bottom: 1px solid rgba(28,28,26,0.1); }

.principle-row__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--ash);
}

.principle-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 420;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.principle-row__body {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

/* -------------------------------------------------------------------------
   12b. UNTECHIT DAY — small editorial block introducing the movement
   ------------------------------------------------------------------------- */
.untechit-day {
  background: var(--paper);
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.untechit-day__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.untechit-day h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  max-width: 16ch;
  margin-top: var(--s-3);
}
.untechit-day p {
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.6;
}
.untechit-day p + p { margin-top: var(--s-4); }

.untechit-day__date {
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 380;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.untechit-day__date small {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}

/* -------------------------------------------------------------------------
   13. MANIFESTO
   ------------------------------------------------------------------------- */
.manifesto {
  background: var(--cream);
  padding: clamp(5rem, 12vw, 9rem) 0;
  text-align: left;
}

.manifesto__lines {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-top: var(--s-7);
}

.manifesto__line {
  font-family: var(--font-display);
  font-weight: 340;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 20ch;
}
.manifesto__line em { color: var(--accent); font-style: italic; }

/* -------------------------------------------------------------------------
   14. SIGNUP
   ------------------------------------------------------------------------- */
.signup {
  background: var(--graphite);
  color: var(--bone);
  padding: clamp(5rem, 10vw, 7rem) 0;
}

.signup h2 { color: var(--bone); max-width: 18ch; }
.signup p  { color: rgba(242,235,224,0.75); max-width: 42ch; margin-top: var(--s-4); }

.signup__form {
  margin-top: var(--s-7);
  display: flex;
  gap: var(--s-3);
  max-width: 520px;
  flex-wrap: wrap;
}

.signup__form input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 1rem 1.3rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(242,235,224,0.25);
  background: rgba(242,235,224,0.05);
  color: var(--bone);
  font-size: 0.95rem;
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
}

.signup__form input[type="email"]::placeholder {
  color: rgba(242,235,224,0.45);
}

.signup__form input[type="email"]:focus {
  outline: none;
  border-color: var(--digital-green-2);
  background: rgba(242,235,224,0.08);
}

.signup__form button {
  background: var(--bone);
  color: var(--graphite);
  padding: 1rem 1.8rem;
  border-radius: var(--r-pill);
  font-weight: 500;
  transition: background var(--t-fast) var(--ease);
}
.signup__form button:hover { background: #fff; }

.signup__foot {
  margin-top: var(--s-4);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,235,224,0.45);
}

/* -------------------------------------------------------------------------
   15. FOOTER
   ------------------------------------------------------------------------- */
.footer {
  background: var(--bone);
  padding: clamp(3rem, 6vw, 5rem) 0 var(--s-6);
  border-top: 1px solid rgba(28,28,26,0.08);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-8);
}

.footer__mission {
  margin-top: var(--s-4);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 360;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 26ch;
  line-height: 1.4;
}

.footer__brand .nav__logo { margin-bottom: var(--s-3); }
.footer__tag {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 28ch;
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: var(--s-4);
  font-weight: 500;
}

.footer__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.footer__col a { font-size: 0.95rem; color: var(--ink); transition: color var(--t-fast) var(--ease); }
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-5);
  border-top: 1px solid rgba(28,28,26,0.08);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash);
  gap: var(--s-4);
  flex-wrap: wrap;
}

.footer__bottom .signal {
  display: inline-flex;
  align-items: center;
  gap: 0.5ch;
}
.footer__bottom .signal::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--digital-green);
  box-shadow: 0 0 0 2px rgba(94,122,92,0.2);
}

/* -------------------------------------------------------------------------
   16. SHOP / COLLECTION PAGE
   ------------------------------------------------------------------------- */
.page-head {
  padding: calc(7rem + var(--s-7)) 0 var(--s-8);
  background: var(--paper);
  border-bottom: 1px solid rgba(28,28,26,0.08);
}
.page-head h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  max-width: 14ch;
  margin-bottom: var(--s-5);
}
.page-head p {
  color: var(--ink-soft);
  max-width: 52ch;
  font-size: 1.1rem;
}
.page-head .eyebrow { margin-bottom: var(--s-4); display: inline-block; }

.filter-bar {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: var(--s-7);
}

.chip {
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(28,28,26,0.15);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  transition: all var(--t-fast) var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip.active {
  background: var(--graphite);
  color: var(--bone);
  border-color: var(--graphite);
}

/* -------------------------------------------------------------------------
   17. PRODUCT DETAIL PAGE
   ------------------------------------------------------------------------- */
.pdp {
  padding-top: calc(7rem + var(--s-5));
  padding-bottom: var(--s-9);
  background: var(--paper);
}

.pdp__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.pdp__media {
  position: sticky;
  top: calc(7rem + var(--s-3));
  aspect-ratio: 1 / 1.1;
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse at 60% 35%, var(--bone), var(--cream) 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
}

.pdp__media svg {
  width: 82%;
  filter: drop-shadow(0 40px 45px rgba(28,28,26,0.22));
}

/* Photo variant — used when the PDP media is a JPG render. */
.pdp__media--img { padding: 0; background: var(--paper); }
.pdp__media--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp__trail {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: var(--s-5);
}
.pdp__trail a { color: var(--ash); transition: color var(--t-fast) var(--ease); }
.pdp__trail a:hover { color: var(--ink); }

.pdp h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: var(--s-4);
}

.pdp__thesis {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 340;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  color: var(--ink-soft);
  max-width: 38ch;
  line-height: 1.4;
  margin-bottom: var(--s-6);
}

.pdp__status {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
  padding: var(--s-4) var(--s-5);
  background: var(--bone);
  border: 1px solid rgba(28,28,26,0.08);
  border-radius: var(--r-md);
}
.pdp__status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(192,134,56,0.18);
}
.pdp__status-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}
.pdp__price {
  margin-left: auto;
  font-family: var(--font-mono);
  color: var(--ink);
}

.pdp__ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-8);
}

.pdp__section {
  padding-top: var(--s-6);
  margin-top: var(--s-6);
  border-top: 1px solid rgba(28,28,26,0.1);
}
.pdp__section h3 {
  font-size: 1.15rem;
  margin-bottom: var(--s-3);
  font-weight: 480;
  letter-spacing: 0.01em;
  font-family: var(--font-body);
}
.pdp__section p { color: var(--ink-soft); line-height: 1.65; }

.spec-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column;
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(28,28,26,0.08);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.spec-list li span:first-child { color: var(--ash); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.7rem; }
.spec-list li span:last-child  { color: var(--ink); text-align: right; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-4);
}
.feature {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.feature__icon {
  width: 28px; height: 28px;
  color: var(--accent);
}
.feature strong {
  font-weight: 500;
  color: var(--ink);
}
.feature span {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* -------------------------------------------------------------------------
   18. ABOUT PAGE
   ------------------------------------------------------------------------- */
.about-hero {
  padding: calc(7rem + var(--s-8)) 0 var(--s-10);
  background: var(--bone);
  text-align: left;
}
.about-hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  max-width: 16ch;
  margin-bottom: var(--s-6);
}
.about-hero__lede {
  font-family: var(--font-display);
  font-weight: 340;
  font-style: italic;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--ink-soft);
  max-width: 55ch;
  line-height: 1.5;
}

/* Mission line — sits above the eyebrow on the About page.
   The brand "why" — placed at the top as a pull-quote that anchors the page. */
.about-hero__mission {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 360;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: var(--s-7);
  max-width: 22ch;
}
.about-hero__mission::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
  margin-bottom: var(--s-4);
}

.story-block {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.story-block + .story-block {
  border-top: 1px solid rgba(28,28,26,0.1);
}

.story-block--dark {
  background: var(--graphite);
  color: var(--bone);
}
.story-block--dark h2 { color: var(--bone); }
.story-block--dark p  { color: rgba(242,235,224,0.75); }
.story-block--dark .eyebrow { color: var(--digital-green-2); }

.story-block h2 { max-width: 18ch; margin-bottom: var(--s-6); }
.story-block p  { max-width: 62ch; font-size: 1.05rem; line-height: 1.65; }
.story-block p + p { margin-top: var(--s-4); }

/* -------------------------------------------------------------------------
   19. CONTACT PAGE
   ------------------------------------------------------------------------- */
.contact {
  padding: calc(7rem + var(--s-8)) 0 var(--s-9);
  background: var(--bone);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact__copy h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: var(--s-5); max-width: 14ch; }
.contact__copy p  { color: var(--ink-soft); max-width: 42ch; font-size: 1.05rem; }

.contact__meta {
  margin-top: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(28,28,26,0.1);
}
.contact__meta-row h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: var(--s-2);
}
.contact__meta-row p { color: var(--ink); font-size: 1rem; }

.form-card {
  background: var(--paper);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--r-lg);
  border: 1px solid rgba(28,28,26,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.field label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}

.field input,
.field textarea,
.field select {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(28,28,26,0.15);
  border-radius: var(--r-md);
  background: var(--bone);
  font-size: 1rem;
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; font-family: var(--font-body); }

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

.form-card .btn { align-self: flex-start; margin-top: var(--s-2); }

/* -------------------------------------------------------------------------
   19c. LAUNCH V1 — EDITORIAL SPOTLIGHT (Family / Pocket sections)
   Wide two-column block: a large lifestyle image on one side, restrained
   copy on the other. Used on the homepage for the Family and Pocket
   sections. Image fills its column, sits on paper, gets a warm soft shadow.
   ------------------------------------------------------------------------- */
.spotlight {
  background: var(--bone);
}
.spotlight + .spotlight { border-top: 1px solid rgba(28,28,26,0.06); }
.spotlight--paper { background: var(--paper); }

.spotlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.spotlight--reverse .spotlight__grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}
.spotlight--reverse .spotlight__media { order: 2; }

.spotlight__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 3 / 2;
  background: var(--cream);
}
.spotlight__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.spotlight__media:hover img { transform: scale(1.02); }

.spotlight__copy { max-width: 38ch; }
.spotlight__copy h2 { margin-top: var(--s-4); }
.spotlight__copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: var(--s-5);
}
.spotlight__copy p + p { margin-top: var(--s-4); }
.spotlight__copy .btn { margin-top: var(--s-6); }

/* -------------------------------------------------------------------------
   19d. SPROUT HOME — STATE DEMO
   Big stage image of Home device on the left, three selectable state
   cards on the right. Clicking a card swaps the stage image + caption,
   honors keyboard + reduced-motion.
   ------------------------------------------------------------------------- */
.home-demo {
  background: var(--paper);
}

.home-demo__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.home-demo__stage {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lift);
}
.home-demo__stage img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.home-demo__stage img.is-active { opacity: 1; }

.home-demo__caption {
  position: absolute;
  left: var(--s-5);
  bottom: var(--s-5);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 0.45rem 0.95rem;
  border-radius: var(--r-pill);
  background: rgba(28,28,26,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
}
.home-demo__caption-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.18);
  transition: background var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}

.home-demo__states {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.state-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  align-items: start;
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-lg);
  border: 1px solid rgba(28,28,26,0.1);
  background: var(--bone);
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.state-card:hover { border-color: rgba(28,28,26,0.25); }
.state-card.is-active {
  border-color: var(--ink);
  background: var(--bone);
  box-shadow: var(--shadow-soft);
}
.state-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.state-card__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.0), 0 0 0 1px rgba(28,28,26,0.12);
  margin-top: 4px;
  transition: box-shadow var(--t-fast) var(--ease);
}
.state-card[data-state="ready"]   .state-card__dot { background: #F7F2E9; box-shadow: 0 0 0 1px rgba(28,28,26,0.18); }
.state-card[data-state="checkin"] .state-card__dot { background: var(--digital-green); box-shadow: 0 0 0 3px rgba(94,122,92,0.18); }
.state-card[data-state="attention"] .state-card__dot { background: #C24D3E; box-shadow: 0 0 0 3px rgba(194,77,62,0.2); }

.state-card__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  display: block;
  margin-bottom: var(--s-1);
}
.state-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 430;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: block;
  margin-bottom: var(--s-2);
}
.state-card__body {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Caption dot mirrors the active state's color via JS-set data attribute */
.home-demo__stage[data-state="ready"]     .home-demo__caption-dot { background: #F7F2E9; box-shadow: 0 0 0 3px rgba(255,255,255,0.22); }
.home-demo__stage[data-state="checkin"]   .home-demo__caption-dot { background: var(--digital-green-2); box-shadow: 0 0 0 3px rgba(122,149,119,0.35); }
.home-demo__stage[data-state="attention"] .home-demo__caption-dot { background: #E07666; box-shadow: 0 0 0 3px rgba(224,118,102,0.35); }

/* -------------------------------------------------------------------------
   19e. SPROUT STEM — TWO SIZES
   Stem ships in two sizes: a larger one for Sprout Home and a smaller
   one for Sprout Go. Present them as two distinct products under one
   section, with a shared lead image above.
   ------------------------------------------------------------------------- */
.stem-section {
  background: var(--bone);
}

.stem-lead {
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: var(--s-7);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lift);
  background: var(--cream);
}
.stem-lead img { width: 100%; height: 100%; object-fit: cover; display: block; }

.stem-pair {
  margin-top: var(--s-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.stem-tile {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(28,28,26,0.06);
}
.stem-tile__media {
  aspect-ratio: 4 / 3;
  background: var(--cream);
  overflow: hidden;
}
.stem-tile__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.stem-tile:hover .stem-tile__media img { transform: scale(1.02); }

.stem-tile__body {
  padding: var(--s-5) var(--s-6) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.stem-tile__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}
.stem-tile__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 430;
  letter-spacing: -0.01em;
  margin-top: var(--s-1);
}
.stem-tile__copy {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-top: var(--s-2);
}
.stem-tile__meta {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(28,28,26,0.08);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* -------------------------------------------------------------------------
   19f. TELEWORKS TEASER (on homepage)
   A small, restrained block that hints at the next product without
   stealing the homepage's voice. Links to the dedicated Coming Soon page.
   ------------------------------------------------------------------------- */
.tw-teaser {
  background: var(--paper);
}

.tw-teaser__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.tw-teaser__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lift);
  background: var(--cream);
}
.tw-teaser__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.tw-teaser__copy { max-width: 38ch; }
.tw-teaser__copy h2 { margin-top: var(--s-4); }
.tw-teaser__copy p {
  margin-top: var(--s-5);
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}
.tw-teaser__copy .btn { margin-top: var(--s-6); }

.tw-teaser-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 0.45rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(192,134,56,0.4);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}
.tw-teaser-pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(192,134,56,0.2);
}

/* -------------------------------------------------------------------------
   19g. TELEWORKS COMING SOON PAGE
   Calm/lifestyle aesthetic — NOT the v2 dark-gallery treatment. Sits on
   cream like the rest of the line. Cream vignette frames around the two
   warm-orange clear-cradle shots so olive and clear read as one product.

   NOTE: The two clear-cradle source photos were shot on a warm orange
   wood-slat surface with strong palm-frond light. They read as a
   different shoot than the cream-room olive cradle. The .clear-vignette
   wrapper softens that mismatch at the layout level (paper frame +
   tonal overlay). Post-launch polish: have these properly recomposited
   onto the cream-room background so the wrapper can be retired.
   ------------------------------------------------------------------------- */
.tw-coming {
  padding-top: clamp(8rem, 14vh, 11rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
  background: var(--bone);
}

.tw-coming__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.tw-coming__copy { max-width: 40ch; }
.tw-coming h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  margin: var(--s-4) 0 var(--s-5);
}
.tw-coming h1 em { color: var(--accent); font-style: italic; }
.tw-coming__lede {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 44ch;
  margin-bottom: var(--s-6);
}
.tw-coming__hero-media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--cream);
  aspect-ratio: 3 / 2;
}
.tw-coming__hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Finish swatches — olive (default) / clear (second option) */
.finish-block {
  background: var(--paper);
}
.finish-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.finish-stage {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 3 / 2;
  box-shadow: var(--shadow-lift);
}
.finish-stage > img,
.finish-stage > .clear-vignette {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.finish-stage > img { object-fit: cover; }
.finish-stage > .is-active { opacity: 1; }

/* Clear-vignette: cream-toned frame around the warm-orange clear-cradle
   image. Inner image is desaturated and tone-shifted slightly toward cream
   via filter so it integrates with the olive shot at the section level.
   POST-LAUNCH: replace once we have proper recomposites. */
.clear-vignette {
  display: block;
  background:
    radial-gradient(ellipse at 50% 55%, transparent 50%, rgba(232,223,209,0.55) 100%),
    var(--cream);
  padding: clamp(1rem, 2vw, 1.5rem);
}
.clear-vignette img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  filter: saturate(0.78) contrast(0.95) brightness(1.02) sepia(0.06);
  display: block;
}

.finish-picker {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.finish-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-4);
  align-items: center;
  padding: var(--s-4);
  border-radius: var(--r-lg);
  border: 1px solid rgba(28,28,26,0.1);
  background: var(--bone);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.finish-card:hover { border-color: rgba(28,28,26,0.25); }
.finish-card.is-active {
  border-color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.finish-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.finish-card__swatch {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  box-shadow: inset 0 0 0 1px rgba(28,28,26,0.06), 0 6px 16px -8px rgba(28,28,26,0.25);
}
.finish-card[data-finish="olive"] .finish-card__swatch {
  background: linear-gradient(135deg, #6A7A4A 0%, #4E5E36 100%);
}
.finish-card[data-finish="clear"] .finish-card__swatch {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.15) 100%),
    var(--cream);
  border: 1px solid rgba(28,28,26,0.12);
}
.finish-card__label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  display: block;
}
.finish-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 430;
  letter-spacing: -0.01em;
  display: block;
  margin-top: var(--s-1);
}
.finish-card__note {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: var(--s-1);
  line-height: 1.45;
}

/* TeleWorks state gallery — small interactive image strip showing the
   handset's three lifecycle moments (docked / ringing / in conversation).
   Reuses .home-demo__stage pattern but with caption inside, no JS swap. */
.tw-states {
  background: var(--bone);
}
.tw-state-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: var(--s-7);
}
.tw-state-tile {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(28,28,26,0.06);
}
.tw-state-tile__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.tw-state-tile__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.tw-state-tile:hover .tw-state-tile__media img { transform: scale(1.02); }
.tw-state-tile__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.tw-state-tile__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}
.tw-state-tile__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 430;
  letter-spacing: -0.01em;
}
.tw-state-tile__body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* -------------------------------------------------------------------------
   19h. RESPONSIVE — Launch V1 new sections
   ------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .spotlight__grid,
  .spotlight--reverse .spotlight__grid,
  .home-demo__grid,
  .tw-teaser__grid,
  .tw-coming__grid,
  .finish-grid { grid-template-columns: 1fr; }

  .spotlight--reverse .spotlight__media { order: 0; }

  .stem-pair { grid-template-columns: 1fr; }
  .tw-state-grid { grid-template-columns: 1fr; }

  .home-demo__stage { aspect-ratio: 4 / 3; }
}

@media (max-width: 720px) {
  .home-demo__caption { left: var(--s-4); bottom: var(--s-4); }
  .finish-card { grid-template-columns: 48px 1fr; }
  .finish-card__swatch { width: 48px; height: 48px; }
}

/* -------------------------------------------------------------------------
   20. REVEAL ANIMATIONS
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms var(--ease),
              transform 800ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
}

/* -------------------------------------------------------------------------
   21. RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero__grid,
  .pdp__grid,
  .contact__grid,
  .two-col,
  .untechit-day__inner,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(6rem, 12vh, 8rem);
  }
  .hero__copy { max-width: 100%; }
  .hero__visual { aspect-ratio: 1 / 1; max-width: 520px; margin: 0 auto; }

  .pdp__media { position: static; }

  .footer__top { gap: var(--s-6); }
  .footer__brand { grid-column: 1 / -1; }

  .principle-row {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
  .principle-row__num { letter-spacing: 0.2em; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--bone);
    border-left: 1px solid rgba(28,28,26,0.08);
    flex-direction: column;
    gap: var(--s-5);
    padding: 6rem var(--s-6) var(--s-6);
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease);
    box-shadow: var(--shadow-lift);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.3rem; font-family: var(--font-display); font-weight: 430; }

  .nav__toggle { display: flex; }
  .nav__toggle.open span { background: transparent; }
  .nav__toggle.open span::before { transform: rotate(45deg) translate(4px, 4px); }
  .nav__toggle.open span::after  { transform: rotate(-45deg) translate(4px, -4px); }

  .hero__ctas .btn { width: 100%; justify-content: center; }

  .signup__form { flex-direction: column; }
  .signup__form input[type="email"] { width: 100%; }
  .signup__form button { width: 100%; }

  .footer__bottom { flex-direction: column; align-items: flex-start; gap: var(--s-3); }
}
