:root{
  --color-primary:#000000;
  --color-secondary:#3f3f46;
  --color-accent:#c1fbd4;
  --color-accent-soft:#d4f9e0;
  --color-bg:#fbfbf5;
  --color-bg-alt:#ffffff;
  --color-surface:#ffffff;
  --color-surface-dark:#0a0a0a;
  --color-dark:#010101;
  --color-dark-elevated:#1e2c31;
  --color-text:#000000;
  --color-text-muted:#52525b;
  --color-text-faint:#71717a;
  --color-on-dark:#ffffff;
  --color-on-dark-muted:#a1a1aa;
  --color-link-cool:#9dabad;
  --color-border:#e4e4e7;
  --color-border-dark:#1e2c31;
  --color-chip:#d4d4d8;
  --color-warning-bg:#fdf3d8;
  --color-warning-ink:#7a5a05;
  --color-error-bg:#fdedec;
  --color-error-ink:#c0392b;
  --font-heading:'Inter Tight',Helvetica,Arial,sans-serif;
  --font-body:'Inter',Helvetica,Arial,sans-serif;
  --font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  --radius-xs:4px;
  --radius-sm:5px;
  --radius-md:8px;
  --radius-lg:12px;
  --radius-xl:20px;
  --radius-pill:9999px;
  --shadow-sm:0 1px 2px rgba(0,0,0,.06);
  --shadow-md:0 8px 8px rgba(0,0,0,.1),0 4px 4px rgba(0,0,0,.1),0 2px 2px rgba(0,0,0,.1),0 0 0 1px rgba(0,0,0,.1);
  --shadow-lg:0 25px 50px -12px rgba(0,0,0,.25);
  --shadow-dark-inset:0 1px 2px rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.04);
  --space-xs:4px;
  --space-sm:8px;
  --space-md:12px;
  --space-lg:16px;
  --space-xl:24px;
  --space-xxl:32px;
  --space-huge:64px;
  --container:1280px;
  --container-wide:1520px;
  --reading:760px;
  --header-h:68px;
  font-feature-settings:"ss03";
}

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

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

