:root {
  --green-deep: #102f1d;
  --green-dark: #18351f;
  --green: #2f5435;
  --green-mid: #4d6d50;
  --green-soft: #759173;
  --sage: #a8b6a1;
  --sage-light: #dfe6d9;
  --lime: #93c756;
  --cream: #f4f1e8;
  --cream-light: #faf8f3;
  --white: #ffffff;
  --text: #24211d;
  --muted: #6e7068;
  --border: #dedbd2;
  --border-green: #cbd5c6;
  --shadow-sm: 0 8px 24px rgba(24, 53, 31, 0.08);
  --shadow-md: 0 18px 50px rgba(18, 44, 25, 0.14);
  --shadow-lg: 0 32px 90px rgba(3, 18, 8, 0.34);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --container: 1280px;
  --section-space: clamp(5.5rem, 9vw, 9rem);
  --font: "Manrope", "Avenir Next", Avenir, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; color: var(--text); background: var(--cream-light); font-family: var(--font); font-size: 1rem; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, blockquote { margin-top: 0; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }
::selection { background: var(--lime); color: var(--green-deep); }

.skip-link { position: fixed; z-index: 1000; left: 1rem; top: 1rem; transform: translateY(-160%); padding: .8rem 1rem; border-radius: var(--radius-pill); color: var(--green-deep); background: var(--white); box-shadow: var(--shadow-md); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 3rem), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-space); position: relative; }
.section-light { background: var(--cream-light); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--green-deep); color: var(--white); }
.section-heading { max-width: 850px; margin-bottom: clamp(2.7rem, 5vw, 4.8rem); }
.section-heading-wide { max-width: 1000px; }
.section-heading h2, .final-cta h2 { max-width: 950px; margin-bottom: 1.25rem; font-size: clamp(2.4rem, 5vw, 5.25rem); line-height: .98; letter-spacing: -.055em; font-weight: 800; text-wrap: balance; }
.section-heading h2 span, .final-cta h2 span { color: var(--green-soft); }
.section-heading > p:last-child { max-width: 790px; margin-bottom: 0; color: var(--muted); font-size: clamp(1rem, 1.45vw, 1.18rem); line-height: 1.72; }
.eyebrow { margin-bottom: 1rem; color: var(--green); font-size: .76rem; line-height: 1; letter-spacing: .18em; font-weight: 800; }
.eyebrow-light { color: #c9ddb9; }
.mini-heading { color: var(--green); font-size: .75rem; letter-spacing: .14em; font-weight: 800; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; color: var(--white); transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease; }
.site-header.is-scrolled { background: rgba(16, 47, 29, .92); box-shadow: 0 1px 0 rgba(255,255,255,.11); backdrop-filter: blur(18px); }
.header-inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { flex: 0 0 auto; width: 122px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(.85rem, 1.5vw, 1.5rem); margin-left: auto; }
.desktop-nav a { position: relative; color: rgba(255,255,255,.75); font-size: .79rem; font-weight: 700; white-space: nowrap; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; height: 2px; inset: auto 50% -.55rem; background: var(--lime); transition: inset .25s var(--ease); }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { inset-inline: 0; }
.header-actions { display: flex; align-items: center; gap: .8rem; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 20px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 99; inset: 80px 0 0; background: var(--green-deep); overflow: auto; }
.mobile-menu[hidden] { display: none; }
.mobile-menu .container { display: grid; gap: .25rem; padding-block: 1.5rem 3rem; }
.mobile-menu a:not(.button) { padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 1.2rem; font-weight: 700; }
.mobile-menu .button { margin-top: 1.25rem; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: .6rem; padding: .8rem 1.25rem; border: 1px solid transparent; border-radius: var(--radius-pill); font-size: .9rem; font-weight: 800; line-height: 1.2; text-align: center; transition: transform .25s var(--ease), box-shadow .25s ease, background-color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: .65rem 1rem; font-size: .77rem; }
.button-light { color: var(--green-deep); background: var(--white); }
.button-primary, .button-accent { color: var(--green-deep); background: var(--lime); box-shadow: 0 10px 28px rgba(147, 199, 86, .18); }
.button-primary:hover, .button-accent:hover { background: #a4d666; box-shadow: 0 14px 34px rgba(147, 199, 86, .28); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.04); }
.button-outline-light:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.62); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.hero { min-height: 100svh; padding: clamp(8.7rem, 12vw, 11rem) 0 2rem; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 82% 42%, rgba(112, 152, 94, .25), transparent 30%), radial-gradient(circle at 10% 95%, rgba(255,255,255,.06), transparent 28%); }
.hero-grid { min-height: calc(100svh - 13rem); display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, .76fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); position: relative; z-index: 1; }
.hero-copy { padding-bottom: 2rem; }
.hero h1 { margin-bottom: 1.5rem; font-size: clamp(3.5rem, 6.7vw, 7.3rem); line-height: .9; letter-spacing: -.065em; font-weight: 800; text-wrap: balance; }
.hero h1 span { color: var(--lime); }
.hero-lead { max-width: 730px; margin-bottom: 1rem; color: var(--white); font-size: clamp(1.13rem, 1.8vw, 1.45rem); line-height: 1.55; }
.hero-support { max-width: 700px; color: rgba(255,255,255,.67); }
.pill-list { display: flex; flex-wrap: wrap; gap: .55rem; }
.pill-list span { display: inline-flex; align-items: center; min-height: 34px; padding: .48rem .85rem; border: 1px solid var(--border); border-radius: var(--radius-pill); color: var(--green-dark); background: #eeece4; font-size: .75rem; line-height: 1.2; font-weight: 700; }
.pill-list-dark span { border-color: rgba(255,255,255,.17); color: rgba(255,255,255,.82); background: rgba(255,255,255,.07); }
.hero .pill-list { margin-top: 1.75rem; }
.hero-visual { min-height: 650px; display: grid; place-items: center; position: relative; }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.hero-orbit-one { width: 620px; aspect-ratio: 1; }
.hero-orbit-two { width: 480px; aspect-ratio: 1; }
.hero-graphic { width: min(100%, 520px); position: relative; z-index: 1; transition: transform .35s var(--ease); filter: drop-shadow(0 32px 50px rgba(3,18,8,.28)); }
.hero-graphic:hover { transform: translateY(-5px) scale(1.01); }
.hero-graphic img { width: 100%; height: auto; }
.device-frame { display: block; padding: 0; border: 0; background: var(--white); overflow: hidden; box-shadow: var(--shadow-lg); }
.device-tablet { width: min(100%, 440px); padding: 13px; border-radius: 34px; transform: perspective(1200px) rotateY(-5deg) rotateX(1deg); transition: transform .35s var(--ease); }
.device-tablet:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(0) translateY(-4px); }
.device-tablet img { width: 100%; aspect-ratio: .806; object-fit: cover; object-position: top; border-radius: 23px; }
.device-camera { position: absolute; top: 7px; left: 50%; width: 5px; height: 5px; border-radius: 50%; background: #9c9c9c; transform: translateX(-50%); }
.hero-proof { position: absolute; right: -1rem; bottom: 4rem; display: grid; gap: .1rem; padding: .9rem 1.1rem; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); background: rgba(24, 53, 31, .86); box-shadow: var(--shadow-md); backdrop-filter: blur(14px); }
.hero-proof span { color: #bad09f; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; }
.hero-proof strong { color: var(--white); font-size: .78rem; }
.hero-rail { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.65); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.hero-rail strong { color: var(--white); }

.card-grid { display: grid; gap: 1rem; }
.four-up { grid-template-columns: repeat(4, 1fr); }
.three-up { grid-template-columns: repeat(3, 1fr); }
.info-card, .value-card { min-height: 190px; padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.card-index { display: inline-block; margin-bottom: 2.6rem; color: var(--green-soft); font-size: .7rem; letter-spacing: .14em; font-weight: 800; }
.info-card h3, .value-card h3 { margin-bottom: .45rem; font-size: 1.12rem; letter-spacing: -.02em; }
.info-card p, .value-card p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }
.process-panel { margin-bottom: 1rem; padding: clamp(1.4rem, 3vw, 2.5rem); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.process-label { margin-bottom: 1.25rem; color: var(--muted); font-size: .78rem; font-weight: 700; }
.process-flow { display: flex; align-items: center; gap: .55rem; }
.process-flow span, .wanted-row strong { display: inline-flex; justify-content: center; align-items: center; min-height: 42px; padding: .6rem 1rem; border-radius: var(--radius-pill); background: var(--cream); font-size: .78rem; font-weight: 700; white-space: nowrap; }
.process-flow span:first-child { background: var(--sage-light); }
.process-flow i, .wanted-row i { color: var(--sage); font-style: normal; }
.wanted-row { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; margin-top: 1.3rem; padding-top: 1.3rem; border-top: 1px solid var(--border); font-size: .78rem; }
.wanted-row span { color: var(--muted); }
.wanted-row strong { color: var(--white); background: var(--green); }
.statement-banner { margin-top: 1rem; padding: 1.15rem 1.5rem; border-radius: var(--radius-sm); color: var(--white); background: var(--green); font-size: clamp(.95rem, 1.4vw, 1.12rem); font-weight: 800; text-align: center; }

.personalisation-map { min-height: 620px; position: relative; display: grid; place-items: center; max-width: 1120px; margin: 0 auto 2rem; border-radius: 50%; background: radial-gradient(circle, rgba(168,182,161,.28), transparent 30%), radial-gradient(circle at center, transparent 0 38%, rgba(168,182,161,.2) 38.3% 38.5%, transparent 38.8%); }
.personalisation-map::before, .personalisation-map::after { content: ""; position: absolute; inset: 50% 8%; height: 1px; background: var(--border-green); z-index: 0; }
.personalisation-map::after { transform: rotate(90deg); }
.profile-card { width: 250px; aspect-ratio: 1; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; border-radius: 50%; color: var(--white); background: var(--green-dark); box-shadow: 0 25px 70px rgba(24,53,31,.25); text-align: center; }
.profile-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--lime); font-weight: 800; }
.profile-card p { margin-bottom: .25rem; font-size: 1.25rem; font-weight: 800; }
.profile-card strong { max-width: 150px; color: rgba(255,255,255,.65); font-size: .76rem; }
.capability-card { width: 170px; min-height: 88px; position: absolute; z-index: 1; display: grid; place-items: center; padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); color: var(--green-dark); font-size: .85rem; font-weight: 800; text-align: center; }
.cap-1 { left: 3%; top: 15%; }.cap-2 { left: 25%; top: 2%; }.cap-3 { right: 25%; top: 2%; }.cap-4 { right: 3%; top: 15%; }
.cap-5 { left: 3%; bottom: 15%; }.cap-6 { left: 25%; bottom: 2%; }.cap-7 { right: 25%; bottom: 2%; }.cap-8 { right: 3%; bottom: 15%; }
.personalised-by { display: flex; align-items: center; gap: 1.2rem; padding: 1.25rem 0; border-block: 1px solid var(--border); }
.personalised-by > p { flex: 0 0 auto; margin: 0; color: var(--green); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; }
.editorial-quote { max-width: 980px; margin: 3rem auto 0; padding: 0 0 0 2rem; border-left: 4px solid var(--lime); font-size: clamp(1.45rem, 2.7vw, 2.5rem); line-height: 1.25; letter-spacing: -.035em; font-weight: 700; }

