:root{
  --color-primary:#111111;
  --color-secondary:#242424;
  --color-accent:#3b82f6;
  --color-bg:#ffffff;
  --color-bg-alt:#f5f5f5;
  --color-surface:#f8f9fa;
  --color-surface-strong:#e5e7eb;
  --color-text:#111111;
  --color-text-body:#374151;
  --color-text-muted:#6b7280;
  --color-text-faint:#898989;
  --color-border:#e5e7eb;
  --color-border-soft:#f3f4f6;
  --color-dark:#101010;
  --color-dark-elev:#1a1a1a;
  --color-on-dark:#ffffff;
  --color-on-dark-soft:#a1a1aa;
  --color-star:#fb923c;
  --color-error:#ef4444;
  --font-heading:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --font-body:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --radius-sm:8px;
  --radius-md:12px;
  --radius-lg:16px;
  --radius-pill:9999px;
  --shadow-sm:0 1px 2px rgba(0,0,0,.05);
  --shadow-md:0 4px 12px rgba(0,0,0,.08);
  --space-xs:8px;
  --space-sm:12px;
  --space-md:16px;
  --space-lg:24px;
  --space-xl:32px;
  --space-xxl:48px;
  --container:1200px;
  --header-h:64px;
}
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;padding-top:var(--header-h);
  font-family:var(--font-body);font-size:16px;font-weight:400;line-height:1.5;
  color:var(--color-text-body);background:var(--color-bg);
}
img{max-width:100%;height:auto;display:block}
a{color:var(--color-text);text-decoration:none}
a:hover{text-decoration:underline}
p{margin:0 0 var(--space-md)}
ul,ol{margin:0;padding:0}
[hidden]{display:none !important}
h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);font-weight:600;color:var(--color-text);margin:0 0 var(--space-md)}
h1{font-size:clamp(2rem,5vw,3.25rem);line-height:1.05;letter-spacing:-.04em}
h2{font-size:clamp(1.75rem,3.4vw,2.5rem);line-height:1.12;letter-spacing:-.035em}
h3{font-size:1.25rem;line-height:1.3;letter-spacing:-.02em}
:focus-visible{outline:2px solid var(--color-primary);outline-offset:3px;border-radius:4px}
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 20px}

section{padding:60px 0}
@media(min-width:1024px){section{padding:96px 0}}
.section-alt{background:var(--color-bg-alt)}
.section-title{max-width:22ch}
.section-subtitle{
  font-size:1.0625rem;color:var(--color-text-muted);max-width:70ch;margin:0 0 var(--space-xxl);
}