body{
  margin:0;
  background:var(--color-bg);
  color:var(--color-text);
  font-family:var(--font-body);
  font-size:16px;
  font-weight:400;
  line-height:1.5;
  font-feature-settings:"ss03";
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

[hidden]{display:none !important}

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

a{color:inherit;text-decoration-color:rgba(0,0,0,.28);text-underline-offset:3px}
a:hover{text-decoration-color:currentColor}

h1,h2,h3,h4,h5,h6{
  font-family:var(--font-heading);
  font-weight:300;
  margin:0 0 var(--space-lg);
  line-height:1.14;
  letter-spacing:0;
}

h3,h4,h5,h6{font-weight:500;line-height:1.28}

p{margin:0 0 var(--space-lg)}
p:last-child{margin-bottom:0}

ul,ol{margin:0 0 var(--space-lg);padding-left:1.15em}

table{border-collapse:collapse;width:100%}

button{font:inherit;color:inherit}

:focus-visible{outline:2px solid var(--color-primary);outline-offset:2px;border-radius:var(--radius-xs)}
.canvas-night :focus-visible,.hero :focus-visible,.stickybar :focus-visible,.consent-bar :focus-visible,.sitefoot :focus-visible{outline-color:#fff}

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

.skip-link{
  position:absolute;left:-9999px;top:0;z-index:200;
  background:var(--color-primary);color:var(--color-on-dark);
  padding:12px 20px;border-radius:0 0 var(--radius-md) 0;
}
.skip-link:focus{left:0}

.btn-primary,.btn-secondary,.btn-ghost,.product-card__cta,.category-chips__all{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--font-body);font-size:16px;font-weight:500;line-height:1.25;
  padding:12px 24px;min-height:44px;
  border-radius:var(--radius-pill);
  border:1px solid transparent;
  text-decoration:none;cursor:pointer;
  transition:background-color .18s ease,color .18s ease,border-color .18s ease;
}

.btn-primary{background:var(--color-primary);color:var(--color-on-dark);border-color:var(--color-primary)}
.btn-primary:hover{background:var(--color-secondary);border-color:var(--color-secondary)}
.btn-primary:active{background:var(--color-secondary)}

.btn-secondary{background:var(--color-surface);color:var(--color-text);border-color:var(--color-primary)}
.btn-secondary:hover{background:#f4f4f5}

.btn-ghost{background:transparent;color:var(--color-text);border-color:var(--color-text)}
.btn-ghost:hover{background:rgba(0,0,0,.06)}

.hero .btn-ghost,.canvas-night .btn-ghost,.stickybar .btn-ghost,.consent-bar .btn-ghost,.sitefoot .btn-ghost{
  color:var(--color-on-dark);border-color:rgba(255,255,255,.65);
}
.hero .btn-ghost:hover,.canvas-night .btn-ghost:hover,.stickybar .btn-ghost:hover,.consent-bar .btn-ghost:hover{
  background:rgba(255,255,255,.12);border-color:#fff;
}

.btn-sm{padding:9px 18px;font-size:14px;min-height:40px}
.btn-lg{padding:15px 32px;font-size:17px;min-height:52px}

.masthead{
  position:sticky;top:0;z-index:120;
  background:var(--color-surface);
  border-bottom:1px solid var(--color-border);
}
.masthead-inner{display:flex;align-items:center;gap:var(--space-lg);min-height:var(--header-h)}

.masthead-logo{
  font-family:var(--font-heading);font-size:24px;font-weight:500;
  letter-spacing:.36px;text-decoration:none;margin-right:auto;
}

.masthead-nav ul{display:flex;gap:var(--space-xl);list-style:none;margin:0;padding:0}
.masthead-nav a{font-size:15px;font-weight:400;text-decoration:none;padding:6px 0;display:inline-block}
.masthead-nav a:hover{text-decoration:underline;text-underline-offset:5px}

.masthead-cta{display:flex;align-items:center}

.masthead-burger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;padding:0 10px;
  background:transparent;border:1px solid var(--color-border);border-radius:var(--radius-pill);cursor:pointer;
}
.masthead-burger span{display:block;height:1.5px;background:var(--color-text);border-radius:2px}

.hero{
  background:var(--color-dark);
  color:var(--color-on-dark);
  min-height:50vh;
  display:flex;align-items:center;
  padding:var(--space-huge) 0;
  overflow:hidden;
}
.hero-inner{
  max-width:var(--container-wide);
  display:grid;grid-template-columns:minmax(0,1fr);gap:var(--space-xxl);
  align-items:center;
}
.hero-copy{max-width:640px}

.hero-eyebrow{
  font-size:12px;font-weight:400;letter-spacing:.72px;text-transform:uppercase;
  color:var(--color-on-dark-muted);margin-bottom:var(--space-lg);
}
.hero-title{
  font-size:clamp(2.25rem,6vw,4.25rem);
  font-weight:300;line-height:1.02;letter-spacing:1.4px;
  margin-bottom:var(--space-xl);
}
.hero-lead{
  font-size:18px;font-weight:400;line-height:1.56;
  color:var(--color-on-dark);opacity:.92;
  margin-bottom:var(--space-xl);max-width:56ch;
}
.hero-facts{list-style:none;margin:0 0 var(--space-xl);padding:0;display:flex;flex-wrap:wrap;gap:var(--space-sm) var(--space-lg)}
.hero-fact{
  font-size:13px;font-weight:500;letter-spacing:.2px;
  color:var(--color-on-dark);
  border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-pill);
  padding:6px 14px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:var(--space-md)}
.hero-media{position:relative}
.hero-photo{width:100%;height:auto;border-radius:var(--radius-xl);object-fit:cover}

.proof-strip{background:var(--color-dark);color:var(--color-on-dark);padding:0 0 var(--space-huge)}
.proof-strip-inner{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--space-xl);
  border-top:1px solid rgba(255,255,255,.16);padding-top:var(--space-xxl);
}
.proof-item{display:flex;flex-direction:column;gap:6px}
.proof-num{font-family:var(--font-heading);font-size:clamp(1.75rem,3.4vw,2.5rem);font-weight:300;line-height:1}
.proof-label{font-size:13px;letter-spacing:.28px;color:var(--color-on-dark-muted)}

main > section{padding:var(--space-huge) 0;border-top:1px solid var(--color-border)}