.experience-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 1rem; }
.experience-card { grid-column: span 2; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s ease; }
.experience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.experience-card .screenshot-frame { aspect-ratio: 1 / .88; }
.experience-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.experience-card > div { min-height: 190px; display: flex; flex-direction: column; padding: 1.25rem; }
.experience-card h3 { margin-bottom: .55rem; font-size: 1.35rem; }
.experience-card p:last-child { margin-bottom: 0; color: var(--muted); font-size: .85rem; }
.card-kicker { margin-bottom: auto; color: var(--green-soft); font-size: .65rem; letter-spacing: .14em; font-weight: 800; }
.screenshot-frame { display: block; }

.section-assistant { color: var(--white); background: #1b3523; overflow: hidden; }
.section-assistant::before { content: ""; position: absolute; width: 700px; height: 700px; right: -280px; top: -200px; border-radius: 50%; background: rgba(147,199,86,.08); }
.section-assistant .section-heading h2 span { color: var(--lime); }
.section-assistant .section-heading > p:last-child { color: rgba(255,255,255,.65); }
.assistant-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(2rem, 7vw, 7rem); }
.chat-demo { padding: clamp(1.3rem, 3vw, 2.2rem); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: rgba(255,255,255,.05); }
.chat-heading { padding-bottom: 1.2rem; margin-bottom: 1.8rem; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .8rem; font-weight: 800; }
.status-dot { width: 8px; height: 8px; display: inline-block; margin-right: .5rem; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(147,199,86,.12); }
.message { max-width: 83%; margin-bottom: 1rem; padding: 1rem 1.2rem; border-radius: 18px; }
.message small { display: block; margin-bottom: .35rem; font-size: .6rem; letter-spacing: .12em; font-weight: 800; }
.message p { margin-bottom: 0; }
.message-user { margin-left: auto; border-bottom-right-radius: 4px; color: var(--green-dark); background: var(--lime); }
.message-assistant { border-bottom-left-radius: 4px; color: var(--text); background: var(--white); }
.assistant-capabilities { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 2rem; }
.assistant-capabilities span { padding: .75rem; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); color: rgba(255,255,255,.72); font-size: .78rem; }
.assistant-visual { min-height: 600px; display: grid; place-items: center; }
.assistant-graphic { width: min(100%, 600px); position: relative; z-index: 1; filter: drop-shadow(0 30px 48px rgba(3,18,8,.28)); transition: transform .35s var(--ease); }
.assistant-graphic:hover { transform: translateY(-5px) scale(1.01); }
.assistant-graphic img { width: 100%; height: auto; }
.note-card { margin-top: 2.5rem; padding: 1.1rem 1.4rem; border-left: 3px solid var(--lime); color: rgba(255,255,255,.66); background: rgba(255,255,255,.05); }
.note-card strong { color: var(--white); }