.btn-primary,.btn-secondary,.btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--font-body);font-size:14px;font-weight:600;line-height:1;
  min-height:40px;padding:12px 20px;border-radius:var(--radius-sm);
  border:1px solid transparent;cursor:pointer;text-decoration:none;white-space:nowrap;
}
.btn-primary:hover,.btn-secondary:hover,.btn-ghost:hover{text-decoration:none}
.btn-primary{background:var(--color-primary);color:#fff}
.btn-primary:active{background:var(--color-secondary)}
.btn-secondary{background:var(--color-bg);color:var(--color-text);border-color:var(--color-border)}
.btn-secondary:active{border-color:var(--color-primary)}
.btn-ghost{background:transparent;color:var(--color-text);border-color:var(--color-border)}
.btn-ghost:active{border-color:var(--color-primary)}
.btn-sm{min-height:36px;padding:9px 16px;font-size:13px}
.btn-lg{min-height:48px;padding:15px 26px;font-size:15px}

.masthead{
  position:fixed;top:0;left:0;right:0;z-index:60;height:var(--header-h);
  background:var(--color-bg);border-bottom:1px solid var(--color-border-soft);
}
.masthead--scrolled{border-bottom-color:var(--color-border)}
.masthead__inner{display:flex;align-items:center;gap:var(--space-lg);height:var(--header-h)}
.masthead__logo{
  font-family:var(--font-heading);font-weight:600;font-size:20px;letter-spacing:-.04em;
  color:var(--color-text);margin-right:auto;
}
.masthead__logo:hover{text-decoration:none}
.masthead__nav ul{display:flex;gap:var(--space-lg);list-style:none}
.masthead__nav a{font-size:14px;font-weight:500;color:var(--color-text-muted)}
.masthead__nav a:hover{color:var(--color-text);text-decoration:none}
.masthead__cta{display:none}
.masthead__burger{
  display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;
  background:transparent;border:1px solid var(--color-border);border-radius:var(--radius-sm);
  font-size:18px;color:var(--color-text);cursor:pointer;
}
@media(min-width:900px){
  .masthead__cta{display:block}
  .masthead__burger{display:none}
}
@media(max-width:899px){
  .masthead__nav{
    position:fixed;top:var(--header-h);left:0;right:0;background:var(--color-bg);
    border-bottom:1px solid var(--color-border);padding:var(--space-md) 20px var(--space-lg);
    transform:translateY(-140%);transition:transform .22s ease;
  }
  .masthead__nav.is-open{transform:translateY(0)}
  .masthead__nav ul{flex-direction:column;gap:var(--space-md)}
  .masthead__nav a{font-size:16px}
}
body.no-scroll{overflow:hidden}

.hero{min-height:50vh;padding:48px 0 32px;background:var(--color-bg)}
@media(min-width:1024px){.hero{padding:72px 0 40px}}
.hero__inner{display:grid;gap:var(--space-xl);align-items:center}
@media(min-width:1024px){.hero__inner{grid-template-columns:7fr 5fr;gap:var(--space-xxl)}}
.hero__title{margin-bottom:var(--space-md)}
.hero__sub{font-size:1.125rem;color:var(--color-text-body);max-width:52ch;margin-bottom:var(--space-lg)}
.hero__bullets{list-style:none;display:flex;flex-wrap:wrap;gap:var(--space-xs) var(--space-md);margin-bottom:var(--space-lg)}
.hero__bullets li{
  font-size:13px;font-weight:500;color:var(--color-text);background:var(--color-bg-alt);
  border-radius:var(--radius-pill);padding:6px 14px;
}
.hero__actions{display:flex;flex-wrap:wrap;gap:var(--space-sm)}
.hero__media img{border-radius:var(--radius-lg);border:1px solid var(--color-border);width:100%}
.hero__stats{
  display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-md);
  margin-top:var(--space-xl);padding-top:var(--space-lg);border-top:1px solid var(--color-border);
}
.hero-stat{display:flex;flex-direction:column;gap:4px}
.hero-stat__num{font-family:var(--font-heading);font-weight:600;font-size:clamp(1.4rem,3vw,1.9rem);letter-spacing:-.03em;color:var(--color-text)}
.hero-stat__label{font-size:13px;color:var(--color-text-muted)}

.why-list{list-style:none;display:flex;flex-direction:column;gap:var(--space-lg)}
.why-row{
  display:grid;gap:var(--space-md);align-items:start;
  background:var(--color-bg);border:1px solid var(--color-border);
  border-radius:var(--radius-md);padding:var(--space-lg);
}
@media(min-width:768px){
  .why-row{grid-template-columns:180px 1fr;gap:var(--space-xl);padding:var(--space-xl)}
  .why-row--flip{grid-template-columns:1fr 180px}
  .why-row--flip .why-row__mark{order:2}
  .why-row--flip .why-row__body{order:1}
}
.why-row__mark{display:flex;align-items:center;justify-content:flex-start}
.why-row__num{
  font-family:var(--font-heading);font-weight:600;font-size:3.25rem;line-height:1;
  letter-spacing:-.05em;color:var(--color-text);
}
.why-row__body{max-width:66ch}
.why-row__title{margin-bottom:var(--space-xs)}
.why-row__text{margin:0;color:var(--color-text-body)}

