:root {
  --ink: #101411;
  --ink-2: #202720;
  --cream: #f4f1e9;
  --paper: #fffdf8;
  --teal: #00a79d;
  --teal-dark: #08756f;
  --orange: #f26a3d;
  --line: #d8dbd3;
  --muted: #657067;
  --white: #fff;
  --shadow: 0 24px 70px rgba(16, 20, 17, .12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, .button { touch-action: manipulation; }
:focus-visible { outline: 3px solid rgba(0, 167, 157, .35); outline-offset: 3px; }
.skip-link { position: absolute; left: 1rem; top: -5rem; z-index: 100; background: var(--white); padding: .8rem 1rem; border-radius: 10px; }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 780px); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section-sm { padding: 3rem 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-cream { background: var(--cream); }
.section-teal { color: var(--white); background: var(--teal-dark); }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1rem; color: var(--teal-dark); font-size: .76rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section-dark .eyebrow, .section-teal .eyebrow { color: #7fe1db; }
h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -.045em; }
h1 { font-size: clamp(3.25rem, 7.5vw, 7rem); max-width: 12ch; }
h2 { font-size: clamp(2.2rem, 5vw, 4.6rem); max-width: 13ch; }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.08; }
p { margin: 0 0 1rem; }
.lede { max-width: 670px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.section-dark .lede, .section-teal .lede { color: rgba(255,255,255,.72); }
.kicker { color: var(--orange); font-weight: 800; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .55rem; padding: .8rem 1.2rem; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: var(--white); font-weight: 780; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(16,20,17,.18); }
.button-accent { border-color: var(--orange); background: var(--orange); }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-ghost { background: transparent; color: var(--ink); }
.section-dark .button-ghost, .section-teal .button-ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.text-link { font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.announcement { background: var(--ink); color: var(--white); font-size: .82rem; }
.announcement .container { display: flex; min-height: 36px; align-items: center; justify-content: space-between; gap: 1rem; }
.announcement span:last-child { color: #9ddbd6; }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(16,20,17,.1); background: rgba(255,253,248,.92); backdrop-filter: blur(16px); }
.nav { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; background: var(--ink); color: var(--white); font-size: .73rem; font-weight: 950; letter-spacing: -.04em; transform: rotate(-3deg); }
.brand-type { font-size: 1rem; font-weight: 920; letter-spacing: -.025em; line-height: .9; }
.brand-type small { display: block; margin-top: .28rem; color: var(--muted); font-size: .58rem; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.3rem; }
.nav-links > a { font-size: .9rem; font-weight: 730; text-decoration: none; }
.nav-links > a:not(.button):hover { color: var(--teal-dark); }
.menu-toggle { display: none; border: 0; background: none; font-size: .9rem; font-weight: 800; }

.hero { position: relative; min-height: 720px; overflow: hidden; background: #e9e7e0; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(244,241,233,.98) 0%, rgba(244,241,233,.93) 32%, rgba(244,241,233,.08) 67%); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-inner { position: relative; z-index: 2; display: flex; min-height: 720px; align-items: center; padding: 6rem 0; }
.hero-copy { max-width: 680px; }
.hero h1 em { color: var(--teal-dark); font-style: normal; }
.hero .lede { max-width: 580px; margin-top: 1.5rem; color: #3f4941; }
.trust-row { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; margin: 2.2rem 0 0; padding: 0; list-style: none; font-size: .87rem; font-weight: 760; }
.trust-row li::before { content: "✓"; margin-right: .45rem; color: var(--teal-dark); }
.proof-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 1.7rem 1.2rem; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-size: 1.1rem; letter-spacing: -.02em; }
.proof-item span { color: var(--muted); font-size: .84rem; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.section-head > p { max-width: 520px; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { position: relative; overflow: hidden; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.card .card-number { margin-bottom: 2.5rem; color: var(--teal-dark); font-size: .75rem; font-weight: 850; letter-spacing: .14em; }
.card p { margin-top: .8rem; color: var(--muted); }
.card-link { display: block; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.card-link:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.industry-card { min-height: 285px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(145deg, var(--white), #eef0e9); }
.industry-card .arrow { font-size: 1.5rem; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.product-card { overflow: hidden; border: 1px solid #39423a; border-radius: 28px; background: #171c18; color: var(--white); }
.product-image { display: grid; min-height: 380px; place-items: center; padding: 2rem; background: radial-gradient(circle at 50% 45%, #f6f3ec 0 20%, #dfe5de 68%, #bcc7bf 100%); }
.product-image img { max-height: 310px; object-fit: contain; filter: drop-shadow(0 20px 35px rgba(0,0,0,.25)); }
.product-body { padding: 2rem; }
.product-body .tag { color: #76d8d1; font-size: .75rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.product-body h3 { margin-top: .6rem; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.product-body p { margin-top: 1rem; color: rgba(255,255,255,.65); }
.spec-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.spec-chips span { padding: .45rem .7rem; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; color: rgba(255,255,255,.86); font-size: .78rem; }
.product-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 7vw, 7rem); }
.range-visual { position: relative; padding: 3rem; border-radius: 32px; background: linear-gradient(145deg, #e9f3ef, #c8ded7); }
.range-visual::before { content: "OUR RANGE"; position: absolute; top: 1rem; right: 1.2rem; color: rgba(16,20,17,.15); font-size: clamp(1.8rem, 5vw, 4.5rem); font-weight: 950; letter-spacing: -.06em; }
.check-list { display: grid; gap: 1rem; margin: 2rem 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 34px 1fr; gap: .8rem; align-items: start; }
.check-list li::before { content: "✓"; display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: #d8efeb; color: var(--teal-dark); font-weight: 900; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.15); }
.stat { padding: 1.6rem; background: var(--ink); }
.stat strong { display: block; color: #8de0da; font-size: clamp(1.7rem, 4vw, 3.2rem); line-height: 1; }
.stat span { display: block; margin-top: .6rem; color: rgba(255,255,255,.64); font-size: .82rem; }

.page-hero { padding: clamp(5rem, 10vw, 8rem) 0 4rem; border-bottom: 1px solid var(--line); background: var(--cream); }
.page-hero h1 { max-width: 15ch; font-size: clamp(3rem, 7vw, 6rem); }
.page-hero .lede { margin-top: 1.5rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 2rem; color: var(--muted); font-size: .8rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs span:not(:last-child)::after { content: "/"; margin-left: .4rem; color: #a0a8a1; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.product-gallery { position: sticky; top: 110px; display: grid; min-height: 540px; place-items: center; padding: 3rem; border-radius: 30px; background: radial-gradient(circle, #fff 0, #e7ece7 58%, #cdd7cf 100%); }
.product-gallery img { max-height: 430px; object-fit: contain; filter: drop-shadow(0 25px 38px rgba(0,0,0,.2)); }
.product-info h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
.product-info .lede { margin-top: 1.3rem; }
.price-line { display: flex; align-items: baseline; gap: .55rem; margin-top: 1.8rem; }
.price-line strong { font-size: 1.7rem; }
.price-line span { color: var(--muted); font-size: .85rem; }
.option-group { margin-top: 1.5rem; }
.option-group label { display: block; margin-bottom: .5rem; font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.option-group select { width: 100%; min-height: 50px; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.buy-box { margin-top: 2rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.buy-box .button { width: 100%; }
.microcopy { margin-top: .7rem; color: var(--muted); font-size: .76rem; }
.spec-table { width: 100%; margin-top: 2rem; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: .9rem 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { width: 42%; color: var(--muted); font-size: .82rem; font-weight: 650; }
.spec-table td { font-weight: 700; }
.callout { padding: 1.5rem; border-left: 4px solid var(--orange); border-radius: 0 16px 16px 0; background: #fff0e9; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.compare { width: 100%; min-width: 680px; border-collapse: collapse; }
.compare th, .compare td { padding: 1.1rem 1.2rem; border-bottom: 1px solid var(--line); text-align: left; }
.compare th { background: #eef1eb; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.compare td:first-child { color: var(--muted); font-size: .85rem; }
.compare tr:last-child td { border-bottom: 0; }

.form-shell { display: grid; grid-template-columns: .75fr 1.25fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.form-aside { padding: clamp(2rem, 5vw, 4rem); background: var(--ink); color: var(--white); }
.form-aside p { margin-top: 1rem; color: rgba(255,255,255,.67); }
.form-main { padding: clamp(2rem, 5vw, 4rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
.field-hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.field label { font-size: .78rem; font-weight: 790; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: .75rem .85rem; border: 1px solid #cbd1ca; border-radius: 10px; background: #fff; color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.field small { color: var(--muted); font-size: .72rem; }
.form-actions { display: flex; align-items: center; gap: 1rem; margin-top: 1.3rem; }
.form-note { color: var(--muted); font-size: .76rem; }
.form-error { margin-bottom: 1rem; padding: 1rem 1.1rem; border: 1px solid #d89a90; border-radius: 12px; background: #fff1ee; color: #6d2118; }
.form-error p { margin-top: .35rem; }
.form-success { display: none; padding: 2rem; border-radius: 18px; background: #dff3ec; }
.form-success.show { display: block; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 1rem; list-style: none; font-size: 1.05rem; font-weight: 800; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--teal-dark); font-size: 1.5rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 760px; padding: 0 0 1.5rem; color: var(--muted); }
.article-list { display: grid; gap: 1rem; }
.article-row { display: grid; grid-template-columns: 140px 1fr auto; align-items: center; gap: 1.5rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.article-row .meta { color: var(--teal-dark); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-row p { margin: .4rem 0 0; color: var(--muted); }
.prose { font-size: 1.05rem; }
.prose h2 { max-width: 18ch; margin: 3.5rem 0 1.2rem; font-size: clamp(2rem, 4vw, 3.3rem); }
.prose h3 { margin: 2.2rem 0 .8rem; }
.prose p, .prose ul { max-width: 760px; }
.prose li { margin-bottom: .5rem; }
.prose .callout { margin: 2rem 0; }

.cta-band { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem); border-radius: 32px; background: var(--orange); color: var(--ink); }
.cta-band::after { content: "EZY"; position: absolute; right: -1rem; bottom: -3rem; color: rgba(255,255,255,.18); font-size: clamp(8rem, 20vw, 18rem); font-weight: 950; line-height: 1; letter-spacing: -.1em; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 14ch; }
.site-footer { padding: 4rem 0 2rem; background: #0b0e0c; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; }
.footer-grid h3 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid ul { display: grid; gap: .65rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.footer-grid a { color: rgba(255,255,255,.65); font-size: .88rem; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.48); font-size: .75rem; }

@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 113px 0 auto; display: none; padding: 1.5rem; border-bottom: 1px solid var(--line); background: var(--paper); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .hero, .hero-inner { min-height: 650px; }
  .hero::after { background: linear-gradient(90deg, rgba(244,241,233,.98) 0%, rgba(244,241,233,.9) 58%, rgba(244,241,233,.35) 100%); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .split, .product-detail, .form-shell { grid-template-columns: 1fr; }
  .product-gallery { position: static; min-height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .announcement span:last-child { display: none; }
  .brand-type small { display: none; }
  .hero { min-height: 690px; }
  .hero-inner { min-height: 690px; align-items: end; padding-bottom: 4rem; }
  .hero-media { object-position: 66% center; opacity: .48; }
  .hero::after { background: linear-gradient(180deg, rgba(244,241,233,.56), rgba(244,241,233,.98) 62%); }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .section-head { align-items: start; flex-direction: column; }
  .card-grid, .product-grid, .stats, .form-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .product-image { min-height: 300px; }
  .form-aside, .form-main { padding: 1.5rem; }
  .article-row { grid-template-columns: 1fr auto; }
  .article-row .meta { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

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