:root {
  --warm: #f7f3e8;
  --paper: #fffdf7;
  --lime: #c9ed3d;
  --lime-deep: #abd01d;
  --ink: #25272a;
  --muted: #686a6c;
  --line: rgba(37, 39, 42, 0.16);
  --shell: min(1240px, calc(100vw - 48px));
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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: 12px; left: 12px; z-index: 1000; padding: .75rem 1rem; background: var(--lime); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(247,243,232,.92); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: border-color .25s ease; }
.site-header.scrolled { border-color: var(--line); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand img { width: 168px; }
.desktop-nav { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.desktop-nav a { position: relative; font-size: .9rem; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 2px; background: var(--lime-deep); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 1.25rem; }
.language-switch { display: flex; align-items: center; gap: .28rem; font-size: .78rem; font-weight: 700; color: #8a8a86; }
.lang { border: 0; padding: .25rem; color: inherit; background: transparent; cursor: pointer; }
.lang.active { color: var(--ink); }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 2.2rem; padding: .8rem 1.25rem; border: 1px solid transparent; font-weight: 700; font-size: .9rem; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: .65rem 1rem; gap: .8rem; }
.button-dark { color: var(--warm); background: var(--ink); }
.button-dark:hover { background: #0f1011; }
.button-lime { color: var(--ink); background: var(--lime); }
.button-lime:hover { background: #d5f55a; }
.menu-toggle, .mobile-menu { display: none; }

.hero { padding: 5.5rem 0 6rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.eyebrow { margin: 0 0 1.6rem; display: flex; align-items: center; gap: .75rem; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span:first-child { width: 24px; height: 2px; background: var(--lime-deep); }
.hero h1 { max-width: 730px; margin: 0; font-size: clamp(3.2rem, 6.1vw, 6.4rem); line-height: .98; letter-spacing: -.065em; font-weight: 600; }
.hero h1 em { color: var(--lime-deep); font-style: normal; }
.hero-lead { max-width: 650px; margin: 2rem 0 0; color: #55575a; font-size: clamp(1.02rem, 1.4vw, 1.22rem); }
.hero-actions { margin-top: 2.4rem; display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.text-link { display: inline-flex; align-items: center; gap: .9rem; padding-bottom: .2rem; border-bottom: 1px solid currentColor; font-weight: 700; font-size: .9rem; }
.hero-proof { display: flex; gap: .5rem 1.25rem; flex-wrap: wrap; margin-top: 3rem; color: #707174; font-size: .76rem; font-weight: 600; }
.hero-proof span:not(:last-child)::after { content: "•"; margin-left: 1.25rem; color: var(--lime-deep); }
.hero-visual { position: relative; min-height: 620px; }
.hero-visual > img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: 60% center; border-radius: 0 0 0 7rem; }
.hero-visual::before { content: ""; position: absolute; z-index: -1; width: 44%; aspect-ratio: 1; right: -8%; top: -9%; border-radius: 50%; background: var(--lime); }
.floating-card { position: absolute; left: -3rem; bottom: 3rem; min-width: 315px; display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.2rem; background: var(--paper); box-shadow: 0 24px 55px rgba(37,39,42,.16); }
.floating-card div { display: grid; }
.floating-card span { font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; color: #777; }
.floating-card strong { font-size: .88rem; }

.statement { border-block: 1px solid var(--line); }
.statement-row { display: flex; align-items: center; gap: 2.2rem; padding: 2.3rem 0; }
.statement-row p { max-width: 980px; margin: 0; font-size: clamp(1.15rem, 2vw, 1.8rem); font-weight: 500; letter-spacing: -.025em; }
.section { padding: clamp(6rem, 10vw, 10rem) 0; }
.section-head { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 4rem; margin-bottom: 4rem; }
.section-head h2, .split-copy h2, .brand-copy h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.1rem); line-height: 1.04; letter-spacing: -.055em; font-weight: 600; }
.section-head > p { max-width: 500px; margin: 0 0 .5rem; color: var(--muted); font-size: 1.08rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-card { min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; padding: 2rem; border: 1px solid var(--line); background: rgba(255,255,255,.28); }
.feature-card h3 { max-width: 280px; margin: 0 0 1rem; font-size: 1.55rem; line-height: 1.15; }
.feature-card p { margin: 0; color: var(--muted); }
.feature-number { font-size: .8rem; font-weight: 700; }
.feature-dark { color: var(--warm); background: var(--ink); border-color: var(--ink); }
.feature-dark p { color: #c6c3ba; }
.feature-lime { background: var(--lime); border-color: var(--lime); }
.feature-lime p { color: #43452f; }

.image-band { position: relative; min-height: 850px; display: grid; align-items: end; overflow: hidden; color: var(--warm); background: var(--ink); }
.image-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-band-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,19,20,.96) 0%, rgba(18,19,20,.78) 50%, rgba(18,19,20,.15) 100%), linear-gradient(0deg, rgba(18,19,20,.9), transparent 55%); }
.image-band-content { position: relative; z-index: 1; padding-bottom: 5rem; }
.eyebrow-light > span:first-child { background: var(--lime); }
.image-band h2 { max-width: 900px; margin: 0 0 4.5rem; font-size: clamp(3rem, 6vw, 6.3rem); line-height: 1; letter-spacing: -.06em; font-weight: 500; }
.flow-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 0; padding: 0; list-style: none; background: rgba(247,243,232,.25); }
.flow-list li { min-height: 175px; padding: 1.3rem; display: grid; align-content: start; background: rgba(25,26,28,.72); backdrop-filter: blur(14px); }
.flow-list li > span { margin-bottom: 1.5rem; color: var(--lime); font-size: .72rem; }
.flow-list strong { font-size: 1.05rem; }
.flow-list small { margin-top: .35rem; color: #c2c1bb; font-size: .8rem; line-height: 1.5; }

.split-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.split-copy > p:not(.eyebrow) { max-width: 560px; color: var(--muted); font-size: 1.05rem; }
.check-list { margin: 2.2rem 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { position: relative; padding: .9rem 0 .9rem 1.8rem; border-bottom: 1px solid var(--line); font-weight: 600; font-size: .92rem; }
.check-list li::before { content: "↘"; position: absolute; left: 0; color: var(--lime-deep); }
.product-visual { position: relative; margin: 0; }
.product-visual img { width: 100%; min-height: 650px; object-fit: cover; }
.product-visual figcaption { position: absolute; left: 2rem; right: 2rem; bottom: 2rem; display: grid; padding: 1.3rem 1.5rem; color: var(--warm); background: rgba(37,39,42,.88); backdrop-filter: blur(12px); }
.product-visual figcaption span { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--lime); }

.brand-story { padding-top: 2rem; }
.brand-story-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: stretch; }
.brand-art img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.brand-copy { padding: clamp(3rem, 7vw, 7rem); display: flex; flex-direction: column; justify-content: center; background: var(--paper); }
.brand-copy h2 { font-size: clamp(2.8rem, 4.7vw, 4.8rem); }
.brand-copy p:not(.eyebrow) { color: var(--muted); }

.closing-section { padding: 0 0 2rem; }
.closing-card { min-height: 700px; position: relative; display: flex; align-items: end; overflow: hidden; color: var(--warm); }
.closing-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.closing-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,19,20,.92), rgba(18,19,20,.28) 70%), linear-gradient(0deg, rgba(18,19,20,.75), transparent 60%); }
.closing-content { position: relative; z-index: 1; max-width: 780px; padding: clamp(2.5rem, 7vw, 6rem); }
.closing-content h2 { margin: 0 0 2.2rem; font-size: clamp(3rem, 5.3vw, 5.4rem); line-height: 1; letter-spacing: -.055em; font-weight: 500; }

.site-footer { padding: 5rem 0 2rem; color: var(--warm); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 2rem; padding-bottom: 4rem; }
.footer-top img { width: 175px; }
.footer-top p { max-width: 370px; margin: 0; color: #bfbbb1; }
.footer-app { padding-bottom: .35rem; border-bottom: 1px solid var(--lime); font-weight: 700; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.4rem; border-top: 1px solid rgba(247,243,232,.18); color: #aaa79f; font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,.61,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-toggle { width: 42px; height: 42px; display: grid; align-content: center; gap: 5px; padding: 8px; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { height: 2px; background: var(--ink); transition: transform .25s ease; }
  .mobile-menu { position: fixed; inset: 84px 0 auto; min-height: calc(100vh - 84px); padding: 2rem 24px 3rem; background: var(--warm); flex-direction: column; gap: 0; }
  .mobile-menu.open { display: flex; }
  .mobile-menu > a:not(.button) { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.3rem; font-weight: 600; }
  .mobile-menu .button { margin-top: 2rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 560px; margin-left: 4rem; }
  .hero-visual > img { min-height: 560px; }
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-card { min-height: 360px; }
  .split-layout { grid-template-columns: 1fr; }
  .split-copy { max-width: 720px; }
  .brand-story-grid { grid-template-columns: 1fr; }
  .brand-art img { min-height: 520px; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 32px, 1240px); }
  .header-inner { min-height: 74px; }
  .brand img { width: 142px; }
  .desktop-app { display: none; }
  .header-actions { gap: .65rem; }
  .mobile-menu { inset-block-start: 74px; min-height: calc(100vh - 74px); }
  .hero { padding: 3.5rem 0 4rem; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 4.7rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { justify-content: space-between; }
  .text-link { width: max-content; }
  .hero-proof span:not(:last-child)::after { display: none; }
  .hero-proof { flex-direction: column; }
  .hero-visual { min-height: 440px; margin-left: 1rem; }
  .hero-visual > img { min-height: 440px; border-radius: 0 0 0 4rem; }
  .floating-card { left: -1rem; right: 1rem; bottom: 1.5rem; min-width: 0; }
  .statement-row { align-items: flex-start; }
  .statement-row img { width: 38px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 315px; }
  .image-band { min-height: 1100px; }
  .image-band-overlay { background: linear-gradient(90deg, rgba(18,19,20,.94), rgba(18,19,20,.55)), linear-gradient(0deg, rgba(18,19,20,.9), transparent 60%); }
  .image-band-content { padding-block: 4rem; }
  .image-band h2 { margin-bottom: 3rem; }
  .flow-list { grid-template-columns: 1fr 1fr; }
  .flow-list li { min-height: 155px; }
  .product-visual img { min-height: 450px; }
  .product-visual figcaption { left: 1rem; right: 1rem; bottom: 1rem; }
  .brand-art img { min-height: 390px; }
  .brand-copy { padding: 3rem 1.5rem; }
  .closing-card { width: 100%; min-height: 680px; }
  .closing-content { padding: 2rem 1.5rem 3rem; }
  .footer-top { grid-template-columns: 1fr; align-items: start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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

/* Extended company website */
.page-intro{padding-block:6rem 4rem;max-width:1240px}.page-intro h1{font-size:clamp(2.8rem,6.8vw,6rem);line-height:1.04;letter-spacing:-.055em;margin:0;max-width:1050px;font-weight:600}.page-lead{max-width:760px;font-size:1.2rem;color:var(--muted);margin-top:2rem}.wide-photo{width:100%;height:clamp(260px,42vw,540px);object-fit:cover}.process-section{padding-block:3rem 6rem}.status-note{padding:1rem 1.25rem;border-left:3px solid var(--lime-deep);background:#efeddf;font-size:.95rem;max-width:850px}.process-row{display:grid;grid-template-columns:130px minmax(0,780px);gap:3rem;padding:3.5rem 0;border-bottom:1px solid var(--line)}.step-index{font-size:3.5rem;letter-spacing:-.05em;color:#676a51}.process-row h2,.editorial-grid h2,.faq-section h2,.values-grid h2,.next-page h2{font-size:clamp(2rem,3.3vw,3.4rem);line-height:1.15;letter-spacing:-.04em;margin:0 0 1.4rem}.process-row p{max-width:740px;color:var(--muted)}.process-row .step-result{font-weight:600;color:var(--ink);margin-top:1.8rem}.faq-section{background:var(--paper)}.narrow{max-width:900px}.faq-section details{border-bottom:1px solid var(--line);padding:1.4rem 0}.faq-section summary{font-size:1.1rem;font-weight:600;cursor:pointer}.faq-section details p{color:var(--muted);max-width:750px}.editorial-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem}.editorial-grid p{color:var(--muted);margin-top:0}.vision-panel{padding:6rem 0;background:var(--ink);color:var(--warm)}.vision-panel h2{font-size:clamp(2.5rem,5.5vw,5.3rem);letter-spacing:-.05em;line-height:1.1;max-width:1050px;margin:0 0 2rem}.vision-panel p:not(.eyebrow){max-width:760px;color:#ccc9c0;font-size:1.15rem}.values-grid{margin-top:2.5rem}.roadmap-section{padding-bottom:3rem}.roadmap-section h3{margin-top:2rem}.roadmap-section h3:first-child{margin-top:0}.next-page{border-top:1px solid var(--line);display:flex;align-items:center;justify-content:space-between;gap:3rem}.next-page h2{max-width:720px}.footer-nav{display:flex;gap:2rem;flex-wrap:wrap;padding-bottom:2rem}.footer-nav a{font-size:.9rem}a[aria-current="page"]{text-decoration:underline;text-decoration-color:var(--lime-deep);text-underline-offset:7px}.brand img,.footer-top img{height:auto}.hero-grid>*{min-width:0}h1,h2,h3{overflow-wrap:break-word}.hero h1 em{color:#617911}.reveal{opacity:1;transform:none}.eyebrow{font-size:.8rem}:focus-visible{outline:3px solid #718e10;outline-offset:5px}
@media(max-width:720px){.page-intro{padding-block:3rem}.page-lead{font-size:1.05rem}.process-row{grid-template-columns:1fr;gap:1rem;padding:2.5rem 0}.step-index{font-size:2rem}.editorial-grid{grid-template-columns:1fr;gap:1.5rem}.vision-panel{padding:4rem 0}.next-page{align-items:flex-start;flex-direction:column;gap:1rem}.footer-nav{gap:1rem}.wide-photo{height:300px}}