.section-alt{background:var(--color-bg-alt)}
.canvas-mint{background:var(--color-accent-soft)}
.canvas-night{background:var(--color-dark);color:var(--color-on-dark);border-top-color:#000}
.canvas-night .section-subtitle{color:var(--color-on-dark-muted)}

.section-title{
  font-size:clamp(1.75rem,3.6vw,2.85rem);
  font-weight:300;line-height:1.12;
  max-width:22ch;margin-bottom:var(--space-lg);
}
.section-subtitle{
  font-size:18px;line-height:1.56;color:var(--color-text-muted);
  max-width:68ch;margin:0 0 var(--space-huge);
}

.why,.catalog,.data-panel,.mech,.story,.flow,.voice,.risk,.use,.path,.ask,.shots,.signup,.values,.figures,.legal,.reach{position:relative}

.why-rows{display:flex;flex-direction:column;gap:var(--space-huge)}
.why-row{display:grid;grid-template-columns:minmax(0,1fr);gap:var(--space-xl);align-items:center}
.why-row-figure img{width:100%;border-radius:var(--radius-lg);aspect-ratio:4/3;object-fit:cover}
.why-row-body{max-width:56ch}
.why-row-index{
  display:block;font-family:var(--font-heading);font-size:2.5rem;font-weight:300;
  line-height:1;color:var(--color-text-faint);margin-bottom:var(--space-md);
}
.why-row-title{font-size:clamp(1.25rem,2vw,1.75rem);font-weight:400;margin-bottom:var(--space-md)}
.why-row-text{font-size:17px;line-height:1.6;color:var(--color-text-muted);margin:0}

.products-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(270px,1fr));
  gap:var(--space-xl);margin-bottom:var(--space-huge);
}
.product-card{
  display:flex;flex-direction:column;
  background:var(--color-surface);
  border:1px solid var(--color-border);border-radius:var(--radius-lg);
  padding:var(--space-xl);box-shadow:var(--shadow-md);
  transition:transform .18s ease;
}
.product-card:hover{transform:translateY(-2px)}
.product-card--unavailable{opacity:.9}
.product-card--unavailable .product-card__title{color:var(--color-text-faint)}
.product-card--unavailable .product-card__media img{filter:grayscale(.55)}

.product-card__media{
  background:#fff;border-radius:var(--radius-md);overflow:hidden;
  margin-bottom:var(--space-lg);aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;
}
.product-card__media a{display:block;width:100%;height:100%}
.product-card__media img{width:100%;height:100%;object-fit:contain}

.product-card__title{font-size:1.0625rem;font-weight:500;line-height:1.3;margin:0 0 var(--space-sm)}
.product-card__rating{font-size:14px;font-weight:500;margin-bottom:var(--space-md);color:var(--color-text)}
.product-card__reviews{color:var(--color-text-faint);font-weight:400}

