@charset "UTF-8";
/* CSS Document */
/* ───────── tokens ───────── */
:root {
  /* Brand surfaces — deep T&T navy night */
  --ink: #07142E;
  --ink-2: #0B1F40;
  --ink-3: #102A57;
  --line: rgba(255,255,255,.10);
  --line-2: rgba(255,255,255,.18);
  --paper: #F4F1EA;          /* warm bone for inverted sections */

  /* Three product-world accents */
  --grout:  #E5188E;          /* magenta — Grout Slayer */
  --daily:  #2BB3E0;          /* cyan — Neutral Cleaner */
  --grease: #2E7DF0;          /* electric blue — Ultra Degreaser */
  --signal: #FFD23E;          /* warm yellow — calls to action */

  --text:    #F4F6FA;
  --text-2:  rgba(244,246,250,.72);
  --text-3:  rgba(244,246,250,.46);
  --text-ink: #07142E;
  --text-ink-2: rgba(7,20,46,.66);

  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--ink);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.55;
}
img { max-width:100%; display:block; }
a { color: inherit; }

/* ───────── shared type ───────── */
.display {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 0.92;
  text-transform: none;
}
.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.eyebrow .dot {
  display:inline-block; width:6px; height:6px; border-radius:50%;
  background: var(--signal); margin-right: 10px; vertical-align: 2px;
}
.lede { font-size: clamp(16px, 1.6vw, 19px); color: var(--text-2); line-height:1.55; }

/* ───────── container ───────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ───────── nav ───────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,20,46,.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 0;
}
.brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--text);
}
.brand .sup {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  vertical-align: 9px; margin-left: 4px;
  color: var(--text-3); letter-spacing: 0.1em;
}
.nav-links { display:flex; gap: 22px; margin-left:auto; }
.nav-links a {
  text-decoration:none; color: var(--text-2);
  font-size: 13.5px; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--signal);
  color: var(--text-ink);
  font-weight: 700; font-size: 13.5px;
  padding: 9px 16px; border-radius: 999px;
  text-decoration: none;
  transition: transform .15s;
}
.nav-cta:hover { transform: translateY(-1px); }
@media (max-width:880px){ .nav-links { display:none; } }

/* ───────── HERO ───────── */
.hero { position: relative; padding: 88px 0 64px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 18% 12%, rgba(46,125,240,.18), transparent 60%),
    radial-gradient(900px 600px at 100% 100%, rgba(229,24,142,.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 64px);
  align-items: center; position: relative;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(48px, 8.8vw, 124px);
}
.hero h1 .word-clean { color: var(--text); }
.hero h1 .word-smart {
  color: transparent;
  -webkit-text-stroke: 2px var(--text);
}
.hero h1 .word-live  { color: var(--text); }
.hero h1 .word-easy  { color: var(--signal); font-style: italic; }
.hero-sub { max-width: 540px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 700; font-size: 14.5px;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform .15s, background .2s;
}
.btn-primary { background: var(--signal); color: var(--text-ink); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,.06); }
.btn .arrow { width: 16px; height: 16px; }

/* meta strip */
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta .mi { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .mi-k { font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); }
.hero-meta .mi-v { font-weight: 600; font-size: 14.5px; color: var(--text); }

/* hero bottle card — the signature element */
.hero-stage {
  position: relative; aspect-ratio: 1/1; max-width: 520px; margin-left: auto;
  border-radius: var(--r-lg);
  background: var(--ink-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.hero-stage::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 38%, var(--stage-glow, rgba(229,24,142,.34)) 0%, transparent 62%);
  transition: background 1.6s ease;
}
.hero-stage[data-active="grout"]  { --stage-glow: rgba(229,24,142,.42); }
.hero-stage[data-active="daily"]  { --stage-glow: rgba(43,179,224,.42); }
.hero-stage[data-active="grease"] { --stage-glow: rgba(46,125,240,.46); }

