:root {
  --bg: #ffffff;
  --ink: #17171b;
  --muted: #666a73;
  --line: #e7e8ec;
  --soft: #f5f6f8;
  --graphite: #25262d;
  --orange: #ff7a1a;
  --purple: #6d4cff;
  --shadow: 0 24px 70px rgba(26, 28, 38, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, rgba(109, 76, 255, .08), transparent 32rem), var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid rgba(255, 122, 26, .55); outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 20; background: var(--ink); color: #fff; padding: .75rem 1rem; border-radius: 8px; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .9rem;
  padding: .72rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 232, 236, .8);
}
.brand, .footer-brand { display: inline-flex; align-items: center; letter-spacing: 0; }
.brand img { width: 106px; height: auto; object-fit: contain; object-position: center; filter: drop-shadow(0 10px 18px rgba(18, 24, 67, .08)); }
.primary-nav { display: flex; justify-content: center; gap: .05rem; flex-wrap: nowrap; min-width: 0; white-space: nowrap; }
.primary-nav a { color: #454853; font-size: .84rem; padding: .52rem .46rem; border-radius: 8px; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--ink); background: var(--soft); }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: .75rem 1.1rem;
  font-weight: 750;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.header-cta, .btn.primary { color: #fff; background: linear-gradient(135deg, var(--orange), var(--purple)); box-shadow: 0 14px 30px rgba(109, 76, 255, .22); }
.btn.ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.header-cta:hover, .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.menu-toggle { display: none; border: 0; background: #fff; border-radius: 10px; padding: .65rem; box-shadow: inset 0 0 0 1px var(--line); }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px; background: var(--ink); }

main { overflow: hidden; }
.hero, .section, .split, .contact-layout, .legal-page, .cta-band, .founder-teaser {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.page-hero { min-height: 560px; }
.hero h1 { font-size: clamp(2.7rem, 6.6vw, 5.9rem); line-height: .96; margin: .5rem 0 1.2rem; letter-spacing: 0; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
.hero p, .section-head p, .split p, .cta-band p, .legal-page p { color: var(--muted); font-size: 1.08rem; }
.eyebrow { color: var(--purple); text-transform: uppercase; font-weight: 850; font-size: .78rem; letter-spacing: .12em; }
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 1.4rem; }
.hero-media { position: relative; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); background: var(--graphite); }
.hero-media img { width: 100%; min-height: 430px; object-fit: cover; }
.layered::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(23, 23, 27, .32)); }
.float-card { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; width: min(300px, calc(100% - 2rem)); padding: 1rem; border-radius: 16px; background: rgba(255,255,255,.86); backdrop-filter: blur(16px); }
.float-card b, .float-card span { display: block; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 2rem; }
.hero-metrics span { padding: 1rem; background: rgba(255,255,255,.74); border: 1px solid var(--line); border-radius: 16px; color: var(--muted); }
.hero-metrics b { display: block; color: var(--ink); font-size: 1.1rem; }

.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-head { max-width: 780px; margin-bottom: 1.7rem; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; margin: .45rem 0 .8rem; letter-spacing: 0; }
h3 { margin: 0 0 .55rem; line-height: 1.2; font-size: 1.24rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.card, .step, .contact-card, .contact-form, .founder-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  padding: 1.35rem;
  box-shadow: 0 12px 35px rgba(25, 27, 37, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover, .step:hover, .founder-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(109, 76, 255, .25); }
.card p, .step p, .founder-card p { color: var(--muted); margin-bottom: 0; }
.icon-dot { width: 38px; height: 38px; display: inline-block; border-radius: 12px; background: linear-gradient(135deg, rgba(255,122,26,.95), rgba(109,76,255,.95)); margin-bottom: 1rem; }

.split, .founder-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 4rem 0;
}
.split.reverse img { order: -1; }
.split img, .founder-teaser img { border-radius: 28px; box-shadow: var(--shadow); width: 100%; max-height: 470px; object-fit: cover; }
.founder-teaser img { height: clamp(520px, 42vw, 640px); max-height: none; object-position: center top; }
.link { color: var(--purple); font-weight: 850; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem; }
.category { min-height: 86px; display: grid; place-items: center; padding: 1rem; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(135deg, #fff, #f7f7fa); font-weight: 800; text-align: center; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.step b { color: var(--orange); font-size: 1.9rem; }
.cta-band {
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, #25262d, #343145 55%, #4d3479);
  box-shadow: var(--shadow);
}
.cta-band p, .cta-band .eyebrow { color: rgba(255,255,255,.78); }
.cta-band .btn.primary { background: #fff; color: var(--ink); }

.founder-grid, .contact-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.founder-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 16px; margin-bottom: 1rem; }
blockquote { margin: 1rem 0 0; padding-left: 1rem; border-left: 3px solid var(--orange); color: #3b3d45; font-weight: 700; }
.contact-layout { align-items: start; padding: 4rem 0; }
.contact-form { display: grid; gap: 1rem; }
label { display: grid; gap: .35rem; color: #3e424d; font-weight: 750; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: .9rem 1rem; font: inherit; color: var(--ink); background: #fff; }
textarea { resize: vertical; }
.form-success { color: #176241; font-weight: 800; background: #eaf8f0; border-radius: 12px; padding: .9rem; }
.contact-card { position: sticky; top: 7rem; }
.legal-page { max-width: 880px; padding: 4rem 0 6rem; }
.legal-page h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); line-height: 1; }
.legal-page h2 { font-size: 1.55rem; margin-top: 2rem; }

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding: 3.5rem clamp(1rem, 4vw, 3.5rem) 2rem;
  background: #17171b;
  color: #fff;
}
.site-footer h2 { font-size: 1rem; margin: 0 0 .8rem; }
.site-footer a, .footer-cookie { display: block; color: rgba(255,255,255,.72); margin: .4rem 0; }
.footer-cookie { padding: 0; border: 0; background: none; font: inherit; cursor: pointer; }
.footer-brand img { width: 150px; height: auto; object-fit: contain; filter: drop-shadow(0 12px 22px rgba(0,0,0,.24)); }
.site-footer p { color: rgba(255,255,255,.68); }
.footer-bottom { grid-column: 1 / -1; display: flex; gap: 1.5rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.2rem; color: rgba(255,255,255,.7); }

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.cookie-banner.show { display: grid; }
.cookie-banner h2 { font-size: 1.2rem; margin: 0 0 .2rem; }
.cookie-banner p { margin: 0; color: var(--muted); }
.cookie-actions, .modal-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-modal { position: fixed; inset: 0; z-index: 40; background: rgba(23,23,27,.45); padding: 1rem; }
.modal-panel { width: min(540px, 100%); margin: 10vh auto; background: #fff; border-radius: 22px; padding: 1.5rem; box-shadow: var(--shadow); position: relative; }
.modal-close { position: absolute; right: 1rem; top: 1rem; border: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--soft); font-size: 1.5rem; cursor: pointer; }
.check-row { grid-template-columns: auto 1fr; justify-content: start; align-items: center; margin: 1rem 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-block; justify-self: end; }
  .primary-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: .75rem;
  }
  .primary-nav.open { display: grid; grid-template-columns: repeat(2, 1fr); }
  .hero, .split, .founder-teaser, .contact-layout { grid-template-columns: 1fr; min-height: auto; }
  .hero-media img { min-height: 320px; }
  .founder-teaser img { height: 520px; }
  .card-grid, .steps, .founder-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .cookie-banner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand img { width: 96px; }
  .hero { padding-top: 2rem; }
  .hero h1 { font-size: 2.55rem; }
  .hero-metrics, .card-grid, .steps, .founder-grid, .category-grid, .site-footer { grid-template-columns: 1fr; }
  .primary-nav.open { grid-template-columns: 1fr; }
  .cta-band { align-items: stretch; flex-direction: column; }
  .founder-teaser img { height: 430px; }
  .cookie-actions .btn, .modal-actions .btn { width: 100%; }
}