.range .section-subtitle{margin-bottom:var(--space-xl)}
.products-grid{display:grid;gap:var(--space-lg);grid-template-columns:1fr}
@media(min-width:640px){.products-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.products-grid{grid-template-columns:repeat(4,1fr)}}
.product-card{
  display:flex;flex-direction:column;background:var(--color-bg-alt);
  border-radius:var(--radius-md);padding:var(--space-lg);
}
.product-card__media{display:block;background:#fff;border-radius:var(--radius-sm);overflow:hidden;margin-bottom:var(--space-md)}
.product-card__media img{width:100%;aspect-ratio:1/1;object-fit:cover}
.product-card__title{font-size:1rem;line-height:1.4;letter-spacing:0;margin-bottom:var(--space-xs)}
.product-card__rating{font-size:13px;font-weight:600;color:var(--color-star);margin-bottom:var(--space-sm)}
.product-card__reviews{color:var(--color-text-muted);font-weight:400}
.product-card__description{
  font-size:14px;color:var(--color-text-body);margin-bottom:var(--space-xs);
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
.product-card__description.is-expanded{-webkit-line-clamp:unset;overflow:visible}
.product-card__more{
  align-self:flex-start;background:none;border:0;padding:0 0 var(--space-md);
  font-family:var(--font-body);font-size:13px;font-weight:600;color:var(--color-text);
  cursor:pointer;text-decoration:underline;
}
.product-card__highlights{list-style:none;display:flex;flex-direction:column;gap:8px;margin-bottom:var(--space-lg)}
.product-card__highlights li{
  position:relative;padding-left:16px;font-size:13px;color:var(--color-text-body);
}
.product-card__highlights li::before{
  content:"";position:absolute;left:0;top:8px;width:6px;height:6px;border-radius:50%;
  background:var(--color-primary);
}
.product-card-bullets{list-style:none;display:flex;flex-direction:column;gap:8px;font-size:13px;color:var(--color-text-body)}
.product-card__cta{
  margin-top:auto;display:inline-flex;align-items:center;justify-content:center;
  min-height:40px;padding:12px 20px;border-radius:var(--radius-sm);
  background:var(--color-primary);color:#fff;font-size:14px;font-weight:600;line-height:1;
}
.product-card__cta:hover{text-decoration:none}
.product-card__cta:active{background:var(--color-secondary)}
.product-badge{
  display:inline-block;border-radius:var(--radius-pill);padding:4px 10px;
  background:#fef3c7;color:#92400e;font-size:.8125rem;font-weight:600;margin-bottom:var(--space-xs);
}
.product-badge--restock{background:#fef3c7;color:#92400e}
.product-card--unavailable .product-card__media img{filter:grayscale(.55)}
.product-card--unavailable .product-card__title{color:var(--color-text-muted)}
.category-chips{display:flex;flex-wrap:wrap;gap:var(--space-xs);justify-content:center;margin-top:var(--space-xl)}
.category-chip{
  border:1px solid var(--color-border);border-radius:var(--radius-pill);
  padding:8px 14px;font-size:13px;font-weight:500;color:var(--color-text);
}
.category-chips__all{margin-left:var(--space-xs)}

.data-scroll{overflow-x:auto;border:1px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-bg)}
.data-table{width:100%;border-collapse:collapse;min-width:680px;text-align:left}
.data-table th,.data-table td{padding:var(--space-md) var(--space-lg);border-bottom:1px solid var(--color-border-soft);vertical-align:top}
.data-table thead th{
  font-family:var(--font-body);font-size:13px;font-weight:600;text-transform:uppercase;
  letter-spacing:.04em;color:var(--color-text-muted);background:var(--color-surface);
}
.data-table tbody tr:last-child th,.data-table tbody tr:last-child td{border-bottom:0}
.data-table__metric{
  font-family:var(--font-heading);font-size:1.0625rem;font-weight:600;letter-spacing:-.02em;
  color:var(--color-text);white-space:normal;width:22%;
}
.data-table__claim{font-size:15px;color:var(--color-text-body);width:56%}
.data-table__proof{font-size:13px;color:var(--color-text-muted);font-style:italic;width:22%}

.depth-block{display:grid;gap:var(--space-lg);align-items:center;margin-bottom:var(--space-xxl)}
.depth-block:last-child{margin-bottom:0}
@media(min-width:900px){
  .depth-block{grid-template-columns:1fr 1fr;gap:var(--space-xxl);margin-bottom:80px}
  .depth-block--flip .depth-block__media{order:2}
  .depth-block--flip .depth-block__body{order:1}
}
.depth-block__media img{width:100%;border-radius:var(--radius-md);border:1px solid var(--color-border);aspect-ratio:1/1;object-fit:cover}
.depth-block__body{max-width:60ch}
.depth-block__title{font-size:1.5rem;margin-bottom:var(--space-sm)}
.depth-block__text{color:var(--color-text-body)}
.depth-block__list{list-style:none;display:flex;flex-direction:column;gap:var(--space-sm);margin-bottom:var(--space-lg)}
.depth-block__list li{position:relative;padding-left:20px;font-size:15px;color:var(--color-text-body)}
.depth-block__list li::before{content:"";position:absolute;left:0;top:9px;width:8px;height:1px;background:var(--color-primary)}
.depth-block__cta{margin-top:var(--space-xs)}

.origin__grid,.origin-story{display:grid;gap:var(--space-xl);align-items:start}
@media(min-width:900px){
  .origin__grid,.origin-story{grid-template-columns:1.35fr 1fr;gap:var(--space-xxl)}
}
.origin__body,.origin-story__body{max-width:68ch}
.origin__body p,.origin-story__body p{color:var(--color-text-body)}
.origin__media img,.origin-story__media img{width:100%;border-radius:var(--radius-md);border:1px solid var(--color-border)}
.origin__link{margin-top:var(--space-sm)}

.path-list{list-style:none;display:grid;gap:var(--space-lg);counter-reset:path}
@media(min-width:768px){.path-list{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.path-list{grid-template-columns:repeat(4,1fr)}}
.path-step{border-top:2px solid var(--color-primary);padding-top:var(--space-md)}
.path-step__num{
  display:block;font-family:var(--font-heading);font-weight:600;font-size:2.5rem;line-height:1;
  letter-spacing:-.05em;color:var(--color-text);margin-bottom:var(--space-sm);
}
.path-step__title{font-size:1.0625rem;margin-bottom:var(--space-xs)}
.path-step__text{margin:0;font-size:15px;color:var(--color-text-body)}

.voice-list{list-style:none;display:flex;flex-direction:column;gap:var(--space-lg);max-width:820px}
.voice-quote{background:var(--color-bg);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-lg)}
@media(min-width:768px){.voice-quote{padding:var(--space-xl)}}
.voice-quote__text{margin:0 0 var(--space-md);font-size:1.0625rem;line-height:1.6;color:var(--color-text-body)}
.voice-quote__meta{margin:0;display:flex;flex-wrap:wrap;gap:var(--space-xs) var(--space-sm);align-items:center;font-size:13px}
.voice-quote__badge{
  background:var(--color-bg-alt);border-radius:var(--radius-pill);padding:4px 12px;
  font-weight:600;color:var(--color-text);
}
.voice-quote__product{color:var(--color-text-muted)}

.risk-list{list-style:none;display:flex;flex-direction:column}
.risk-row{display:grid;gap:var(--space-xs);padding:var(--space-lg) 0;border-top:1px solid var(--color-border)}
.risk-row:last-child{border-bottom:1px solid var(--color-border)}
@media(min-width:900px){
  .risk-row{grid-template-columns:1fr 1.6fr;gap:var(--space-xl);padding:var(--space-xl) 0}
}
.risk-row__fear{font-size:1.125rem;margin:0}
.risk-row__answer{margin:0;color:var(--color-text-body)}
.risk-close{margin-top:var(--space-xl);font-size:15px;color:var(--color-text-muted)}
.risk-close a{font-weight:600;color:var(--color-text);text-decoration:underline}

.fit-grid{list-style:none;display:grid;gap:var(--space-lg)}
@media(min-width:640px){.fit-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.fit-grid{grid-template-columns:repeat(3,1fr)}}
.fit-card{background:var(--color-bg);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-lg)}
.fit-card__num{
  display:block;font-family:var(--font-heading);font-weight:600;font-size:1.75rem;line-height:1;
  letter-spacing:-.04em;color:var(--color-text-muted);margin-bottom:var(--space-sm);
}
.fit-card__title{font-size:1.0625rem;margin-bottom:var(--space-xs)}
.fit-card__text{margin:0;font-size:15px;color:var(--color-text-body)}

.arc-list{list-style:none;display:flex;flex-direction:column;gap:0;max-width:800px}
.arc-step{position:relative;padding:0 0 var(--space-lg) var(--space-xl);border-left:2px solid var(--color-border)}
.arc-step:last-child{border-left-color:transparent;padding-bottom:0}
.arc-step::before{
  content:"";position:absolute;left:-7px;top:6px;width:12px;height:12px;border-radius:50%;
  background:var(--color-primary);
}
.arc-step__text{margin:0;color:var(--color-text-body)}
.arc-step__when{font-weight:600;color:var(--color-text)}
.arc-close{margin-top:var(--space-xl);font-size:15px;color:var(--color-text-muted)}
.arc-close a{font-weight:600;color:var(--color-text);text-decoration:underline}

.ask-list,.ask-more{display:flex;flex-direction:column;max-width:900px}
.ask-item{border-bottom:1px solid var(--color-border)}
.ask-item:first-child{border-top:1px solid var(--color-border)}
.ask-more .ask-item:first-child{border-top:0}
.ask-item>summary{
  cursor:pointer;list-style:none;padding:var(--space-md) 40px var(--space-md) 0;position:relative;
  font-family:var(--font-heading);font-weight:600;font-size:1.0625rem;letter-spacing:-.01em;
  color:var(--color-text);
}
.ask-item>summary::-webkit-details-marker{display:none}
.ask-item>summary::after{
  content:"+";position:absolute;right:8px;top:50%;transform:translateY(-50%);
  font-size:1.25rem;font-weight:400;color:var(--color-text-muted);
}
.ask-item[open]>summary::after{content:"\2212"}
.ask-item__q{display:block}
.ask-item__a{padding:0 40px var(--space-lg) 0}
.ask-item__a p{margin:0;color:var(--color-text-body)}
.ask-toggle{
  margin-top:var(--space-lg);background:var(--color-bg);border:1px solid var(--color-border);
  border-radius:var(--radius-sm);padding:12px 20px;min-height:40px;
  font-family:var(--font-body);font-size:14px;font-weight:600;color:var(--color-text);cursor:pointer;
}
.ask-toggle:active{border-color:var(--color-primary)}

.shots-grid{list-style:none;display:grid;gap:var(--space-md);grid-template-columns:1fr}
@media(min-width:600px){.shots-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.shots-grid{grid-template-columns:repeat(4,1fr)}}
.shots-item__btn{
  display:block;width:100%;padding:0;background:none;border:0;cursor:pointer;text-align:left;
}
.shots-item__btn img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:var(--radius-md);border:1px solid var(--color-border)}
.shots-item__caption{display:block;margin-top:var(--space-xs);font-size:13px;color:var(--color-text-muted)}
.viewer{
  position:fixed;inset:0;z-index:120;background:rgba(16,16,16,.92);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:var(--space-md);padding:24px;
}
.viewer__img{max-width:min(92vw,900px);max-height:78vh;border-radius:var(--radius-md)}
.viewer__caption{margin:0;color:#fff;font-size:14px}
.viewer__close{
  position:absolute;top:20px;right:20px;width:40px;height:40px;border-radius:50%;
  background:#fff;border:0;font-size:16px;color:var(--color-text);cursor:pointer;
}

.signup{background:var(--color-bg-alt)}
.signup__inner{max-width:720px;text-align:center}
.signup__inner .section-title{max-width:none}
.signup__inner .section-subtitle{margin:0 auto var(--space-lg)}
.signup__form{display:flex;flex-wrap:wrap;gap:var(--space-sm);justify-content:center}
.signup__label{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
.signup__input{
  flex:1 1 280px;min-height:40px;padding:10px 14px;border-radius:var(--radius-sm);
  border:1px solid var(--color-border);background:#fff;font-family:var(--font-body);font-size:16px;color:var(--color-text);
}
.signup__input:focus{border-color:var(--color-primary);outline:none}
.signup__note{margin:var(--space-md) 0 0;font-size:13px;color:var(--color-text-faint)}
.signup-message{margin:var(--space-md) auto 0;max-width:520px;padding:10px 14px;border-radius:6px;font-size:.875rem}
.signup-message--error{color:#C0392B;background:#FDEDEC;border:1px solid #C0392B}

.closer{background:var(--color-dark);color:var(--color-on-dark-soft);padding:64px 0 32px}
.closer__inner{display:grid;gap:var(--space-xl)}
@media(min-width:640px){.closer__inner{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.closer__inner{grid-template-columns:1.4fr 1fr 1fr 1fr;gap:var(--space-lg)}}
.closer__col p,.closer__col address{font-size:14px;color:var(--color-on-dark-soft);font-style:normal}
.closer__wordmark{
  display:block;font-family:var(--font-heading);font-weight:600;font-size:20px;
  letter-spacing:-.04em;color:var(--color-on-dark);margin-bottom:var(--space-sm);
}
.closer__tagline{margin-bottom:var(--space-md)}
.closer__address{margin-bottom:var(--space-md);line-height:1.7}
.closer__hours{margin:0;line-height:1.7}
.closer__head{font-size:14px;font-weight:600;color:var(--color-on-dark);margin-bottom:var(--space-md);letter-spacing:0}
.closer__list,.closer__social{list-style:none;display:flex;flex-direction:column;gap:10px}
.closer__list a,.closer__social a,.closer__address a{color:var(--color-on-dark-soft);font-size:14px}
.closer__list a:hover,.closer__social a:hover,.closer__address a:hover{color:var(--color-on-dark)}
.closer__brand{max-width:36ch}
.closer__languages{display:flex;flex-wrap:wrap;gap:var(--space-sm);max-width:var(--container);margin:var(--space-xl) auto 0;padding:0 20px}
.closer__languages:empty{display:none}
.closer__bottom{
  margin-top:var(--space-xl);padding-top:var(--space-lg);border-top:1px solid var(--color-dark-elev);
}
.closer__copyright{margin:0 0 var(--space-xs);font-size:13px;color:var(--color-on-dark-soft)}
.closer__bottom p{font-size:12px;color:var(--color-on-dark-soft);margin:0 0 var(--space-xs)}

.consent{
  position:fixed;left:0;right:0;bottom:0;z-index:110;background:var(--color-dark);
  color:var(--color-on-dark-soft);padding:14px 20px;
  display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:var(--space-md);
}
.consent__text{margin:0;font-size:13px;color:var(--color-on-dark-soft)}
.consent__text a{color:var(--color-on-dark);text-decoration:underline}
.consent__actions{display:flex;gap:var(--space-xs)}
.consent .btn-primary{background:#fff;color:var(--color-dark)}
.consent .btn-ghost{color:#fff;border-color:rgba(255,255,255,.4)}

.railcta{
  position:fixed;left:0;right:0;bottom:0;z-index:100;
  background:rgba(16,16,16,.92);backdrop-filter:blur(8px);padding:12px 0;
}
.railcta__inner{display:flex;align-items:center;justify-content:space-between;gap:var(--space-md)}
.railcta__text{margin:0;font-size:14px;color:#fff}
.railcta__go{background:#fff;color:var(--color-dark)}
.railcta__close{
  background:transparent;border:0;color:#fff;font-size:14px;cursor:pointer;
  width:32px;height:32px;border-radius:50%;
}
@media(max-width:639px){
  .railcta__inner{flex-wrap:wrap}
  .railcta__text{flex:1 1 100%;font-size:13px}
  .railcta__go{flex:1 1 auto}
}

.pagehead{padding:40px 0 8px;background:var(--color-bg)}
.pagehead__back{font-size:14px;font-weight:600;color:var(--color-text-muted)}
.pagehead__title{margin:var(--space-md) 0 var(--space-xs)}
.pagehead__meta{margin:0;font-size:14px;color:var(--color-text-muted)}

.origin-page{padding-top:32px}
.creed-grid{list-style:none;display:grid;gap:var(--space-lg)}
@media(min-width:768px){.creed-grid{grid-template-columns:repeat(2,1fr)}}
.creed-card{background:var(--color-bg);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-xl)}
.creed-card__title{font-size:1.125rem;margin-bottom:var(--space-xs)}
.creed-card__text{margin:0;color:var(--color-text-body)}
.figures-list{list-style:none;display:grid;gap:var(--space-lg);grid-template-columns:repeat(2,1fr)}
@media(min-width:900px){.figures-list{grid-template-columns:repeat(4,1fr)}}
.figures-item{display:flex;flex-direction:column;gap:4px;border-top:2px solid var(--color-primary);padding-top:var(--space-sm)}
.figures-item__num{font-family:var(--font-heading);font-weight:600;font-size:1.75rem;letter-spacing:-.04em;color:var(--color-text)}
.figures-item__label{font-size:13px;color:var(--color-text-muted)}

.reach-page{padding-top:32px}
.reach-grid{display:grid;gap:var(--space-xxl)}
@media(min-width:900px){.reach-grid{grid-template-columns:1.3fr 1fr}}
.reach-form-wrap .section-subtitle{margin-bottom:var(--space-lg)}
.reach-form{display:flex;flex-direction:column;gap:var(--space-md);max-width:560px}
.field-group{display:flex;flex-direction:column;gap:6px}
.field-group label{font-size:14px;font-weight:600;color:var(--color-text)}
.field-group input,.field-group textarea{
  width:100%;padding:10px 14px;border-radius:var(--radius-sm);border:1px solid var(--color-border);
  background:#fff;font-family:var(--font-body);font-size:16px;color:var(--color-text);
}
.field-group input{min-height:40px}
.field-group input:focus,.field-group textarea:focus{border-color:var(--color-primary);outline:none}
.reach-form .btn-primary{align-self:flex-start}
.form-note{margin-top:var(--space-md);max-width:560px;padding:10px 14px;border-radius:6px;font-size:.875rem}
.form-note--error{color:#C0392B;background:#FDEDEC;border:1px solid #C0392B}
.reach-info__block{margin-bottom:var(--space-lg)}
.reach-info__block h3{font-size:1rem;margin-bottom:6px}
.reach-info__block p,.reach-info__block address{margin:0;font-style:normal;color:var(--color-text-body);line-height:1.7}

.legal-page{padding-top:32px}
.legal-block{max-width:74ch;margin-bottom:var(--space-xxl)}
.legal-block:last-child{margin-bottom:0}
.legal-block .section-title{font-size:1.375rem;letter-spacing:-.02em;max-width:none;margin-bottom:var(--space-sm)}
.legal-block p{color:var(--color-text-body)}
.legal-block a{text-decoration:underline}

.section-alt .why-row,.section-alt .fit-card,.section-alt .voice-quote,
.section-alt .creed-card,.section-alt .data-scroll{background:var(--color-bg)}
.section-alt .product-card{background:var(--color-bg);border:1px solid var(--color-border)}
.section-alt .hero__bullets li,.section-alt .voice-quote__badge{background:var(--color-surface-strong)}
.section-alt .ask-toggle{background:var(--color-bg)}

[data-animate]{opacity:0;transform:translateY(16px);transition:opacity .5s ease,transform .5s ease}
[data-animate].visible{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  [data-animate]{opacity:1;transform:none;transition:none}
  *{scroll-behavior:auto !important}
}
html{scroll-behavior:smooth}
:target{scroll-margin-top:calc(var(--header-h) + 16px)}
section{scroll-margin-top:calc(var(--header-h) + 8px)}

.why,.data,.depth,.origin,.path,.voice,.risk,.fit,.arc,.ask,.shots,.creed,.figures{
  position:relative;
}
.why .section-subtitle,.data .section-subtitle,.depth .section-subtitle,
.path .section-subtitle,.voice .section-subtitle,.risk .section-subtitle,
.fit .section-subtitle,.arc .section-subtitle,.ask .section-subtitle,
.shots .section-subtitle,.creed .section-subtitle{margin-bottom:var(--space-xl)}
.origin .section-title{margin-bottom:var(--space-lg)}
.figures .section-title{margin-bottom:var(--space-xl)}
.hero__body{display:flex;flex-direction:column;align-items:flex-start}
.reach-info{max-width:42ch}
.shots-item{margin:0}