.product-card__description{
  font-size:15px;line-height:1.55;color:var(--color-text-muted);
  margin:0 0 var(--space-sm);
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
.product-card__description.is-expanded{display:block;-webkit-line-clamp:unset;overflow:visible}

.product-card__more{
  align-self:flex-start;background:none;border:0;padding:0 0 var(--space-md);
  font-size:14px;font-weight:500;color:var(--color-text);
  text-decoration:underline;text-underline-offset:3px;cursor:pointer;
}
.product-card__more:hover{color:var(--color-secondary)}

.product-card__highlights,.product-card-bullets{
  list-style:none;margin:0 0 var(--space-lg);padding:0;
  display:flex;flex-direction:column;gap:var(--space-sm);
}
.product-card__highlights li,.product-card-bullets li{
  position:relative;padding-left:16px;font-size:14px;line-height:1.5;color:var(--color-text-muted);
}
.product-card__highlights li::before,.product-card-bullets li::before{
  content:"";position:absolute;left:0;top:9px;width:6px;height:1px;background:var(--color-text);
}

.product-card__cta{margin-top:auto;width:100%;background:var(--color-primary);color:var(--color-on-dark);border-color:var(--color-primary)}
.product-card__cta:hover{background:var(--color-secondary);border-color:var(--color-secondary)}

.product-badge{
  display:inline-block;align-self:flex-start;
  padding:4px 10px;margin-bottom:var(--space-sm);
  border-radius:var(--radius-pill);
  background:var(--color-warning-bg);color:var(--color-warning-ink);
  font-size:.8125rem;font-weight:600;line-height:1.3;
}
.product-badge--restock{background:var(--color-accent);color:var(--color-text)}

.category-chips{display:flex;flex-wrap:wrap;gap:var(--space-sm);align-items:center;justify-content:center}
.category-chip{
  display:inline-flex;align-items:center;
  padding:8px 14px;border:1px solid var(--color-border);border-radius:var(--radius-pill);
  background:var(--color-surface);
  font-size:13px;font-weight:500;text-decoration:none;letter-spacing:.2px;
  transition:background-color .18s ease,border-color .18s ease;
}
.category-chip:hover{background:var(--color-accent);border-color:var(--color-accent)}
.category-chips__all{background:var(--color-primary);color:var(--color-on-dark);border-color:var(--color-primary);font-size:14px;padding:10px 22px;min-height:40px}
.category-chips__all:hover{background:var(--color-secondary);border-color:var(--color-secondary)}

.data-scroll{overflow-x:auto;border-radius:var(--radius-lg);background:rgba(255,255,255,.62);border:1px solid rgba(0,0,0,.1)}
.data-table{min-width:760px;font-size:15px}
.data-table thead th{
  text-align:left;font-family:var(--font-body);font-size:12px;font-weight:600;
  letter-spacing:.72px;text-transform:uppercase;color:var(--color-text-muted);
  padding:var(--space-lg) var(--space-lg);border-bottom:1px solid rgba(0,0,0,.16);
}
.data-table tbody tr+tr{border-top:1px solid rgba(0,0,0,.09)}
.data-table td,.data-table tbody th{padding:var(--space-lg);vertical-align:top;text-align:left}
.data-metric{
  font-family:var(--font-heading);font-size:1.25rem;font-weight:400;line-height:1.2;
  white-space:nowrap;color:var(--color-text);
}
.data-claim{line-height:1.55;color:var(--color-text)}
.data-gap{line-height:1.55;color:var(--color-text-muted);font-size:14px}
.data-proof{font-size:13px;color:var(--color-text-faint);font-style:italic;min-width:150px}

.mech-blocks{display:flex;flex-direction:column;gap:var(--space-huge)}
.mech-block{display:grid;grid-template-columns:minmax(0,1fr);gap:var(--space-xl);align-items:center}
.mech-figure{background:var(--color-surface-dark);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-dark-inset)}
.mech-photo{width:100%;aspect-ratio:4/3;object-fit:cover}
.mech-body{max-width:60ch}
.mech-title{font-size:clamp(1.375rem,2.2vw,2rem);font-weight:400;line-height:1.18;margin-bottom:var(--space-lg);color:var(--color-on-dark)}
.mech-text{font-size:17px;line-height:1.6;color:var(--color-on-dark);opacity:.9;margin-bottom:var(--space-lg)}
.mech-list{list-style:none;margin:0 0 var(--space-xl);padding:0;display:flex;flex-direction:column;gap:var(--space-md)}
.mech-list li{
  position:relative;padding-left:20px;font-size:15px;line-height:1.55;color:var(--color-on-dark-muted);
}
.mech-list li::before{content:"";position:absolute;left:0;top:11px;width:10px;height:1px;background:var(--color-on-dark-muted)}
.mech-cta{align-self:flex-start}

.story-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:var(--space-xxl);align-items:start}
.story-body{max-width:var(--reading)}
.story-body p{font-size:17px;line-height:1.7;color:var(--color-text-muted)}
.story-body p:first-of-type{color:var(--color-text);font-size:18px}
.story-link{margin-top:var(--space-lg)}
.story-media img{width:100%;border-radius:var(--radius-lg);aspect-ratio:1/1;object-fit:cover}

.flow-steps{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:minmax(0,1fr);gap:var(--space-xl)}
.flow-step{
  background:var(--color-surface);border:1px solid var(--color-border);
  border-radius:var(--radius-lg);padding:var(--space-xxl);
}
.flow-num{
  display:block;font-family:var(--font-heading);font-size:3rem;font-weight:300;line-height:1;
  color:var(--color-text-faint);margin-bottom:var(--space-lg);
}
.flow-title{font-size:1.25rem;font-weight:500;margin-bottom:var(--space-sm)}
.flow-text{font-size:15px;line-height:1.55;color:var(--color-text-muted);margin:0}