.stage-bottles {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.stage-bottle {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  opacity: 0; transform: translateY(8px) scale(.98);
  transition: opacity 4.7s ease, transform 5.5s ease;
}
.stage-bottle.is-active { opacity: 1; transform: translateY(0) scale(1); }
.stage-bottle img { max-height: 77%; width: auto; filter: drop-shadow(0 22px 30px rgba(0,0,0,.45)); }
.stage-cap {
  position: absolute; left: 24px; right: 24px; bottom: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-2);
}
.stage-cap .name { font-weight: 600; color: var(--text); }
.stage-dots { display: flex; gap: 7px; align-items: center; }
.stage-dots button {
  appearance: none; border: 0; padding: 0; cursor: pointer;
  width: 28px; height: 4px; border-radius: 2px;
  background: var(--line-2);
  transition: background .25s, width .25s;
}
.stage-dots button.is-active {
  width: 44px;
}
.stage-dots button[data-c="grout"].is-active  { background: var(--grout); }
.stage-dots button[data-c="daily"].is-active  { background: var(--daily); }
.stage-dots button[data-c="grease"].is-active { background: var(--grease); }

/* ───────── ticker ───────── */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden; white-space: nowrap;
  padding: 18px 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3.4vw, 38px);
  color: var(--text);
}
.ticker-track {
  display: inline-flex; gap: 48px;
  animation: tk 38s linear infinite;
}
.ticker-track span { display:inline-flex; align-items:center; gap: 22px; }
.ticker-track .star { color: var(--signal); font-size: 0.7em; }
.ticker-track .word { color: var(--text-3); }
.ticker-track .word.on { color: var(--text); }
@keyframes tk { to { transform: translateX(-50%); } }

/* ───────── three worlds — the page architecture ───────── */
.worlds { padding: 96px 0 24px; }
.worlds .section-head {
  display: grid; grid-template-columns: 1fr auto; align-items: end;
  gap: 32px; margin-bottom: 56px;
}
.worlds h2 {
  font-size: clamp(36px, 5.4vw, 64px); margin: 14px 0 0;
}
.worlds h2 em { color: var(--signal); font-style: italic; font-weight: 900; }
.worlds .section-head .right { max-width: 360px; color: var(--text-2); font-size: 15px; }

.world {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.world:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 880px) {
  .world { grid-template-columns: 1fr; padding: 40px 0; }
  .world .visual { order: -1; }
}
.world .num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px; letter-spacing: 0.1em;
  color: var(--c, var(--signal));
}
.world h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: .96; letter-spacing: -0.015em;
  margin: 14px 0 18px;
}
.world h3 .accent { color: var(--c); }
.world p.body { font-size: 16.5px; color: var(--text-2); max-width: 480px; }
.world .specs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px; margin-top: 28px;
  border-top: 1px solid var(--line); padding-top: 22px;
}
.world .specs dt {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3);
  margin-bottom: 5px;
}
.world .specs dd { margin: 0; font-weight: 600; font-size: 14.5px; color: var(--text); }

.world .visual { position: relative; }
.world .photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  position: relative;
}
.world .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}
.world .glow {
  position: absolute; inset: -2px; z-index: -1;
  background: var(--c); filter: blur(60px); opacity: .25;
  border-radius: var(--r-lg);
}
.world .pricetag {
  position: absolute; top: 20px; right: 20px;
  background: rgba(7,20,46,.78); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 600; color: var(--text);
}
.world .pricetag em { color: var(--c); font-style: normal; }

/* world 1 = grout */
.world.grout { --c: var(--grout); }
.world.daily { --c: var(--daily); }
.world.grease { --c: var(--grease); }

/* ───────── proof strip ───────── */
.proof {
  background: var(--ink-2);
  padding: 88px 0; margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 880px) { .proof-grid { grid-template-columns: 1fr; } }
.proof h2 {
  font-size: clamp(34px, 5vw, 56px); margin: 12px 0 18px;
}
.proof h2 em { color: var(--grout); font-style: italic; }
.proof p { color: var(--text-2); font-size: 16.5px; max-width: 460px; }
.ba {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1.1/1;
  background: #000;
}
.ba img { width: 100%; height: 100%; object-fit: cover; user-select:none; -webkit-user-drag:none; }
.ba-after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--split, 30%)); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--split, 30%);
  width: 2px; background: var(--signal); transform: translateX(-1px);
  cursor: ew-resize; touch-action: none;
}
.ba-handle::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--signal); color: var(--text-ink);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.ba-handle::after {
  content: "‹ ›"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Archivo Black', sans-serif; font-size: 18px; font-weight: 900;
  color: var(--text-ink); letter-spacing: -2px;
}
.ba-lab {
  position: absolute; top: 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(7,20,46,.8); color: var(--text);
  backdrop-filter: blur(8px);
}
.ba-lab.l-b { left: 14px; }
.ba-lab.l-a { right: 14px; background: var(--signal); color: var(--text-ink); }

