:root {
  --black: #050706;
  --panel: #0c100e;
  --panel-2: #111713;
  --green: #00f36b;
  --green-soft: #a8ffc9;
  --white: #f6f8f7;
  --muted: #a8b0ab;
  --line: rgba(255, 255, 255, 0.13);
  --radius: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.dialog-open {
  position: fixed;
  inset-inline: 0;
  width: 100%;
  overflow: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 72% 15%, rgba(0, 243, 107, .06), transparent 28%);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; transform: translateY(-150%); padding: 12px 18px; background: var(--green); color: #001b0c; z-index: 100; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 50;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(5, 7, 6, .88);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { width: 176px; height: 96px; display: flex; align-items: center; }
.brand img { width: 160px; height: auto; max-height: 88px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 34px; color: #cbd1cd; font-size: .92rem; font-weight: 650; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--green); }
.menu-button { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--white); }

.hero {
  position: relative;
  min-height: 720px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 84px 24px 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
  align-items: center;
  gap: 64px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  width: 760px;
  height: 760px;
  right: -210px;
  top: -160px;
  opacity: .08;
  background-image: linear-gradient(var(--green) 1px, transparent 1px), linear-gradient(90deg, var(--green) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: rotate(-12deg);
  mask-image: radial-gradient(circle, black, transparent 68%);
}
.hero-copy { position: relative; z-index: 2; min-width: 0; }
.eyebrow { margin: 0 0 18px; color: var(--green); font-size: .78rem; line-height: 1.2; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 24px; height: 2px; background: var(--green); }
h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -.045em; }
h1 { max-width: 690px; font-size: clamp(4rem, 5vw, 5.75rem); font-weight: 850; }
.hero-copy > p { max-width: 650px; margin: 28px 0 0; color: #c7cec9; font-size: clamp(1.06rem, 1.5vw, 1.24rem); }
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border: 1px solid transparent; border-radius: 4px; padding: 0 24px; cursor: pointer; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #00190b; box-shadow: 0 0 36px rgba(0,243,107,.12); }
.button-primary:hover { background: #23ff83; }
.button-ghost { border-color: var(--line); color: var(--white); background: rgba(255,255,255,.025); }
.button-ghost:hover { border-color: rgba(0,243,107,.55); }
.trust-row { display: flex; list-style: none; gap: 24px; padding: 0; margin: 34px 0 0; color: var(--muted); font-size: .83rem; }
.trust-row span { color: var(--green); margin-right: 4px; }

.hero-product { position: relative; width: 100%; min-width: 0; min-height: 520px; display: grid; place-items: center; perspective: 1000px; }
.product-orbit { position: absolute; border: 1px solid rgba(0,243,107,.18); border-radius: 50%; }
.orbit-one { width: 480px; height: 480px; }
.orbit-two { width: 350px; height: 350px; border-style: dashed; animation: spin 28s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.workbook { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; box-shadow: 0 34px 65px rgba(0,0,0,.65); }
.workbook-front { width: 330px; min-height: 395px; padding: 26px; background: linear-gradient(145deg, #18231c, #090c0a 78%); transform: rotateY(-7deg) rotateX(4deg); z-index: 3; }
.workbook-back { width: 260px; height: 330px; top: 82px; display: flex; align-items: flex-end; padding: 28px; color: rgba(255,255,255,.5); letter-spacing: .18em; font-size: .74rem; font-weight: 800; }
.workbook-life { left: 2px; background: #0b1810; transform: rotate(-10deg); }
.workbook-fitness { right: 0; background: #111713; transform: rotate(10deg); }
.sheet-topbar { display: flex; gap: 5px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.sheet-topbar i { width: 6px; height: 6px; border-radius: 50%; background: #526057; }
.sheet-topbar i:first-child { background: var(--green); }
.sheet-title { margin-top: 25px; color: var(--green); font-size: .68rem; font-weight: 850; letter-spacing: .14em; }
.sheet-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 18px; }
.sheet-stats b { height: 55px; border: 1px solid var(--line); background: linear-gradient(150deg, rgba(0,243,107,.15), transparent); }
.sheet-chart { height: 145px; margin-top: 18px; display: flex; align-items: flex-end; gap: 12px; padding: 16px; border: 1px solid var(--line); }
.sheet-chart span { flex: 1; background: var(--green); opacity: .85; }
.sheet-chart span:nth-child(1) { height: 35%; } .sheet-chart span:nth-child(2) { height: 62%; } .sheet-chart span:nth-child(3) { height: 48%; } .sheet-chart span:nth-child(4) { height: 85%; } .sheet-chart span:nth-child(5) { height: 70%; }
.sheet-lines { margin-top: 19px; display: grid; gap: 9px; }
.sheet-lines i { height: 6px; width: 100%; background: rgba(255,255,255,.1); }
.sheet-lines i:nth-child(2) { width: 76%; } .sheet-lines i:nth-child(3) { width: 88%; } .sheet-lines i:nth-child(4) { width: 54%; }
.hero-badge { position: absolute; z-index: 5; right: 8%; bottom: 8%; width: 112px; height: 112px; border-radius: 50%; background: var(--green); color: #00160a; display: flex; align-items: center; justify-content: center; gap: 7px; transform: rotate(-7deg); box-shadow: 0 14px 35px rgba(0,0,0,.35); }
.hero-badge strong { font-size: 2.3rem; line-height: 1; letter-spacing: -.07em; }
.hero-badge span { font-size: .62rem; line-height: 1.1; font-weight: 900; letter-spacing: .08em; }

.strip { min-height: 70px; display: flex; align-items: center; justify-content: center; gap: clamp(24px, 7vw, 100px); padding: 18px 24px; color: #b9c1bc; background: var(--panel); border-block: 1px solid var(--line); font-size: clamp(.76rem, 1.2vw, .94rem); font-weight: 850; letter-spacing: .12em; }
.strip span:nth-child(2) { color: var(--green); }
.section { max-width: var(--max); margin: 0 auto; padding: 116px 24px; }
[hidden] { display: none !important; }

.range-selector { padding-bottom: 72px; }
.bundle-choice { max-width: var(--max); margin: 0 auto; padding: 72px 24px 12px; }
.bundle-choice-copy { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: end; }
.bundle-choice-copy .eyebrow { grid-column: 1 / -1; margin-bottom: -20px; }
.bundle-choice-copy h2 { max-width: 860px; font-size: clamp(2.5rem, 4.6vw, 4.8rem); }
.bundle-choice-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 16px; margin-top: 36px; }
.bundle-choice-card { min-height: 225px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 22px; color: var(--white); background: linear-gradient(145deg,#111713,#080b09); text-decoration: none; transition: transform .22s ease,border-color .22s ease; }
.bundle-choice-card:hover,.bundle-choice-card:focus-visible { transform: translateY(-4px); border-color: var(--green); }
.bundle-choice-card > span { color: var(--green); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.bundle-choice-card strong { margin-top: 20px; font-size: clamp(1.7rem,2.7vw,2.8rem); line-height: 1; letter-spacing: -.04em; }
.bundle-choice-card p { margin: 14px 0 24px; color: var(--muted); }
.bundle-choice-card b { margin-top: auto; display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); color: var(--green); font-size: .84rem; text-transform: uppercase; letter-spacing: .07em; }
.bundle-choice-card i { font-style: normal; }
.bundle-choice-featured { border-color: rgba(0,243,107,.55); background: radial-gradient(circle at 100% 0,#17442a 0,transparent 48%),#07110a; box-shadow: 0 22px 70px rgba(0,243,107,.08); }
.range-heading { max-width: 920px; margin-bottom: 46px; }
.range-heading h2 { font-size: clamp(2.7rem, 5vw, 5.1rem); }
.range-heading > p:not(.eyebrow) { max-width: 760px; margin: 24px 0 0; color: var(--muted); font-size: 1.08rem; }
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.range-card { min-height: 390px; padding: 28px; display: grid; grid-template-columns: 1fr auto; align-content: start; text-align: left; color: var(--white); border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(155deg, #111713, #080b09); cursor: pointer; transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.range-card:hover, .range-card:focus-visible, .range-card.active { transform: translateY(-5px); border-color: rgba(0,243,107,.65); background: linear-gradient(155deg, #102619, #080c09); }
.range-card-premium { background: radial-gradient(circle at 100% 0, #17442a 0, transparent 48%), #07110a; }
.range-number, .range-status { color: var(--green); font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.range-status { justify-self: end; padding: 4px 8px; border: 1px solid rgba(0,243,107,.25); }
.range-visual { grid-column: 1 / -1; width: 100%; aspect-ratio: 16 / 9; height: auto; margin-top: 26px; display: block; position: relative; overflow: hidden; border: 1px solid rgba(0,243,107,.34); border-radius: 15px; background: radial-gradient(circle at center, rgba(0,243,107,.09), #020604 72%); box-shadow: 0 18px 35px rgba(0,0,0,.28); }
.range-visual img { position: absolute; inset: 0; width: 100% !important; max-width: none; height: 100% !important; display: block; object-fit: contain; object-position: center; transition: filter .35s ease; }
.range-card:hover .range-visual img, .range-card:focus-visible .range-visual img { filter: brightness(1.08); }
.range-card strong { grid-column: 1 / -1; align-self: end; margin-top: 28px; font-size: clamp(1.8rem, 2.5vw, 2.65rem); line-height: 1; letter-spacing: -.045em; }
.range-card p { grid-column: 1 / -1; color: #aeb8b1; }
.range-card b { grid-column: 1 / -1; align-self: end; display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--green); font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; }
.range-card i { font-style: normal; font-size: 1.4rem; transition: transform .2s ease; }
.range-card.active i { transform: rotate(180deg); }
.range-content { animation: rangeReveal .35s ease both; }
@keyframes rangeReveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.section-heading.compact { grid-template-columns: 1fr; }
.section-heading h2, .complete-copy h2, .pro-intro h2, .how-section h2, .closing-section h2 { max-width: 780px; font-size: clamp(2.55rem, 4.7vw, 4.8rem); }
.section-heading > p { color: var(--muted); margin: 0; max-width: 450px; }

.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.product-card { min-height: 590px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); transition: transform .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-7px); border-color: rgba(0,243,107,.42); }
.fitness-card { background: linear-gradient(160deg, rgba(0,243,107,.07), rgba(255,255,255,.012)); }
.business-card { background: linear-gradient(160deg, rgba(255,255,255,.075), rgba(255,255,255,.014)); }
.card-topline { display: flex; justify-content: space-between; color: #7d8981; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-cover { width: 100%; aspect-ratio: 1 / 1; margin: 28px 0 26px; overflow: hidden; border: 1px solid rgba(0,243,107,.3); border-radius: 18px; background: #020604; box-shadow: 0 20px 38px rgba(0,0,0,.3); }
.product-cover img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; transition: transform .35s ease, filter .35s ease; }
.product-card:hover .product-cover img { transform: scale(1.035); filter: brightness(1.08); }
.product-kicker { margin: 0 0 9px; color: var(--green) !important; font-size: .74rem !important; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-card h3 { font-size: 2.4rem; }
.product-card > p { color: var(--muted); font-size: .95rem; }
.product-card ul { list-style: none; padding: 0; margin: 14px 0 32px; display: grid; gap: 9px; color: #d8ded9; font-size: .9rem; }
.product-card li::before { content: "＋"; color: var(--green); margin-right: 8px; }
.card-footer { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }
.card-footer > div { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 18px; }
.card-footer span { color: var(--muted); font-size: .78rem; }
.card-footer strong { font-size: 1.75rem; letter-spacing: -.04em; }
.card-actions { display: grid !important; gap: 10px; margin: 0 !important; }
.card-button { width: 100%; min-height: 48px; display: flex; justify-content: space-between; align-items: center; padding: 0 16px; border: 1px solid var(--line); color: var(--white); background: rgba(255,255,255,.025); cursor: pointer; font-weight: 750; text-align: left; }
.card-button:hover, .card-button:focus-visible { border-color: var(--green); color: var(--green); }
.card-button-buy { border-color: var(--green); background: var(--green); color: #00170b; text-decoration: none; }
.card-button-buy span { color: #00170b; }
.card-button-buy:hover, .card-button-buy:focus-visible { background: var(--green-2); border-color: var(--green-2); color: #00170b; }

.complete-section { max-width: var(--max); min-height: 630px; margin: 0 auto 40px; padding: 72px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; border: 1px solid rgba(0,243,107,.3); border-radius: 32px; background: linear-gradient(130deg, #0c1c12 0%, #07100b 42%, #050706 100%); overflow: hidden; }
.complete-copy > p:not(.eyebrow) { max-width: 530px; color: #bcc5bf; font-size: 1.1rem; }
.complete-price { margin: 32px 0; display: flex; align-items: center; gap: 17px; flex-wrap: wrap; }
.complete-price span { color: var(--muted); }
.complete-price strong { color: var(--green); font-size: 3rem; letter-spacing: -.06em; }
.complete-price em { padding: 5px 10px; border: 1px solid rgba(0,243,107,.35); color: var(--green-soft); font-size: .75rem; font-style: normal; font-weight: 800; }
.complete-copy small { display: block; color: #7e8981; margin-top: 13px; }
.complete-visual { position: relative; min-height: 450px; display: grid; place-items: center; }
.collection-ring { width: 360px; height: 360px; border: 42px solid var(--green); border-bottom-color: transparent; border-radius: 50%; transform: rotate(2deg); box-shadow: 0 0 80px rgba(0,243,107,.11); }
.collection-centre { position: absolute; display: grid; text-align: center; }
.collection-centre strong { font-size: 7rem; line-height: .8; letter-spacing: -.09em; }
.collection-centre span { margin-top: 15px; color: var(--green); font-weight: 900; letter-spacing: .25em; }
.collection-label { position: absolute; min-width: 128px; padding: 13px 15px; display: flex; justify-content: space-between; gap: 18px; color: #aeb8b1; background: #0e1510; border: 1px solid var(--line); font-size: .72rem; font-weight: 850; letter-spacing: .11em; }
.collection-label b { color: var(--green); }
.label-life { top: 42px; left: 5%; } .label-fitness { top: 45%; right: 0; } .label-business { bottom: 40px; left: 7%; }

.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.combo-card { min-width: 0; padding: 28px; display: flex; flex-direction: column; border: 1px solid rgba(0,243,107,.25); border-radius: var(--radius); background: radial-gradient(circle at 100% 0, rgba(0,243,107,.10), transparent 42%), linear-gradient(145deg, #0d1711, #070a08 72%); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.combo-card:hover { transform: translateY(-6px); border-color: rgba(0,243,107,.62); box-shadow: 0 24px 60px rgba(0,0,0,.35), 0 0 42px rgba(0,243,107,.05); }
.combo-topline { display: flex; justify-content: space-between; gap: 14px; color: #849087; font-size: .68rem; font-weight: 850; letter-spacing: .1em; }
.combo-topline b { flex: 0 0 auto; padding: 4px 8px; color: var(--green-soft); border: 1px solid rgba(0,243,107,.3); }
.combo-summary { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; margin-top: 31px; }
.combo-summary h3 { font-size: clamp(2.05rem, 3vw, 2.8rem); }
.combo-summary p { min-height: 90px; margin: 18px 0 0; color: var(--muted); font-size: .92rem; }
.combo-tool-count { width: 112px; height: 112px; display: grid; place-content: center; text-align: center; border: 11px solid var(--green); border-right-color: rgba(0,243,107,.18); border-radius: 50%; box-shadow: 0 0 35px rgba(0,243,107,.09); }
.combo-tool-count strong { font-size: 2.8rem; line-height: .8; letter-spacing: -.07em; }
.combo-tool-count span { margin-top: 9px; color: var(--green); font-size: .61rem; font-weight: 900; letter-spacing: .18em; }
.combo-includes { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 9px; margin: 28px 0 0; }
.combo-includes span { min-width: 0; padding: 11px 12px; display: flex; justify-content: space-between; gap: 8px; color: #aeb8b1; border: 1px solid var(--line); background: rgba(255,255,255,.025); font-size: .66rem; font-weight: 850; letter-spacing: .08em; }
.combo-includes span b { color: var(--green); }
.combo-includes i { color: var(--green); font-style: normal; font-weight: 900; }
.combo-price { display: flex; align-items: baseline; gap: 10px; margin: 28px 0 20px; padding-top: 22px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.combo-price span { width: 100%; color: var(--muted); font-size: .82rem; }
.combo-price strong { color: var(--green); font-size: 2.5rem; line-height: 1; letter-spacing: -.06em; }
.combo-price s { color: #68736b; font-size: .83rem; }
.combo-buy { width: 100%; min-height: 54px; margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 17px; border: 1px solid var(--green); color: #00190b; background: var(--green); cursor: pointer; font-weight: 850; text-align: left; transition: transform .2s ease, background .2s ease; }
.combo-buy:hover, .combo-buy:focus-visible { transform: translateY(-2px); background: #23ff83; }
.combo-card small { margin-top: 12px; color: #778179; font-size: .73rem; }

.haulage-feature { max-width: var(--max); margin: 40px auto 116px; padding: 72px; border: 1px solid rgba(0,243,107,.3); border-radius: 32px; background: linear-gradient(145deg, #07110b, #050706 58%); overflow: hidden; }
.haulage-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 62px; align-items: end; }
.haulage-heading h2 { max-width: 820px; font-size: clamp(2.8rem, 5.2vw, 5.2rem); }
.haulage-heading > p { margin: 0; color: #aeb8b1; font-size: 1.08rem; }
.haulage-showcase { display: grid; grid-template-columns: 1.12fr .88fr; gap: 64px; align-items: center; margin-top: 58px; }
.haulage-preview { position: relative; min-height: 510px; }
.preview-window { position: absolute; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: #e9eee9; box-shadow: 0 30px 80px rgba(0,0,0,.62); }
.preview-window img { width: 100%; height: auto; }
.preview-main { width: 92%; left: 0; top: 0; z-index: 2; transform: rotate(-1.5deg); }
.preview-secondary { width: 75%; right: 0; bottom: 0; z-index: 3; transform: rotate(2.4deg); }
.preview-bar { height: 31px; display: flex; align-items: center; gap: 6px; padding: 0 11px; color: #425047; background: #f7f9f7; border-bottom: 1px solid #cbd4cd; font-size: .62rem; }
.preview-bar span { width: 7px; height: 7px; border-radius: 50%; background: #bac3bd; }
.preview-bar span:first-child { background: var(--green); }
.preview-bar b { margin-left: 5px; font-weight: 750; }
.availability { display: inline-flex; align-items: center; gap: 9px; padding: 7px 11px; border: 1px solid rgba(0,243,107,.28); color: var(--green); font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.haulage-copy h3 { margin-top: 25px; font-size: clamp(2.25rem, 3.4vw, 3.6rem); }
.haulage-copy > p { color: #aeb8b1; }
.haulage-benefits { list-style: none; padding: 0; margin: 28px 0; border-top: 1px solid var(--line); }
.haulage-benefits li { display: grid; grid-template-columns: 78px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.haulage-benefits strong { color: var(--green); }
.haulage-benefits span { color: #c1c9c3; }
.haulage-offer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.haulage-offer > div { display: grid; grid-template-columns: auto auto; align-items: baseline; gap: 0 10px; }
.haulage-offer span { grid-column: 1 / -1; color: var(--muted); font-size: .76rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.haulage-offer strong { color: var(--green); font-size: 2.6rem; letter-spacing: -.06em; }
.haulage-offer s { color: #69736c; }
.haulage-copy .offer-note { margin: 13px 0 0; color: #778179; font-size: .78rem; }
.haulage-sheets { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 58px; border: 1px solid var(--line); background: var(--line); }
.haulage-sheets div { min-height: 76px; padding: 14px; display: grid; align-content: center; gap: 3px; background: #0c110e; }
.haulage-sheets b { color: var(--green); font-size: .66rem; letter-spacing: .08em; }
.haulage-sheets span { color: #d3dad5; font-size: .8rem; font-weight: 700; }

.pro-section { padding: 96px max(24px, calc((100vw - var(--max)) / 2)) 116px; background: linear-gradient(180deg, #09100c 0%, #050706 100%); color: var(--white); border-block: 1px solid var(--line); }
.pro-intro { display: grid; grid-template-columns: 1fr .6fr; gap: 64px; align-items: end; }
.pro-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -38px; }
.pro-intro > p:not(.eyebrow) { color: #aeb8b1; font-size: 1.05rem; }
.pro-banner { margin-top: 52px; overflow: hidden; border: 1px solid #9aa79f; border-radius: 24px; background: #050706; box-shadow: 0 28px 70px rgba(4,18,10,.18); }
.pro-banner img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.toolkit-pitch, .platform-pitch { margin-top: 42px; padding: 38px; border: 1px solid rgba(255,255,255,.14); background: linear-gradient(145deg, #101813, #090d0a); border-radius: 22px; }
.toolkit-pitch { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: end; }
.toolkit-pitch span, .platform-pitch > span { color: var(--green); font-size: .74rem; font-weight: 900; letter-spacing: .12em; }
.toolkit-pitch h3, .platform-pitch h3 { margin-top: 18px; font-size: clamp(2rem, 3.5vw, 3.7rem); }
.toolkit-pitch p { margin: 0; color: #aeb8b1; }
.platform-pitch { color: var(--white); border-color: rgba(0,243,107,.35); border-radius: 24px; background: radial-gradient(circle at 90% 0, #154429 0, transparent 40%), #061109; }
.platform-pitch > span { color: var(--green); }
.platform-pitch h3 { max-width: 850px; }
.platform-pitch p { max-width: 920px; color: #b5c0b8; font-size: 1.08rem; }
.platform-pitch ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 34px 0; padding: 1px; list-style: none; background: rgba(255,255,255,.13); }
.platform-pitch li { min-height: 88px; display: flex; align-items: center; padding: 18px; background: #0b1610; color: #d9e1dc; font-weight: 700; }
.platform-pitch li::before { content: "✓"; margin-right: 10px; color: var(--green); }
.platform-pitch > strong { color: var(--green); font-size: clamp(1.3rem, 2.4vw, 2.25rem); }
.pro-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 42px; background: transparent; border: 0; }
.pro-cards article { min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(150deg, #111813, #0a0e0b); display: flex; flex-direction: column; }
.pro-cards article > span { color: #7f8e85; font-size: .72rem; font-weight: 850; letter-spacing: .1em; }
.pro-cards h3 { margin-top: 52px; font-size: 1.85rem; }
.pro-cards p { color: #aeb8b1; }
.pro-cards b { margin-top: auto; color: #008f40; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.pro-cards .pro-live { background: #07120b; color: var(--white); }
.pro-cards .pro-live p { color: #aeb8b1; }
.pro-cards .pro-live > span, .pro-cards .pro-live b { color: var(--green); }
.pro-cards .pro-live a, .pro-cards .pro-live button { width: fit-content; margin-top: 10px; padding: 0; border: 0; color: var(--green); background: transparent; cursor: pointer; font: inherit; font-size: .78rem; font-weight: 850; }
.pro-cards .pro-live button:hover, .pro-cards .pro-live button:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.pro-cards .pro-app-live { min-height: 310px; background: radial-gradient(circle at 100% 0, #143b24 0, transparent 43%), #061109; }
.pro-cards .pro-app-live > span { color: #60ff97; }
.pro-cards .pro-app-live .pro-actions { display: flex; flex-direction: column; align-items: flex-start; margin-top: 7px; }
.pro-cards .pro-app-live .pro-demo-link { display: inline-flex; align-items: center; min-height: 42px; margin-top: 0; padding: 0 15px; border-radius: 7px; background: var(--green); color: #031008; text-decoration: none; box-shadow: 0 10px 30px #00ed7030; }
.pro-cards .pro-app-live .pro-demo-link:hover, .pro-cards .pro-app-live .pro-demo-link:focus-visible { background: #5eff9a; text-decoration: none; transform: translateY(-1px); }
.pro-cards .pro-app-live .pro-actions button { color: #a7b5ac; }
.pro-cards .pro-complete { position: relative; background: linear-gradient(150deg, #111813, #090d0a); }
.pro-cards .pro-complete::after { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: #00a94b; }
.pro-cards .pro-complete button { width: fit-content; margin-top: 10px; padding: 0; border: 0; color: var(--green); background: transparent; cursor: pointer; font: inherit; font-size: .78rem; font-weight: 850; }
.pro-cards .pro-complete button:hover, .pro-cards .pro-complete button:focus-visible { color: #7dffad; text-decoration: underline; text-underline-offset: 4px; }
.pro-cards .pro-on-sale { min-height: 330px; border-color: rgba(0,243,107,.34); }
.pro-cards .pro-card-price { display: flex; align-items: baseline; gap: 10px; margin-top: 13px; }
.pro-cards .pro-card-price strong { color: var(--green); font-size: 1.65rem; letter-spacing: -.04em; }
.pro-cards .pro-card-price span { color: #8f9b93; font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; }
.pro-cards .pro-card-actions { display: flex; align-items: center; gap: 18px; margin-top: 13px; }
.pro-cards .pro-card-actions button { margin: 0; }
.pro-cards .pro-card-actions a { display: inline-flex; align-items: center; min-height: 40px; padding: 0 15px; border-radius: 7px; background: var(--green); color: #031008; font-size: .78rem; font-weight: 900; text-decoration: none; box-shadow: 0 10px 28px #00ed7028; }
.pro-cards .pro-card-actions a:hover, .pro-cards .pro-card-actions a:focus-visible { background: #5eff9a; transform: translateY(-1px); }

.how-section { max-width: var(--max); margin: 0 auto; padding: 116px 24px; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 55px; }
.steps article { padding: 28px 28px 34px; border-top: 1px solid var(--line); }
.steps b { color: var(--green); font-size: .8rem; }
.steps h3 { margin-top: 40px; font-size: 1.55rem; }
.steps p { color: var(--muted); }

.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 1.05rem; font-weight: 750; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--green); font-size: 1.6rem; font-weight: 300; }
details[open] summary::after { content: "−"; }
details p { max-width: 820px; margin: -5px 0 28px; color: var(--muted); }
.closing-section { max-width: var(--max); margin: 20px auto 100px; padding: 60px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid var(--line); background: var(--panel); }

footer { min-height: 320px; padding: 68px max(24px, calc((100vw - var(--max)) / 2)) 32px; display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 24px; border-top: 1px solid var(--line); color: #8d9891; }
.footer-brand { width: 180px; height: 108px; display: flex; align-items: center; }
.footer-brand img { width: 170px; height: auto; max-height: 100px; object-fit: contain; }
footer > p { justify-self: end; max-width: 350px; text-align: right; }
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-links button { border: 0; padding: 0; color: inherit; background: none; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--green); }
footer small { justify-self: end; }

dialog { max-height: calc(100dvh - 32px); overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; color: var(--white); background: #0b100d; border: 1px solid rgba(0,243,107,.35); border-radius: 24px; box-shadow: 0 30px 90px rgba(0,0,0,.78); }
dialog::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(6px); }
.product-dialog { width: min(760px, calc(100% - 28px)); padding: 38px; }
.notice-dialog, .info-dialog { width: min(590px, calc(100% - 28px)); padding: 38px; }
.product-dialog h2, .notice-dialog h2, .info-dialog h2 { padding-right: 40px; font-size: clamp(2.2rem, 5vw, 3.7rem); }
.product-dialog > p:not(.eyebrow), .notice-dialog > p:not(.eyebrow), .info-dialog p { color: var(--muted); }
.dialog-close { position: sticky; z-index: 5; top: 0; margin: 0 0 4px auto; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--white); background: #0b100d; cursor: pointer; font-size: 1.4rem; }
.tool-list { margin: 30px 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); counter-reset: tools; }
.tool-list li { min-height: 66px; padding: 15px; display: flex; gap: 10px; align-items: center; background: #0d130f; color: #dce3de; font-size: .88rem; counter-increment: tools; }
.tool-list li::before { content: counter(tools, decimal-leading-zero); color: var(--green); font-size: .68rem; font-weight: 850; }
.dialog-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); }
.dialog-bottom > div { display: grid; }
.dialog-bottom span { color: var(--muted); font-size: .8rem; }
.dialog-bottom strong { color: var(--green); font-size: 2rem; }
.info-dialog ul { color: var(--muted); padding-left: 20px; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 62px; }
  .hero-product { min-height: 500px; }
  .product-grid, .steps { grid-template-columns: 1fr; }
  .combo-grid { grid-template-columns: 1fr; }
  .combo-summary p { min-height: 0; }
  .range-grid { grid-template-columns: 1fr; }
  .bundle-choice-copy { grid-template-columns: 1fr; }
  .bundle-choice-grid { grid-template-columns: 1fr; }
  .range-card { min-height: 285px; }
  .range-visual { height: auto; margin-top: 24px; }
  .range-card strong { margin-top: 22px; }
  .toolkit-pitch { grid-template-columns: 1fr; gap: 20px; }
  .platform-pitch ul { grid-template-columns: repeat(2, 1fr); }
  .pro-cards { grid-template-columns: repeat(2, 1fr); }
  .product-card { min-height: 520px; }
  .complete-section { margin-inline: 24px; grid-template-columns: 1fr; padding: 50px; }
  .haulage-feature { margin-inline: 24px; padding: 50px; }
  .haulage-heading, .haulage-showcase { grid-template-columns: 1fr; }
  .haulage-heading { gap: 22px; }
  .haulage-showcase { gap: 36px; }
  .haulage-sheets { grid-template-columns: repeat(3, 1fr); }
  .pro-intro { grid-template-columns: 1fr; gap: 20px; }
  .pro-intro .eyebrow { margin-bottom: 0; }
  .pro-banner { margin-top: 38px; }
  .pro-cards article { min-height: 240px; }
}

@media (max-width: 740px) {
  .site-header { height: 88px; padding-inline: 18px; }
  .brand { width: 154px; height: 84px; }
  .brand img { width: 142px; max-height: 80px; }
  .menu-button { display: block; }
  .main-nav { position: absolute; inset: 88px 0 auto; display: none; padding: 18px 24px 24px; flex-direction: column; align-items: stretch; gap: 0; background: rgba(5,7,6,.98); border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .hero { min-height: auto; padding: 60px 20px 62px; gap: 28px; }
  h1 { font-size: clamp(3rem, 14.5vw, 4.4rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; gap: 9px; }
  .pro-cards { grid-template-columns: 1fr; }
  .hero-product { min-height: 390px; transform: scale(.84); margin-inline: -40px; }
  .workbook-front { width: 300px; min-height: 360px; }
  .workbook-back { width: 220px; height: 290px; }
  .orbit-one { width: 410px; height: 410px; }
  .orbit-two { width: 310px; height: 310px; }
  .hero-badge { right: 2%; bottom: -1%; }
  .strip { justify-content: flex-start; overflow: hidden; white-space: nowrap; font-size: .7rem; }
  .strip span:nth-child(3) { display: none; }
  .section, .how-section { padding: 82px 20px; }
  .range-selector { padding-bottom: 54px; }
  .bundle-choice { padding: 58px 20px 0; }
  .bundle-choice-copy .eyebrow { margin-bottom: 0; }
  .bundle-choice-copy h2 { font-size: 2.65rem; }
  .bundle-choice-card { min-height: 205px; padding: 24px; }
  .range-heading h2 { font-size: 2.75rem; }
  .range-grid { gap: 12px; }
  .range-card { min-height: 260px; padding: 22px; }
  .range-visual { height: auto; margin-top: 20px; }
  .range-card strong { margin-top: 20px; font-size: 2rem; }
  .toolkit-pitch, .platform-pitch { padding: 26px 22px; }
  .platform-pitch ul { grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading h2, .complete-copy h2, .pro-intro h2, .how-section h2, .closing-section h2 { font-size: 2.7rem; }
  .product-card { padding: 24px; }
  .product-cover { margin-top: 24px; }
  .complete-section { margin-inline: 14px; padding: 34px 22px; gap: 18px; }
  .haulage-feature { margin: 14px 14px 70px; padding: 34px 22px; }
  .haulage-heading h2 { font-size: 2.7rem; }
  .haulage-showcase { margin-top: 36px; }
  .haulage-preview { min-height: 360px; }
  .preview-main { width: 100%; }
  .preview-secondary { width: 82%; }
  .haulage-offer { align-items: stretch; flex-direction: column; }
  .haulage-offer .button { width: 100%; }
  .haulage-sheets { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
  .complete-visual { min-height: 390px; transform: scale(.86); margin-inline: -35px; }
  .complete-price { align-items: flex-start; flex-direction: column; gap: 5px; }
  .checkout-button { width: 100%; }
  .combo-grid { grid-template-columns: 1fr; }
  .combo-card { padding: 24px; }
  .combo-summary p { min-height: 0; }
  .pro-section { padding: 82px 20px; }
  .pro-banner { margin-top: 30px; border-radius: 15px; }
  .pro-cards article { min-height: 230px; }
  .steps article { padding-inline: 0; }
  .closing-section { margin: 10px 14px 70px; padding: 38px 24px; flex-direction: column; align-items: flex-start; }
  footer { grid-template-columns: 1fr; padding: 54px 22px 30px; }
  footer > p, footer small { justify-self: start; text-align: left; }
  .footer-links { flex-wrap: wrap; }
  .tool-list { grid-template-columns: 1fr; }
  dialog { max-height: calc(100dvh - 116px); margin-top: max(96px, env(safe-area-inset-top)); margin-bottom: 20px; }
  .product-dialog, .notice-dialog, .info-dialog { padding: 22px; }
  .dialog-bottom { align-items: stretch; flex-direction: column; }
}

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