.voice-stream{display:flex;flex-direction:column;gap:var(--space-xxl);max-width:var(--reading);margin:0 auto}
.voice-quote{
  margin:0;padding:0 0 var(--space-xxl);
  border-bottom:1px solid var(--color-border);position:relative;
}
.voice-quote:last-child{border-bottom:0;padding-bottom:0}
.voice-quote::before{
  content:"\201C";font-family:var(--font-heading);font-size:4rem;font-weight:300;line-height:.8;
  color:var(--color-text-faint);display:block;margin-bottom:var(--space-sm);
}
.voice-text{font-size:18px;line-height:1.65;margin:0 0 var(--space-lg);color:var(--color-text)}
.voice-meta{display:flex;flex-wrap:wrap;align-items:center;gap:var(--space-md);font-size:13px}
.voice-stars{letter-spacing:2px;color:var(--color-text)}
.voice-name{font-weight:600}
.voice-badge{
  padding:3px 10px;border-radius:var(--radius-pill);
  background:var(--color-accent-soft);color:var(--color-text);
  font-size:12px;letter-spacing:.28px;
}

.risk-list{display:flex;flex-direction:column;gap:var(--space-xl)}
.risk-item{
  display:grid;grid-template-columns:minmax(0,1fr);gap:var(--space-md);
  padding:var(--space-xl) 0;border-top:1px solid var(--color-border);
}
.risk-item:first-child{border-top:0;padding-top:0}
.risk-head{
  font-size:1.125rem;font-weight:500;line-height:1.3;margin:0;
  font-family:var(--font-heading);
}
.risk-body p{font-size:16px;line-height:1.6;color:var(--color-text-muted);margin:0 0 var(--space-md)}
.risk-body p:last-child{margin-bottom:0}
.risk-stat{
  display:inline-block;font-size:13px;font-weight:500;
  color:var(--color-text);background:var(--color-accent-soft);
  padding:6px 14px;border-radius:var(--radius-pill);
}

.use-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:var(--space-xl)}
.use-card{
  background:var(--color-surface);border:1px solid var(--color-border);
  border-radius:var(--radius-lg);padding:var(--space-xxl);box-shadow:var(--shadow-sm);
}
.use-index{
  display:block;font-family:var(--font-heading);font-size:2.25rem;font-weight:300;line-height:1;
  color:var(--color-text-faint);margin-bottom:var(--space-md);
}
.use-title{font-size:1.125rem;font-weight:500;margin-bottom:var(--space-sm)}
.use-text{font-size:15px;line-height:1.6;color:var(--color-text-muted);margin:0}

.path-timeline{list-style:none;margin:0 0 var(--space-xxl);padding:0;display:flex;flex-direction:column}
.path-item{
  position:relative;padding:0 0 var(--space-xxl) var(--space-xxl);
  border-left:1px solid var(--color-border);
}
.path-item:last-child{padding-bottom:0;border-left-color:transparent}
.path-item::before{
  content:"";position:absolute;left:-5px;top:7px;width:9px;height:9px;
  border-radius:var(--radius-pill);background:var(--color-primary);
}
.path-when{
  font-size:12px;font-weight:600;letter-spacing:.72px;text-transform:uppercase;
  font-family:var(--font-body);color:var(--color-text-faint);margin-bottom:var(--space-sm);
}
.path-what{font-size:17px;line-height:1.6;color:var(--color-text);margin:0;max-width:64ch}
.path-cta{
  font-size:16px;font-weight:500;padding:var(--space-lg) var(--space-xl);
  background:var(--color-accent-soft);border-radius:var(--radius-lg);
  max-width:64ch;margin:0;
}

.ask-list,.ask-more{display:flex;flex-direction:column}
.ask-item{border-bottom:1px solid var(--color-border)}
.ask-item > summary,.ask-q{
  cursor:pointer;list-style:none;
  font-family:var(--font-heading);font-size:1.0625rem;font-weight:500;line-height:1.4;
  padding:var(--space-xl) 40px var(--space-xl) 0;position:relative;
}
.ask-item > summary::-webkit-details-marker{display:none}
.ask-item > summary::after{
  content:"";position:absolute;right:12px;top:50%;
  width:11px;height:11px;margin-top:-7px;
  border-right:1.5px solid var(--color-text);border-bottom:1.5px solid var(--color-text);
  transform:rotate(45deg);transition:transform .2s ease;
}
.ask-item[open] > summary::after{transform:rotate(-135deg);margin-top:-2px}
.ask-item > summary:hover{color:var(--color-secondary)}
.ask-a{padding:0 40px var(--space-xl) 0}
.ask-a p{font-size:16px;line-height:1.65;color:var(--color-text-muted);margin:0;max-width:72ch}
.ask-toggle{
  margin-top:var(--space-xl);
  background:transparent;border:1px solid var(--color-primary);border-radius:var(--radius-pill);
  padding:12px 24px;min-height:44px;font-size:15px;font-weight:500;cursor:pointer;
  transition:background-color .18s ease,color .18s ease;
}
.ask-toggle:hover{background:var(--color-primary);color:var(--color-on-dark)}