/* ───────── story ───────── */
.story { padding: 96px 0; position: relative; }
.story-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 72px);
  align-items: center;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; } }
.story h2 { font-size: clamp(34px, 5vw, 56px); margin: 12px 0 22px; }
.story h2 em { color: var(--signal); font-style: italic; }
.story p { color: var(--text-2); font-size: 16.5px; margin: 0 0 18px; max-width: 520px; }
.story-photo {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4/5;
}
.story-photo img { width:100%; height:100%; object-fit: cover; }
.story-pull {
  margin-top: 24px;
  border-left: 3px solid var(--signal);
  padding: 8px 0 8px 22px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.25; color: var(--text);
  max-width: 480px;
}

/* ───────── retail strip ───────── */
.retail {
  padding-top: 88px;
  padding-bottom: 88px;
  padding-left: 0px; padding-right: 24px;
  background: var(--paper); color: var(--text-ink);
}
.retail .eyebrow { color: var(--text-ink-2); }
.retail .eyebrow .dot { background: var(--text-ink); }
.retail h2 {
  color: var(--text-ink);
  font-size: clamp(36px, 5.4vw, 64px); margin: 14px 0 0;
  max-width: 14ch;
}
.retail h2 em { color: var(--grout); font-style: italic; }
.retail .lead { color: var(--text-ink-2); font-size: 17px; max-width: 540px; margin-top: 18px; }
.retail-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px,4vw,56px);
  align-items: start; /* instead of stretch */
}

@media (max-width: 880px) { .retail-grid { grid-template-columns: 1fr; } }
/*.retail-photo {
  border-radius: var(--r-lg); overflow:hidden;
  border: 1px solid rgba(7,20,46,.12);
  aspect-ratio: 3/4;
}
.retail-photo img { width:100%; height:100%; object-fit: cover; }*/

.retail-photo {
  height: 600px;              /* taller container */
  border-radius: var(--r-lg); /* keep rounded corners */
  overflow: hidden;           /* ensures image stays inside rounded edges */
}

.retail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills container without distortion */
  border-radius: inherit;     /* makes sure corners match parent */
}


}.retail-list {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.retail-row {
  display: grid; grid-template-columns: 38px 1fr;
  gap: 18px; align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(7,20,46,.14);
}
.retail-row:first-child { border-top: 0; }
.retail-row .n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600; color: var(--text-ink-2);
  letter-spacing: 0.06em;
}
.retail-row h4 { margin: 0 0 4px; font-size: 17px; font-weight: 700; color: var(--text-ink); }
.retail-row p  { margin: 0; font-size: 14.5px; color: var(--text-ink-2); line-height: 1.5; }

/* ───────── CTA / contact ───────── */
.cta {
  padding: 96px 0 56px;
  text-align: left;
  position: relative; overflow: hidden;
}
.cta::before {
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 20% 20%, rgba(255,210,62,.10), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(229,24,142,.10), transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta h2 { font-size: clamp(40px, 6.4vw, 84px); margin: 18px 0 24px; max-width: 14ch; }
.cta h2 em { color: var(--signal); font-style: italic; }
.cta-grid {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width:880px){ .cta-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
}
.contact-card .eyebrow { margin-bottom: 14px; }
.contact-card h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 26px; margin: 0 0 18px; letter-spacing: -0.01em;
}
.contact-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.contact-card li {
  display: flex; gap: 12px; align-items: baseline;
  font-size: 15px; color: var(--text-2);
}
.contact-card li span.k {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--text-3); letter-spacing: 0.12em; text-transform: uppercase;
  min-width: 64px;
}
.contact-card li a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--line-2); }
.contact-card li a:hover { border-color: var(--signal); }

/* ───────── footer ───────── */
footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--text-3); font-size: 13px;
}
.footer-inner { display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.footer-inner .brand-foot { font-family: 'Archivo Black', sans-serif; color: var(--text-2); font-size: 14px; }
.footer-inner a { color: var(--text-3); text-decoration: none; }

/* misc */
.flag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.06); color: var(--text-2);
  border: 1px solid var(--line);
}
.flag svg { width: 14px; height: 10px; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .ticker-track { animation: none !important; }
}