.architecture { display: grid; gap: .6rem; }
.architecture-layer { min-height: 140px; display: grid; grid-template-columns: minmax(240px, .6fr) 1.4fr; align-items: center; gap: 2rem; padding: clamp(1.4rem, 3vw, 2rem); border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.architecture-layer p { margin-bottom: .35rem; color: var(--green-soft); font-size: .65rem; letter-spacing: .16em; font-weight: 800; }
.architecture-layer h3 { margin-bottom: 0; font-size: clamp(1.25rem, 2vw, 1.75rem); letter-spacing: -.035em; }
.layer-experience { color: var(--white); border-color: transparent; background: var(--green-dark); box-shadow: var(--shadow-md); }
.layer-experience p { color: var(--lime); }
.layer-integration { background: #e9e7df; }
.flow-arrow { height: 38px; width: 38px; display: grid; place-items: center; margin: -.1rem auto; border-radius: 50%; color: var(--green); background: var(--sage-light); font-weight: 800; }
.architecture-close { margin: 2rem 0 0; font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
.architecture-close strong { color: var(--green); }

.value-card { min-height: 240px; }
.line-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 3.3rem; border: 1px solid var(--border-green); border-radius: 50%; color: var(--green); background: var(--cream-light); font-size: 1.35rem; font-weight: 500; }
.value-card h3 { font-size: 1.3rem; }

.section-poc { color: var(--white); background: #253e2b; }
.section-poc .section-heading h2 span { color: var(--lime); }
.poc-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.poc-device { min-height: 650px; display: grid; place-items: center; }
.poc-content { padding-block: 2rem; }
.persona { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.5rem; margin-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.persona-mark { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: var(--green-deep); background: var(--lime); font-weight: 800; }
.persona p { margin-bottom: .15rem; color: var(--lime); font-size: .6rem; letter-spacing: .15em; font-weight: 800; }
.persona h3 { margin-bottom: 0; font-size: 1.6rem; }
.persona div > span { color: rgba(255,255,255,.6); font-size: .82rem; }
.poc-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.poc-card-grid div { padding: 1rem; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); color: rgba(255,255,255,.8); background: rgba(255,255,255,.05); font-size: .82rem; font-weight: 700; }
.poc-content .mini-heading { margin-top: 2rem; color: var(--lime); }
.poc-pills span { color: var(--white); border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.07); }
.poc-close { margin: 2rem 0 0; color: var(--white); font-size: 1.2rem; font-weight: 700; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; z-index: 0; left: 9%; right: 9%; top: 193px; height: 1px; background: var(--border-green); }
.timeline-step { min-width: 0; position: relative; z-index: 1; }
.timeline-shot { width: 100%; aspect-ratio: 1.12; margin-bottom: 1.5rem; overflow: hidden; border: 8px solid var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.timeline-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.step-number { width: 35px; height: 35px; display: grid; place-items: center; margin-bottom: .9rem; border: 4px solid var(--cream-light); border-radius: 50%; color: var(--white); background: var(--green); font-size: .72rem; font-weight: 800; }
.timeline time { display: block; margin-bottom: .5rem; color: var(--green); font-size: .8rem; font-weight: 800; }
.timeline p { margin: 0; color: var(--muted); font-size: .78rem; }
.workflow-banner { margin-top: 3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.5rem; border-radius: var(--radius-sm); color: var(--white); background: var(--green); }
.workflow-banner div { display: flex; align-items: center; gap: .9rem; font-size: .83rem; font-weight: 800; }
.workflow-banner i { color: var(--lime); font-style: normal; }
.workflow-banner small { color: rgba(255,255,255,.6); }

.demonstrates-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.capability-list { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.capability-list span { min-height: 72px; display: flex; align-items: center; padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); box-shadow: var(--shadow-sm); color: var(--green-dark); font-size: .8rem; font-weight: 700; }
.stats-visual { min-width: 0; display: grid; place-items: center; align-self: center; }
.stats-graphic { width: 100%; transition: transform .35s var(--ease); }
.stats-graphic:hover { transform: translateY(-5px) scale(1.01); }
.stats-graphic img { width: 100%; height: auto; }

.roadmap-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.roadmap-card { min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); }
.roadmap-card p { margin-bottom: auto; color: var(--green-soft); font-size: .68rem; letter-spacing: .16em; font-weight: 800; }
.roadmap-card h3 { margin-bottom: .7rem; font-size: clamp(1.5rem, 2.4vw, 2.2rem); line-height: 1.08; letter-spacing: -.045em; }
.roadmap-card span { color: var(--muted); font-size: .88rem; }
.roadmap-today { color: var(--white); border-color: var(--green-dark); background: var(--green-dark); box-shadow: var(--shadow-md); }
.roadmap-today p { color: var(--lime); }.roadmap-today span { color: rgba(255,255,255,.63); }
.potential { margin-top: 3rem; }
.potential .pill-list { gap: .7rem; }

.section-steps { color: var(--white); background: var(--green-deep); }
.section-steps .section-heading h2 span { color: var(--lime); }
.steps-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .65rem; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps-grid li { min-width: 0; min-height: 260px; display: flex; flex-direction: column; padding: 1.2rem; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.05); }
.step-card-top { display: flex; flex-direction: column; align-items: flex-start; gap: .8rem; margin-bottom: 1rem; }
.step-index { color: var(--lime); font-size: .7rem; letter-spacing: .13em; font-weight: 800; }
.step-icon { width: 52px; height: 52px; flex: 0 0 auto; padding: 11px; border: 1px solid rgba(147,199,86,.32); border-radius: 15px; color: var(--lime); background: rgba(147,199,86,.09); fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.steps-grid h3 { margin-bottom: .45rem; font-size: 1rem; }
.steps-grid p { margin: 0; color: rgba(255,255,255,.58); font-size: .74rem; }

.final-cta { padding-block: clamp(6rem, 10vw, 10rem); text-align: center; position: relative; overflow: hidden; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.final-cta::before { left: -230px; bottom: -260px; }.final-cta::after { right: -180px; top: -260px; }
.final-cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.final-cta h2 { max-width: 1000px; }
.final-cta h2 span { color: var(--lime); }
.final-cta-inner > p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.76); font-size: clamp(1.1rem, 2vw, 1.4rem); }
.final-cta .button-row { justify-content: center; }
.final-cta small { margin-top: 2rem; color: rgba(255,255,255,.43); }

.site-footer { padding: 5rem 0 2rem; color: var(--white); background: #0b2215; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 4rem; padding-bottom: 4rem; }
.footer-brand img { width: 135px; margin-bottom: 1.3rem; }
.footer-brand p, .footer-contact p { max-width: 320px; color: rgba(255,255,255,.5); font-size: .83rem; }
.footer-grid nav { display: grid; align-content: start; gap: .7rem; }
.footer-grid nav a, .footer-contact a { color: rgba(255,255,255,.75); font-size: .83rem; font-weight: 700; }
.footer-grid nav a:hover, .footer-contact a:hover { color: var(--lime); }
.footer-contact { text-align: right; }
.footer-contact p { margin: 1rem 0 0 auto; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.65); font-weight: 700; }

.back-to-top { width: 46px; height: 46px; position: fixed; z-index: 80; right: 1.25rem; bottom: 1.25rem; border: 0; border-radius: 50%; color: var(--white); background: var(--green); box-shadow: var(--shadow-md); cursor: pointer; opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }.reveal-delay-2 { transition-delay: .16s; }.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr .74fr; gap: 3rem; }
  .hero-visual { min-height: 570px; }
  .experience-grid { grid-template-columns: repeat(6, 1fr); }
  .experience-card { grid-column: span 2; }
  .experience-card:nth-child(4), .experience-card:nth-child(5) { grid-column: span 3; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid li:nth-child(n+5) { grid-column: span 1; }
}