.shots-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:var(--space-lg)}
.shots-item{margin:0;cursor:zoom-in}
.shots-photo{
  width:100%;aspect-ratio:1/1;object-fit:cover;
  border-radius:var(--radius-lg);background:#fff;
  transition:opacity .18s ease;
}
.shots-item:hover .shots-photo{opacity:.88}
.shots-caption{font-size:13px;color:var(--color-text-muted);padding-top:var(--space-sm)}

.lightbox{
  position:fixed;inset:0;z-index:200;
  background:rgba(0,0,0,.92);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:var(--space-lg);
  padding:var(--space-xl);
}
.lightbox-img{max-width:min(1100px,92vw);max-height:78vh;object-fit:contain;border-radius:var(--radius-lg)}
.lightbox-caption{color:#fff;font-size:14px;text-align:center}
.lightbox-close{
  position:absolute;top:18px;right:18px;
  width:48px;height:48px;border-radius:var(--radius-pill);
  background:transparent;border:1px solid rgba(255,255,255,.6);color:#fff;
  font-size:26px;line-height:1;cursor:pointer;
}
.lightbox-close:hover{background:rgba(255,255,255,.14)}

.signup-inner{max-width:820px;text-align:center}
.signup .section-title,.signup .section-subtitle{margin-left:auto;margin-right:auto}
.signup .section-title{max-width:20ch}
.signup .section-subtitle{margin-bottom:var(--space-xxl)}
.signup-form{max-width:640px;margin:0 auto}
.signup-label{
  display:block;font-size:12px;font-weight:500;letter-spacing:.72px;text-transform:uppercase;
  color:var(--color-on-dark);margin-bottom:var(--space-sm);text-align:left;
}
.signup-row{display:flex;flex-direction:column;gap:var(--space-md)}
.signup-input{
  flex:1;min-height:48px;padding:12px 16px;
  background:var(--color-surface);color:var(--color-text);
  border:1px solid var(--color-border);border-radius:var(--radius-md);
  font-family:var(--font-body);font-size:16px;
}
.signup-input::placeholder{color:var(--color-text-faint)}
.signup-note{font-size:13px;color:var(--color-on-dark-muted);margin:var(--space-lg) 0 0}
.signup-message{
  margin-top:var(--space-lg);padding:10px 14px;border-radius:var(--radius-md);
  background:var(--color-error-bg);color:var(--color-error-ink);
  border:1px solid var(--color-error-ink);font-size:.875rem;text-align:left;
}

.sitefoot{background:var(--color-dark);color:var(--color-on-dark);padding:var(--space-huge) 0 var(--space-xl)}
.sitefoot-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:var(--space-xxl)}
.sitefoot-col{min-width:0}
.sitefoot-brand{display:flex;flex-direction:column;gap:var(--space-md)}
.sitefoot-logo{font-family:var(--font-heading);font-size:22px;font-weight:500;text-decoration:none;display:inline-block;margin-bottom:var(--space-md)}
.sitefoot-tagline{font-size:14px;line-height:1.55;color:var(--color-on-dark-muted);max-width:34ch}
.sitefoot-address{font-style:normal;font-size:14px;line-height:1.7;color:var(--color-on-dark-muted)}
.sitefoot-address a{color:var(--color-link-cool)}
.sitefoot-hours{display:block;margin-top:var(--space-md)}
.sitefoot-title{
  font-family:var(--font-body);font-size:12px;font-weight:600;letter-spacing:.72px;text-transform:uppercase;
  color:var(--color-on-dark);margin-bottom:var(--space-lg);
}
.sitefoot-links,.sitefoot-social{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:var(--space-md)}
.sitefoot-links a,.sitefoot-social a{font-size:14px;color:var(--color-link-cool);text-decoration:underline;text-underline-offset:3px}
.sitefoot-links a:hover,.sitefoot-social a:hover{color:var(--color-on-dark)}
.sitefoot-languages{max-width:var(--container);margin:var(--space-xxl) auto 0;padding:0 20px}
.sitefoot-languages:empty{display:none}
.sitefoot-bottom{
  margin-top:var(--space-xxl);padding-top:var(--space-xl);
  border-top:1px solid rgba(255,255,255,.16);
  display:flex;flex-direction:column;gap:var(--space-md);
}
.sitefoot-copyright,.footer__copyright{font-size:13px;color:var(--color-on-dark-muted);margin:0}
.sitefoot-disclosure{font-size:12px;line-height:1.6;color:#8b8b93}
.sitefoot-disclosure a{color:#8b8b93}

.consent-bar{
  position:fixed;left:0;right:0;bottom:0;z-index:150;
  background:rgba(0,0,0,.94);color:var(--color-on-dark);
  border-top:1px solid rgba(255,255,255,.18);
  padding:var(--space-md) 0;
}
.consent-inner{display:flex;flex-wrap:wrap;align-items:center;gap:var(--space-md) var(--space-xl);justify-content:space-between}
.consent-text{font-size:13px;margin:0;color:var(--color-on-dark-muted)}
.consent-text a{color:#fff}
.consent-actions{display:flex;gap:var(--space-sm)}

.stickybar{
  position:fixed;left:0;right:0;bottom:0;z-index:140;
  background:rgba(0,0,0,.9);backdrop-filter:blur(10px);
  color:var(--color-on-dark);border-top:1px solid rgba(255,255,255,.18);
  padding:var(--space-md) 0;
}
.stickybar-inner{display:flex;align-items:center;gap:var(--space-lg);justify-content:space-between}
.stickybar-text{font-size:14px;margin:0;color:var(--color-on-dark)}
.stickybar-cta{white-space:nowrap}
.stickybar-close{
  width:36px;height:36px;flex:none;border-radius:var(--radius-pill);
  background:transparent;border:1px solid rgba(255,255,255,.4);color:#fff;
  font-size:20px;line-height:1;cursor:pointer;
}
.stickybar-close:hover{background:rgba(255,255,255,.14)}

.about-page,.contact-page,.legal-page{padding-top:var(--space-huge)}
.about-page > section,.contact-page > section,.legal-page > section{padding:var(--space-huge) 0;border-top:1px solid var(--color-border);margin-top:var(--space-huge)}

.backlink{font-size:14px;text-decoration:none;color:var(--color-text-muted);display:inline-block;margin-bottom:var(--space-xl)}
.backlink:hover{color:var(--color-text);text-decoration:underline;text-underline-offset:4px}
.page-title{font-size:clamp(2rem,5vw,3.5rem);font-weight:300;line-height:1.06;margin-bottom:var(--space-lg)}
.page-lead{font-size:18px;line-height:1.6;color:var(--color-text-muted);max-width:62ch;margin-bottom:0}

.values-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:var(--space-xl)}
.values-card{
  background:var(--color-surface);border:1px solid var(--color-border);
  border-radius:var(--radius-lg);padding:var(--space-xxl);box-shadow:var(--shadow-sm);
}
.values-index{display:block;font-family:var(--font-heading);font-size:2rem;font-weight:300;line-height:1;color:var(--color-text-faint);margin-bottom:var(--space-md)}
.values-title{font-size:1.125rem;font-weight:500;margin-bottom:var(--space-sm)}
.values-text{font-size:15px;line-height:1.6;color:var(--color-text-muted);margin:0}

.figures-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--space-xl);margin-bottom:var(--space-huge)}
.figures-item{display:flex;flex-direction:column;gap:6px;padding:var(--space-lg) 0;border-top:1px solid var(--color-border)}
.figures-num{font-family:var(--font-heading);font-size:clamp(1.5rem,3vw,2.25rem);font-weight:300;line-height:1}
.figures-label{font-size:13px;color:var(--color-text-muted)}

