/* ============================================================
   Interaction Works — site-wide styles. Lifted from the design
   package's ui_kits/web/index.html (and products.html) so every
   page on the marketing site shares one stylesheet instead of
   duplicating <style> blocks per page.
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--iw-black);
  color: var(--iw-white);
  font-family: var(--iw-font-sans);
  -webkit-font-smoothing: antialiased;
}
body { min-height: 100vh; padding-left: 10px; padding-right: 10px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(0,0,0,.7);
  border-bottom: 1px solid var(--iw-gray-800);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.nav-left { display: flex; align-items: center; gap: 40px; }
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--iw-white); font-weight: 500; transition: color .15s var(--iw-ease); }
.nav-links a:hover { color: var(--iw-green); }
.nav-links a.active { color: var(--iw-green); }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-caret { font-size: 16px !important; transition: transform .2s var(--iw-ease, ease); opacity: 0.7; }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(180deg); opacity: 1; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  padding-top: 18px;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 20;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-inner {
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(14px);
  border: 1px solid var(--iw-gray-800);
  border-radius: 14px;
  padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 13px;
  color: var(--iw-white);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.005em;
}
.nav-dropdown a:hover { background: var(--iw-gray-800); color: var(--iw-green); }
.nav-dropdown a .nav-dd-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--iw-green); opacity: 0.55;
  flex-shrink: 0;
}
.nav-dropdown a:hover .nav-dd-dot { opacity: 1; }
.nav-right { display: flex; gap: 10px; align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--iw-font-sans);
  font-weight: 600;
  font-size: 14px;
  border: 0;
  padding: 11px 20px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .15s var(--iw-ease);
}
.btn .material-symbols-outlined { font-size: 18px; }
.btn-primary { background: var(--iw-green); color: #000; }
.btn-primary:hover { background: #27ff95; transform: translateY(-1px); }
.btn-secondary { background: var(--iw-gray-800); color: var(--iw-white); border: 1px solid var(--iw-gray-700); }
.btn-secondary:hover { background: var(--iw-gray-700); }
.btn-ghost { background: transparent; color: var(--iw-white); }
.btn-ghost:hover { color: var(--iw-green); }
.btn-danger { background: #c2342f; color: #fff; }
.btn-danger:hover { background: #d94842; }

/* ---------- Hero ---------- */
.hero { padding: 110px 0 90px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(22,235,135,.1);
  color: var(--iw-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--iw-green);
  box-shadow: 0 0 8px var(--iw-green);
}
.hero h1 {
  font-family: var(--iw-font-display);
  font-size: 152px;
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-wrap: balance;
  max-width: 1180px;
}
.hero h1 .accent { color: var(--iw-green); }
.hero-sub {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--iw-white);
  max-width: 620px;
}
.hero-cta { margin-top: 40px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Clients carousel ---------- */
.clients { padding: 64px 0 96px; border-top: 1px solid var(--iw-gray-800); }
.clients-head { display: flex; justify-content: center; margin-bottom: 36px; }
.clients-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(22,235,135,.1);
  color: var(--iw-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.clients-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--iw-green);
  box-shadow: 0 0 8px var(--iw-green);
}
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
.client {
  flex: 0 0 auto;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.client-img {
  width: 220px; height: 132px;
  border-radius: 18px;
  background-color: var(--iw-gray-900);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 14px, rgba(255,255,255,0) 14px 28px);
  border: 1px solid var(--iw-gray-800);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  transition: border-color .2s var(--iw-ease);
}
.client-img::before {
  content: "";
  position: absolute; inset: 14px;
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 10px;
  pointer-events: none;
}
.client-img .ph-mark {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--iw-gray-800);
  display: grid; place-items: center;
  color: var(--iw-fg-muted, #9aa0a6);
  font-family: var(--iw-font-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--iw-gray-700);
}
.client-img img { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.client:hover .client-img { border-color: var(--iw-green); }
.client-name {
  font-size: 13px;
  color: var(--iw-white);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}

/* ---------- Section heads ---------- */
section.section { padding: 100px 0; border-top: 1px solid var(--iw-gray-800); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.sec-head .eyebrow {
  font-size: 12px;
  color: var(--iw-green);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.sec-head h2 {
  font-family: var(--iw-font-display);
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: 0.005em;
  max-width: 820px;
}
.sec-head .desc {
  font-size: 15px;
  color: var(--iw-fg-muted, #9aa0a6);
  max-width: 420px;
  line-height: 1.6;
}

/* ---------- Pillars (capability cards) ---------- */
.pillars { padding: 80px 0 100px; border-top: 1px solid var(--iw-gray-800); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar {
  background: var(--iw-gray-800);
  border: 1px solid var(--iw-gray-700);
  border-radius: 22px;
  padding: 36px 32px 40px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all .2s var(--iw-ease);
  min-height: 320px;
}
.pillar:hover { border-color: var(--iw-green); transform: translateY(-3px); }
.pillar-head { display: flex; align-items: center; gap: 18px; }
.pillar-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(22,235,135,.12);
  color: var(--iw-green);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pillar-ico .material-symbols-outlined { font-size: 28px; }
.pillar h3 {
  font-family: "Hanken Grotesk", var(--iw-font-sans);
  font-weight: 700;
  font-size: 35px;
  line-height: 0.98;
  letter-spacing: 0.005em;
}
.pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--iw-fg-muted, #9aa0a6);
  margin-top: auto;
}

/* ---------- CTA band ---------- */
.cta {
  background: var(--iw-green);
  color: #000;
  border-radius: 24px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 0 0 80px;
}
.cta-mint { color: var(--iw-green-deep, #007a3d); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.cta h2 { font-family: var(--iw-font-display); font-size: 88px; line-height: 0.95; margin-top: 14px; }
.cta p { font-size: 16px; line-height: 1.55; opacity: 0.78; max-width: 380px; margin-top: 18px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.cta-btn {
  background: #000;
  color: var(--iw-green);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex; gap: 10px; align-items: center;
}
.cta-btn.alt { background: transparent; color: #000; border: 1px solid rgba(0,0,0,.25); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--iw-gray-800);
  padding: 40px 0 50px;
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 { font-size: 12px; color: var(--iw-white); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer li { font-size: 14px; color: var(--iw-white); cursor: pointer; }
.footer li:hover { color: var(--iw-green); }
.footer-bot { border-top: 1px solid var(--iw-gray-800); margin-top: 30px; padding-top: 22px; font-size: 12px; color: var(--iw-gray-600); display: flex; justify-content: space-between; }
.footer-mark { padding: 60px 0 24px; display: flex; justify-content: flex-start; }
.footer-mark img { width: 340px; height: auto; display: block; opacity: 0.95; }
.footer > div > .footer-mark { padding: 0 0 16px; }
.footer > div > .footer-mark img { width: 220px; }

/* ---------- Page header (products / services listings) ---------- */
.page-head { padding: 80px 0 60px; border-bottom: 1px solid var(--iw-gray-800); }
.page-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(22,235,135,.1);
  color: var(--iw-green);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.page-head .eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--iw-green); box-shadow: 0 0 8px var(--iw-green);
}
.page-head h1 {
  font-family: var(--iw-font-display);
  font-size: 124px;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-wrap: balance;
  max-width: 1080px;
}
.page-head h1 .accent { color: var(--iw-green); }
.page-head .sub { margin-top: 22px; font-size: 18px; line-height: 1.55; color: var(--iw-white); max-width: 580px; }

/* ---------- Product cards (used on home highlights + listing) ---------- */
.products-grid { padding: 60px 0 100px; display: flex; flex-direction: column; gap: 24px; }
.section-divider { padding: 28px 0 8px; }
.section-divider .line { height: 1px; background: var(--iw-gray-700); width: 100%; }
.section-divider .tag-row { margin-top: 18px; }
.section-divider .section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(22,235,135,.1);
  color: var(--iw-green);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.section-divider .section-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--iw-green); box-shadow: 0 0 8px var(--iw-green);
}
.section-divider.first { padding-top: 0; }

.row { display: grid; gap: 24px; }
.row.full  { grid-template-columns: 1fr; }
.row.split { grid-template-columns: 1fr 1fr; }

.product {
  background: var(--iw-gray-800);
  border: 1px solid var(--iw-gray-700);
  border-radius: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .2s var(--iw-ease);
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.product:hover { border-color: var(--iw-green); transform: translateY(-3px); }
.product:hover .product-arrow { background: var(--iw-green); color: #000; transform: rotate(-45deg) translateX(4px); }

.product-media { position: relative; aspect-ratio: 16 / 9; background: var(--iw-gray-900); overflow: hidden; }
.product.featured .product-media { aspect-ratio: 21 / 9; }
.product-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.product-media .ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--iw-gray-600); font-family: var(--iw-font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
}

.product-body { padding: 32px 32px 36px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.product.featured .product-body { padding: 40px 48px 48px; }
.product-title { font-family: "Aktiv Grotesk", var(--iw-font-sans); font-weight: 700; font-size: 30px; line-height: 1.05; letter-spacing: -0.015em; }
.product.featured .product-title { font-size: 44px; }
.product-tagline { font-size: 15px; color: var(--iw-green); font-weight: 600; letter-spacing: 0.01em; margin-top: 2px; }
.product.featured .product-tagline { font-size: 18px; }
.product-desc { font-size: 15px; line-height: 1.55; color: var(--iw-white); max-width: 540px; }
.product.featured .product-desc { font-size: 17px; max-width: 660px; }
.product-foot { display: flex; align-items: center; justify-content: flex-end; margin-top: 10px; }
.product-arrow {
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--iw-gray-700); color: var(--iw-white);
  display: grid; place-items: center;
  transition: all .25s var(--iw-ease); flex-shrink: 0;
}
.product-arrow .material-symbols-outlined { font-size: 22px; }

/* ---------- Product / service detail pages ---------- */
.detail-hero { padding: 60px 0 40px; }
.detail-crumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: var(--iw-fg-muted, #9aa0a6);
  padding: 30px 0 20px;
}
.detail-crumb a:hover { color: var(--iw-green); }
.detail-crumb .material-symbols-outlined { font-size: 16px; opacity: 0.6; }
.detail-hero h1 {
  font-family: var(--iw-font-display);
  font-size: 112px;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-wrap: balance;
  max-width: 1080px;
}
.detail-hero h1 .accent { color: var(--iw-green); }
.detail-hero .tagline {
  margin-top: 18px;
  color: var(--iw-green);
  font-weight: 600; font-size: 18px;
}
.detail-hero .intro {
  margin-top: 18px;
  font-size: 18px; line-height: 1.55;
  max-width: 740px;
}
.detail-hero-image {
  margin-top: 48px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--iw-gray-700);
  aspect-ratio: 21 / 9;
  background: var(--iw-gray-900);
}
.detail-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-body { padding: 60px 0 80px; max-width: 820px; font-size: 17px; line-height: 1.7; }
.detail-body p { margin-bottom: 1.1em; }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* ---------- Product / service detail — rich sections ---------- */
/* Ported verbatim from the design's ui_kits/web/products/_product-detail.css
   so the detail page chrome matches what the IW designer drew. */

.pd-breadcrumb-row { padding: 24px 0 0; }
.pd-crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--iw-fg-muted, #9aa0a6);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
}
.pd-crumb a:hover { color: var(--iw-green); }
.pd-crumb .material-symbols-outlined { font-size: 14px; }

/* Hero on a product page is its own thing — bigger headline, tagline below */
.pd-hero { padding: 40px 0 80px; }
.pd-hero .pd-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(22,235,135,.1); color: var(--iw-green);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 24px;
}
.pd-hero .pd-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--iw-green); box-shadow: 0 0 8px var(--iw-green); }
.pd-hero h1 {
  font-family: var(--iw-font-display);
  font-size: 132px; line-height: 0.9;
  letter-spacing: 0.005em; text-wrap: balance;
}
.pd-hero h1 .accent { color: var(--iw-green); }
.pd-tagline { margin-top: 18px; font-family: var(--iw-font-sans); font-size: 22px; font-weight: 600; color: var(--iw-green); letter-spacing: -0.005em; }
.pd-intro { margin-top: 28px; font-size: 18px; line-height: 1.6; color: var(--iw-gray-400); max-width: 760px; }
.pd-hero-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.pd-hero-image {
  margin-top: 64px;
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 21/9;
  background: var(--iw-gray-900); border: 1px solid var(--iw-gray-800);
}
.pd-hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* Section frames */
section.pd-section { padding: 80px 0; border-top: 1px solid var(--iw-gray-800); }
.pd-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.pd-sec-head .eyebrow { font-size: 12px; color: var(--iw-green); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.pd-sec-head h2 { font-family: var(--iw-font-display); font-size: 64px; line-height: 0.95; letter-spacing: 0.005em; max-width: 720px; }
.pd-sec-head .desc {
  font-size: 15px; color: var(--iw-fg-muted, #9aa0a6); max-width: 420px; line-height: 1.6;
  background: var(--iw-gray-800); border: 1px solid var(--iw-gray-700);
  border-radius: 14px; padding: 20px 24px;
}

/* Pull quote */
.pd-quote {
  padding: 64px 48px;
  background: linear-gradient(180deg, rgba(22,235,135,.06), transparent);
  border: 1px solid var(--iw-gray-800);
  border-radius: 24px;
  text-align: center;
}
.pd-quote q {
  font-family: var(--iw-font-display);
  font-size: 56px; line-height: 1.05; letter-spacing: 0.005em;
  quotes: "\201C" "\201D";
  display: block; max-width: 880px; margin: 0 auto;
  text-wrap: balance;
}
.pd-quote q::before, .pd-quote q::after { color: var(--iw-green); }
.pd-quote .pd-quote-attr {
  margin-top: 24px;
  font-size: 13px; color: var(--iw-fg-muted, #9aa0a6);
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}

/* Feature 3-col cards */
.pd-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pd-feat {
  background: var(--iw-gray-800);
  border: 1px solid var(--iw-gray-700);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all .2s var(--iw-ease);
}
.pd-feat:hover { border-color: var(--iw-green); transform: translateY(-2px); }
.pd-feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(22,235,135,.12); color: var(--iw-green);
  display: grid; place-items: center;
}
.pd-feat-icon .material-symbols-outlined { font-size: 24px; }
.pd-feat h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.pd-feat p { font-size: 14px; line-height: 1.6; color: var(--iw-fg-muted, #9aa0a6); }

/* Numbered benefits */
.pd-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; }
.pd-benefit { padding: 4px 4px 4px 0; display: flex; gap: 18px; align-items: flex-start; }
.pd-benefit .pd-num {
  font-family: var(--iw-font-mono);
  font-size: 12px; color: var(--iw-green);
  letter-spacing: 0.08em; padding-top: 4px; min-width: 28px;
}
.pd-benefit .pd-bbody h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.pd-benefit .pd-bbody p { font-size: 14px; color: var(--iw-fg-muted, #9aa0a6); line-height: 1.55; }

/* Alternating image/text splits */
.pd-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}
.pd-split:last-child { margin-bottom: 0; }
.pd-split-text h3 {
  font-family: var(--iw-font-display);
  font-size: 48px; line-height: 0.95;
  margin-bottom: 18px;
  color: var(--iw-green);
}
.pd-split-text p { font-size: 16px; line-height: 1.6; color: var(--iw-fg-muted, #9aa0a6); }
.pd-split-img {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--iw-gray-900);
  border: 1px solid var(--iw-gray-800);
}
.pd-split-img.flip { order: -1; }
.pd-split-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-split-img .ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: var(--iw-gray-600); font-family: var(--iw-font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* Related products strip */
.pd-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pd-rel {
  background: var(--iw-gray-800);
  border: 1px solid var(--iw-gray-700);
  border-radius: 18px;
  overflow: hidden;
  transition: all .2s var(--iw-ease);
  cursor: pointer;
  color: inherit;
}
.pd-rel:hover { border-color: var(--iw-green); transform: translateY(-2px); }
.pd-rel-img { aspect-ratio: 16/9; overflow: hidden; background: var(--iw-gray-900); }
.pd-rel-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-rel-body { padding: 20px 22px 24px; }
.pd-rel h4 { font-family: var(--iw-font-sans); font-weight: 600; font-size: 20px; line-height: 1.2; letter-spacing: -0.005em; }
.pd-rel .tag { font-size: 12px; color: var(--iw-green); font-weight: 600; margin-top: 6px; }

/* CTA override variant (per-product) shares classes with the global .cta;
   add a dedicated eyebrow class for the deep-green label inside the green band */
.cta .cta-eyebrow { color: var(--iw-green-deep, #007a3d); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

@media (max-width: 1100px) {
  .pd-hero h1 { font-size: 96px; }
  .pd-sec-head h2 { font-size: 48px; }
  .pd-features, .pd-related { grid-template-columns: 1fr 1fr; }
  .pd-benefits { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .pd-hero h1 { font-size: 64px; }
  .pd-quote q { font-size: 36px; }
  .pd-sec-head { flex-direction: column; align-items: flex-start; }
  .pd-sec-head h2 { font-size: 36px; }
  .pd-features, .pd-related { grid-template-columns: 1fr; }
  .pd-split { grid-template-columns: 1fr; gap: 28px; }
  .pd-split-img.flip { order: 0; }
}

/* ---------- Stub / 404 ---------- */
.stub {
  padding: 140px 0;
  text-align: center;
}
.stub h1 {
  font-family: var(--iw-font-display);
  font-size: 96px;
  line-height: 0.95;
}
.stub p { color: var(--iw-fg-muted, #9aa0a6); margin-top: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero h1 { font-size: 110px; }
  .page-head h1 { font-size: 88px; }
  .detail-hero h1 { font-size: 80px; }
}
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .hero { padding: 70px 0 60px; }
  .hero h1 { font-size: 64px; }
  .page-head h1 { font-size: 60px; }
  .detail-hero h1 { font-size: 56px; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .footer { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; padding: 40px 28px; }
  .cta h2 { font-size: 56px; }
  .cta-actions { align-items: flex-start; }
  .row.split { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