@media (max-width: 1024px) {
  :root { --section-space: clamp(4.5rem, 8vw, 7rem); }
  .container { width: min(calc(100% - 2.25rem), var(--container)); }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 650px; }
  .hero-graphic { width: min(100%, 470px); }
  .hero-proof { right: 9%; }
  .process-flow { overflow-x: auto; padding-bottom: .5rem; }
  .four-up { grid-template-columns: repeat(2, 1fr); }
  .personalisation-map { min-height: 570px; }
  .capability-card { width: 150px; }
  .assistant-grid { gap: 3rem; }
  .poc-grid { gap: 3rem; }
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 2rem 1rem; }
  .timeline::before { display: none; }
  .timeline-step:nth-child(n+4) { grid-column: span 1; }
  .demonstrates-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-contact { grid-column: span 2; text-align: left; }
  .footer-contact p { margin-left: 0; }
}

@media (max-width: 767px) {
  .container { width: min(calc(100% - 2rem), var(--container)); }
  .header-inner { min-height: 72px; }
  .mobile-menu { inset-block-start: 72px; }
  .header-actions .button { display: none; }
  .brand { width: 108px; }
  .hero { padding-top: 7.4rem; }
  .hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-visual { min-height: 600px; }
  .hero-graphic { width: min(94%, 410px); }
  .hero-orbit-one { width: 540px; }.hero-orbit-two { width: 390px; }
  .hero-proof { right: 0; bottom: 1rem; }
  .hero-rail { flex-direction: column; align-items: flex-start; }
  .section-heading h2, .final-cta h2 { font-size: clamp(2.45rem, 11vw, 4rem); }
  .four-up, .three-up { grid-template-columns: 1fr; }
  .info-card, .value-card { min-height: auto; }
  .card-index, .line-icon { margin-bottom: 2rem; }
  .process-flow { display: grid; grid-template-columns: 1fr auto; overflow: visible; }
  .process-flow span { justify-content: flex-start; }
  .process-flow i { transform: rotate(90deg); }
  .process-flow i:last-of-type { display: none; }
  .wanted-row { align-items: flex-start; flex-direction: column; }
  .wanted-row i { transform: rotate(90deg); }
  .personalisation-map { min-height: 0; grid-template-columns: 1fr 1fr; gap: .7rem; border-radius: 0; background: none; }
  .personalisation-map::before, .personalisation-map::after { display: none; }
  .profile-card { width: 100%; aspect-ratio: auto; grid-column: span 2; border-radius: var(--radius); }
  .capability-card { width: auto; min-height: 86px; position: static; }
  .personalised-by { flex-direction: column; align-items: flex-start; }
  .experience-grid { display: flex; gap: 1rem; margin-right: -1rem; padding-right: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .experience-grid::-webkit-scrollbar { display: none; }
  .experience-card { flex: 0 0 min(82vw, 330px); scroll-snap-align: start; }
  .assistant-grid { grid-template-columns: 1fr; }
  .assistant-capabilities { grid-template-columns: 1fr; }
  .assistant-visual { min-height: 500px; }
  .assistant-graphic { width: min(100%, 488px); }
  .architecture-layer { grid-template-columns: 1fr; gap: 1.3rem; }
  .architecture-layer .pill-list { gap: .4rem; }
  .poc-grid { grid-template-columns: 1fr; }
  .poc-device { min-height: 570px; order: 2; }
  .poc-content { order: 1; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline-step { display: grid; grid-template-columns: 42px 1fr; column-gap: 1rem; padding: 0 0 2.5rem; }
  .timeline-step::before { content: ""; position: absolute; left: 17px; top: 38px; bottom: 0; width: 1px; background: var(--border-green); }
  .timeline-step:last-child::before { display: none; }
  .timeline-shot { grid-column: 2; margin-bottom: 1rem; aspect-ratio: 1.6; }
  .step-number { grid-column: 1; grid-row: 2 / span 3; }
  .timeline time, .timeline p { grid-column: 2; }
  .workflow-banner { align-items: flex-start; flex-direction: column; }
  .workflow-banner div { flex-wrap: wrap; }
  .capability-list { grid-template-columns: 1fr; }
  .roadmap-cards { grid-template-columns: 1fr; }
  .roadmap-card { min-height: 250px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid li { min-height: 190px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .button-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-visual { min-height: 520px; }
  .hero-proof { width: 190px; }
  .personalisation-map { grid-template-columns: 1fr; }
  .profile-card { grid-column: auto; }
  .poc-card-grid { grid-template-columns: 1fr; }
}

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