.reach-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:var(--space-huge)}
.reach-col{min-width:0}
.reach-form{display:flex;flex-direction:column;gap:var(--space-lg);max-width:520px}
.field-group{display:flex;flex-direction:column;gap:var(--space-sm)}
.field-group label{font-size:13px;font-weight:600;letter-spacing:.28px}
.field-group input,.field-group textarea{
  min-height:44px;padding:11px 13px;
  background:var(--color-surface);color:var(--color-text);
  border:1px solid var(--color-border);border-radius:var(--radius-md);
  font-family:var(--font-body);font-size:16px;line-height:1.5;
}
.field-group textarea{resize:vertical;min-height:130px}
.reach-form .btn-primary{align-self:flex-start}
.field-note{
  padding:10px 14px;border-radius:var(--radius-md);
  background:var(--color-error-bg);color:var(--color-error-ink);
  border:1px solid var(--color-error-ink);font-size:.875rem;
}
.reach-details{margin:0 0 var(--space-huge)}
.reach-details dt{font-size:12px;font-weight:600;letter-spacing:.72px;text-transform:uppercase;color:var(--color-text-faint);margin-bottom:var(--space-xs)}
.reach-details dd{margin:0 0 var(--space-lg);font-size:16px;line-height:1.6}
.reach-subtitle{font-size:1.125rem;font-weight:500;margin-bottom:var(--space-md)}
.reach-note{font-size:15px;line-height:1.6;color:var(--color-text-muted);max-width:52ch;margin:0}

.legal-updated{font-size:13px;color:var(--color-text-faint);margin-bottom:0}
.legal-body{max-width:var(--reading)}
.legal-heading{font-size:1.375rem;font-weight:500;margin:var(--space-huge) 0 var(--space-md)}
.legal-heading:first-child{margin-top:0}
.legal-body p{font-size:16px;line-height:1.7;color:var(--color-text-muted)}

.is-reveal{opacity:0;transform:translateY(14px);transition:opacity .5s ease,transform .5s ease}
.is-reveal.visible{opacity:1;transform:none}

@media (max-width:767px){
  .masthead-nav{
    display:none;position:absolute;left:0;right:0;top:100%;
    background:var(--color-surface);border-bottom:1px solid var(--color-border);
    padding:var(--space-lg) 20px var(--space-xl);
  }
  .masthead-nav.is-open{display:block}
  .masthead-nav ul{flex-direction:column;gap:var(--space-lg)}
  .masthead-burger{display:flex}
  .masthead-cta .btn-primary{padding:8px 14px;font-size:13px;min-height:38px}
  .hero-title{letter-spacing:.4px}
  .stickybar-inner{flex-wrap:wrap}
  .stickybar-text{flex:1 1 100%;font-size:13px}
  .stickybar-cta{flex:1}
  .consent-inner{justify-content:flex-start}
  .consent-actions{width:100%}
  .consent-actions .btn-sm{flex:1}
}

@media (min-width:768px){
  main > section{padding:96px 0}
  .about-page > section,.contact-page > section,.legal-page > section{padding:96px 0;margin-top:96px}
  .container{padding:0 40px}
  .proof-strip-inner{grid-template-columns:repeat(4,minmax(0,1fr))}
  .flow-steps{grid-template-columns:repeat(2,minmax(0,1fr))}
  .use-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .values-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .figures-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .shots-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .sitefoot-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .sitefoot-bottom{flex-direction:row;align-items:baseline;justify-content:space-between;gap:var(--space-xl)}
  .sitefoot-disclosure{max-width:60ch;text-align:right}
  .signup-row{flex-direction:row}
  .signup-input{min-width:0}
  .risk-item{grid-template-columns:minmax(0,.85fr) minmax(0,1.6fr);gap:var(--space-xxl)}
  .path-cta{padding:var(--space-xl) var(--space-xxl)}
}

@media (min-width:1024px){
  main > section{padding:112px 0}
  .hero{padding:96px 0}
  .hero-inner{grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);gap:var(--space-huge)}
  .hero-photo{aspect-ratio:4/3}
  .why-row{grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);gap:var(--space-huge)}
  .why-row--flip .why-row-figure{order:2}
  .why-row--flip .why-row-body{order:1}
  .mech-block{grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);gap:var(--space-huge)}
  .mech-block--flip .mech-figure{order:2}
  .mech-block--flip .mech-body{order:1}
  .story-grid{grid-template-columns:minmax(0,1.5fr) minmax(0,1fr);gap:var(--space-huge)}
  .flow-steps{grid-template-columns:repeat(4,minmax(0,1fr))}
  .use-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .values-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .shots-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .sitefoot-grid{grid-template-columns:1.5fr 1fr 1fr 1fr}
  .reach-grid{grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);gap:96px}
  .products-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
}

@media (min-width:1440px){
  .hero-title{letter-spacing:2.4px}
  .container{padding:0 56px}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{transition-duration:.01ms !important;animation-duration:.01ms !important}
  .is-reveal{opacity:1;transform:none}
}
