@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Inter+Tight:wght@500;600;700&display=swap');

:root {
  --ink: #0a0a0b;
  --ink-2: #141416;
  --paper: #f5f4f0;
  --white: #ffffff;
  --muted: #a7a7ad;
  --muted-dark: #5c5c63;
  --line-dark: rgba(255,255,255,.14);
  --line-light: rgba(10,10,11,.14);
  --blue: #2f63ff;
  --blue-dark: #204ee0;
  --max: 1460px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow: 0 22px 70px rgba(0,0,0,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--blue); color: white; }

.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 9999;
  background: white; color: black; padding: 12px 16px; border-radius: 10px;
}
.skip-link:focus { top: 12px; }

.topbar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--blue);
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.topbar a { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,11,.94);
  color: white;
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 78px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  width: fit-content;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.brand small {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--muted);
}
.nav { display: flex; gap: 34px; align-items: center; }
.nav a {
  position: relative;
  padding: 28px 0;
  font-size: 14px;
  font-weight: 500;
  color: #d8d8dc;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 19px;
  height: 1px;
  background: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: white; }
.header-actions { justify-self: end; display: flex; gap: 12px; align-items: center; }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 20px; height: 1.5px; background: currentColor; content: ""; position: relative;
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { background: white; color: var(--ink); }
.btn-light:hover { background: #e8e8ea; }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: #27272b; }
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-outline-light { color: white; border-color: rgba(255,255,255,.42); }
.btn-outline-light:hover { border-color: white; background: rgba(255,255,255,.07); }
.btn-outline-dark { color: var(--ink); border-color: rgba(10,10,11,.28); }
.btn-outline-dark:hover { border-color: var(--ink); background: rgba(10,10,11,.04); }
.btn svg { width: 16px; height: 16px; }

main { overflow: clip; }
.section { padding: 112px 28px; }
.section-tight { padding-top: 72px; padding-bottom: 72px; }
.container { max-width: var(--max); margin: 0 auto; }
.bg-dark { color: white; background: var(--ink); }
.bg-dark-2 { color: white; background: var(--ink-2); }
.bg-paper { background: var(--paper); }
.bg-white { background: white; }
.bg-blue { color: white; background: var(--blue); }

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.h1, .h2, .h3 {
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .93;
}
.h1 { font-size: clamp(64px, 8.3vw, 136px); }
.h2 { font-size: clamp(50px, 6vw, 94px); }
.h3 { font-size: clamp(32px, 4vw, 58px); line-height: 1; }
.lead {
  max-width: 690px;
  margin: 26px 0 0;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.5;
  letter-spacing: -.025em;
}
.copy { max-width: 700px; font-size: 18px; color: var(--muted-dark); }
.bg-dark .copy, .bg-dark-2 .copy { color: #b9b9bf; }
.actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }

.hero {
  min-height: calc(100svh - 116px);
  background: var(--ink);
  color: white;
  display: grid;
  align-items: stretch;
}
.hero-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 28px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, .82fr);
  gap: 38px;
  align-items: end;
}
.hero-copy { padding: 56px 0 88px; position: relative; z-index: 2; }
.hero-copy .h1 { max-width: 980px; }
.hero-copy .lead { color: #c6c6cb; max-width: 650px; }
.hero-media {
  min-height: 690px;
  align-self: end;
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  isolation: isolate;
  background: #19191c;
}
.hero-media::before {
  content: "";
  position: absolute; inset: -30px;
  background: url("oskar-portrait.webp") center/cover no-repeat;
  filter: blur(28px) saturate(.7) brightness(.4);
  transform: scale(1.14);
  z-index: -2;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.03) 10%, rgba(10,10,11,.18) 62%, rgba(10,10,11,.88) 100%), linear-gradient(90deg, rgba(10,10,11,.4), transparent 35%);
  z-index: 1;
  pointer-events: none;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; filter: saturate(.78) contrast(1.05); }
.hero-media-note {
  position: absolute; left: 28px; right: 28px; bottom: 24px; z-index: 2;
  display: flex; justify-content: space-between; align-items: end; gap: 20px;
  color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
}
.hero-media-note strong { font-family: "Inter Tight"; font-size: 18px; letter-spacing: -.02em; text-transform: none; }

.hero-stats {
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: white;
}
.stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat { min-height: 150px; padding: 28px 0; display: flex; flex-direction: column; justify-content: center; }
.stat + .stat { border-left: 1px solid var(--line-dark); padding-left: 44px; }
.stat strong { font-family: "Inter Tight"; font-size: clamp(38px, 4vw, 64px); letter-spacing: -.05em; line-height: 1; }
.stat span { margin-top: 9px; color: #a9a9af; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }

.display-list { margin-top: 64px; border-top: 1px solid var(--line-light); }
.display-list a, .display-row {
  min-height: 154px;
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) minmax(280px, .8fr) 46px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line-light);
  transition: padding .25s ease, background .25s ease;
}
.display-list a:hover { padding-left: 18px; background: rgba(10,10,11,.025); }
.display-title { font-family: "Inter Tight"; font-size: clamp(42px, 5vw, 78px); letter-spacing: -.055em; line-height: .95; }
.display-desc { max-width: 480px; color: var(--muted-dark); font-size: 16px; }
.arrow-circle {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-light);
}
.arrow-circle svg { width: 17px; height: 17px; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.section-head .h2 { max-width: 1000px; }
.section-head .copy { max-width: 430px; margin: 0; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cards.cards-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  min-height: 460px;
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line-dark);
  background: #111113;
  color: white;
  overflow: hidden;
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  width: 310px; height: 310px;
  border-radius: 50%;
  right: -120px; top: -130px;
  background: radial-gradient(circle, rgba(47,99,255,.72), rgba(47,99,255,0) 68%);
  filter: blur(8px);
}
.card:nth-child(2)::before { background: radial-gradient(circle, rgba(255,255,255,.22), rgba(255,255,255,0) 68%); }
.card:nth-child(3)::before { background: radial-gradient(circle, rgba(123,84,255,.62), rgba(123,84,255,0) 68%); }
.card-top { position: relative; z-index: 1; }
.card-kicker { font-size: 12px; text-transform: uppercase; letter-spacing: .09em; color: #b9b9bf; }
.card h3 { margin: 16px 0 12px; font-family: "Inter Tight"; font-size: clamp(36px, 3vw, 54px); letter-spacing: -.05em; line-height: .95; }
.card p { max-width: 390px; color: #b8b8be; font-size: 16px; }
.card-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: end; gap: 18px; }
.card-tag { font-size: 12px; color: #b2b2b8; text-transform: uppercase; letter-spacing: .08em; }
.card .arrow-circle { border-color: var(--line-dark); }

.feature-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
.feature-copy { padding: clamp(44px, 6vw, 92px); display: flex; flex-direction: column; justify-content: center; }
.feature-copy .h3 { max-width: 620px; }
.feature-side {
  position: relative;
  background: linear-gradient(145deg, var(--blue), #2548ac);
  color: white;
  padding: clamp(44px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature-side::after {
  content: "";
  width: 460px; height: 460px;
  position: absolute; right: -180px; bottom: -200px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255,255,255,.05), 0 0 0 130px rgba(255,255,255,.025);
}
.quote { position: relative; z-index: 1; font-family: "Inter Tight"; font-size: clamp(34px, 4vw, 62px); line-height: 1; letter-spacing: -.05em; }
.feature-meta { position: relative; z-index: 1; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }

.event-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 16px; }
.event-card {
  min-height: 540px;
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #232329, #101012);
  border: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}
.event-card.primary { background: linear-gradient(140deg, #212d66 0%, #5a2d80 50%, #16161a 100%); }
.event-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 25%, rgba(255,255,255,.2), transparent 28%);
  opacity: .55;
}
.event-card > * { position: relative; z-index: 1; }
.event-top { display: flex; justify-content: space-between; gap: 16px; color: #d7d7dc; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.event-card h3 { margin: 0 0 16px; max-width: 780px; font-family: "Inter Tight"; font-size: clamp(44px, 5vw, 82px); line-height: .93; letter-spacing: -.06em; }
.event-card p { max-width: 620px; margin: 0; color: #d0d0d5; font-size: 17px; }
.event-foot { display: flex; justify-content: space-between; align-items: end; gap: 18px; }
.event-meta { display: flex; gap: 34px; flex-wrap: wrap; }
.event-meta div { display: grid; gap: 4px; }
.event-meta small { color: #a9a9af; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.event-meta strong { font-weight: 500; font-size: 15px; }

.page-hero {
  background: var(--ink);
  color: white;
  min-height: 680px;
  padding: 70px 28px 0;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  gap: 42px;
  align-items: end;
}
.page-hero-copy { padding: 50px 0 90px; }
.page-hero-copy .h1 { font-size: clamp(60px, 7.7vw, 124px); max-width: 980px; }
.page-hero-copy .lead { color: #c6c6cc; }
.page-hero-portrait {
  align-self: end;
  height: 570px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  position: relative;
  background: #1a1a1d;
}
.page-hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: grayscale(.2) saturate(.75); }
.page-hero-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,10,11,.7) 100%); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card {
  min-height: 460px;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  background: white;
}
.price-card.featured { background: var(--ink); color: white; border-color: var(--ink); }
.price-label { font-size: 12px; text-transform: uppercase; letter-spacing: .09em; color: var(--muted-dark); }
.price-card.featured .price-label { color: #a9a9af; }
.price-card h3 { margin: 24px 0 12px; font-family: "Inter Tight"; font-size: 40px; letter-spacing: -.05em; line-height: 1; }
.price { margin: 26px 0 12px; font-family: "Inter Tight"; font-size: 62px; letter-spacing: -.06em; line-height: 1; }
.price small { font-family: Inter; font-size: 14px; letter-spacing: 0; color: var(--muted-dark); }
.price-card.featured .price small { color: #a9a9af; }
.price-card p { color: var(--muted-dark); }
.price-card.featured p { color: #bcbcc1; }
.price-card .btn { margin-top: auto; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sticky-copy { position: sticky; top: 130px; }
.stack { display: grid; gap: 0; border-top: 1px solid var(--line-light); }
.stack-item { padding: 28px 0; border-bottom: 1px solid var(--line-light); }
.stack-item h3 { margin: 0 0 8px; font-family: "Inter Tight"; font-size: 28px; letter-spacing: -.04em; }
.stack-item p { margin: 0; color: var(--muted-dark); }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.project-card {
  min-height: 500px;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: white;
}
.project-card.dark { background: var(--ink); color: white; border-color: var(--ink); }
.project-card.blue { background: var(--blue); color: white; border-color: var(--blue); }
.project-card h3 { margin: 14px 0; font-family: "Inter Tight"; font-size: clamp(44px, 5vw, 78px); line-height: .92; letter-spacing: -.06em; }
.project-card p { max-width: 500px; color: var(--muted-dark); font-size: 17px; }
.project-card.dark p, .project-card.blue p { color: rgba(255,255,255,.74); }
.project-card .arrow-circle { border-color: currentColor; }
.project-number { font-family: "Inter Tight"; font-size: 160px; line-height: .7; letter-spacing: -.09em; opacity: .06; position: absolute; right: 24px; bottom: 22px; }

.timeline { margin-top: 56px; border-top: 1px solid var(--line-light); }
.timeline-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
}
.timeline-row strong { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.timeline-row p { margin: 0; max-width: 800px; font-size: 20px; letter-spacing: -.02em; }

.contact-panel {
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.contact-copy { padding: clamp(44px, 6vw, 88px); background: var(--blue); }
.contact-copy .h3 { margin-bottom: 24px; }
.contact-copy p { color: rgba(255,255,255,.78); font-size: 17px; }
.contact-form { padding: clamp(44px, 6vw, 88px); display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #a9a9af; }
.field input, .field textarea, .field select {
  width: 100%;
  color: white;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  padding: 12px 0 14px;
  outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: white; }
.field textarea { min-height: 120px; resize: vertical; }
.field select option { color: black; }
.form-note { font-size: 12px; color: #97979e; }

.faq { border-top: 1px solid var(--line-light); }
details { border-bottom: 1px solid var(--line-light); }
summary {
  cursor: pointer;
  list-style: none;
  padding: 28px 54px 28px 0;
  font-family: "Inter Tight";
  font-size: clamp(24px, 2.4vw, 38px);
  letter-spacing: -.04em;
  position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-family: Inter; font-size: 28px; font-weight: 300; }
details[open] summary::after { content: "−"; }
details p { max-width: 800px; margin: 0 0 28px; color: var(--muted-dark); font-size: 17px; }

.big-cta { text-align: center; }
.big-cta .h2 { max-width: 1150px; margin: 0 auto; }
.big-cta .lead { margin-left: auto; margin-right: auto; color: rgba(255,255,255,.78); }
.big-cta .actions { justify-content: center; }

.site-footer { background: var(--ink); color: white; padding: 78px 28px 28px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 54px; padding-bottom: 72px; border-bottom: 1px solid var(--line-dark); }
.footer-brand { font-family: "Inter Tight"; font-size: clamp(42px, 5vw, 74px); line-height: .95; letter-spacing: -.06em; max-width: 600px; }
.footer-brand span { color: #85858d; }
.footer-col h3 { margin: 0 0 20px; color: #8f8f96; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.footer-col a { display: block; margin: 0 0 12px; color: #dedee2; font-size: 14px; }
.footer-col a:hover { color: white; }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; color: #85858d; font-size: 12px; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 20px; }

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



/* Scoped contrast fixes for light surfaces inside dark sections */
.feature-copy { color: var(--ink); }
.bg-dark .feature-copy .copy,
.bg-dark-2 .feature-copy .copy { color: var(--muted-dark); }
.feature-copy .eyebrow,
.feature-copy .h3 { color: var(--ink); }

.mobile-nav-cta { display: none; }
.centered-eyebrow { justify-content: center; }
.faq-title { margin-bottom: 56px; }
.live-title, .approach-title { max-width: 1100px; margin-bottom: 56px; }
.legal-title { margin-bottom: 46px; }
.about-lead { margin-top: 0; }
.stats-plain { padding: 0; }
.project-status { display: inline-flex; padding: 8px 12px; border: 1px solid var(--line-light); border-radius: 999px; }
.project-card.dark .project-status { color: #c4c4ca; border-color: var(--line-dark); }
.light-status { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.32); }
.ai-panel { display: grid; grid-template-columns: 1.08fr .92fr; gap: 28px; align-items: stretch; }
.ai-panel > div { padding: clamp(34px,5vw,68px); border-radius: var(--radius-lg); background: white; border: 1px solid var(--line-light); }
.ai-example { display: flex; flex-direction: column; justify-content: center; gap: 18px; background: var(--ink) !important; color: white; }
.ai-example span { padding: 18px 20px; border-radius: 14px; background: #242428; font-size: 18px; }
.ai-example strong { font-family: "Inter Tight"; font-size: 34px; letter-spacing: -.04em; }
.ai-example p { margin: 0; color: #c6c6cb; font-size: 17px; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { transition: transform .25s ease, top .25s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); background: white; }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); background: white; }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .nav {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; right: 0;
    top: var(--mobile-nav-top, 110px);
    height: calc(100dvh - var(--mobile-nav-top, 110px));
    min-height: 0;
    overflow-y: auto;
    padding: 30px 28px max(32px, env(safe-area-inset-bottom));
    background: rgba(10,10,11,.99);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav.open { display: flex; }
  .nav a { font-family: "Inter Tight"; font-size: clamp(34px,6vw,52px); letter-spacing: -.04em; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
  .nav a::after { display: none; }
  .nav .mobile-nav-cta { display: inline-flex; margin-top: auto; border: 1px solid white; border-radius: 999px; padding: 14px 20px; justify-content: center; font-family: Inter,sans-serif; font-size: 15px; letter-spacing: 0; }
  .menu-toggle { display: flex; }
  .header-actions .btn { display: none; }
  body.menu-open { overflow: hidden; }
  .hero-inner, .page-hero-inner { grid-template-columns: 1fr .7fr; }
  .hero-media { min-height: 610px; }
  .cards, .cards.cards-two, .price-grid { grid-template-columns: 1fr; }
  .card { min-height: 330px; }
  .feature-panel, .contact-panel, .ai-panel { grid-template-columns: 1fr; }
  .feature-side { min-height: 400px; }
  .event-grid, .project-grid { grid-template-columns: 1fr; }
  .event-card { min-height: 460px; }
  .price-card { min-height: 390px; }
  .project-card { min-height: 420px; }
  .two-col { gap: 48px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main .footer-col:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .topbar { min-height: 0; padding: 8px 16px; font-size: 12px; line-height: 1.35; flex-wrap: wrap; gap: 3px 7px; }
  .site-header { padding-top: env(safe-area-inset-top); }
  .header-inner { min-height: 66px; padding: 0 18px; }
  .brand { font-size: 16px; letter-spacing: .11em; }
  .brand small { display: none; }
  .section { padding: 72px 18px; }
  .section-tight { padding-top: 52px; padding-bottom: 52px; }
  .hero { min-height: auto; }
  .hero-inner, .page-hero-inner { padding-left: 18px; padding-right: 18px; grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding: 58px 0 46px; }
  .hero-copy .h1, .page-hero-copy .h1 { font-size: clamp(52px, 15.4vw, 78px); line-height: .94; overflow-wrap: anywhere; }
  .h2 { font-size: clamp(44px,12vw,66px); }
  .h3 { font-size: clamp(32px,9.6vw,48px); }
  .lead { font-size: 18px; line-height: 1.48; }
  .copy { font-size: 16px; }
  .actions { width: 100%; margin-top: 30px; }
  .actions .btn { flex: 1 1 100%; width: 100%; }
  .hero-media { min-height: 450px; border-radius: 22px 22px 0 0; }
  .hero-media img { object-position: 50% 25%; }
  .hero-media-note { left: 18px; right: 18px; bottom: 17px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-media-note strong { font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr; padding: 0 18px; }
  .stat { min-height: 104px; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line-dark); padding-left: 0; }
  .section-head { display: block; margin-bottom: 42px; }
  .section-head .copy { margin-top: 22px; }
  .display-list { margin-top: 44px; }
  .display-list a, .display-row { min-height: 0; padding: 26px 0; grid-template-columns: 1fr 42px; gap: 12px 14px; }
  .display-desc { grid-column: 1 / -1; grid-row: 2; padding-bottom: 0; }
  .display-title { font-size: clamp(40px,12vw,58px); overflow-wrap: anywhere; }
  .card { min-height: 340px; padding: 25px; border-radius: 22px; }
  .card h3 { font-size: clamp(36px,11vw,52px); }
  .feature-panel { min-height: 0; border-radius: 22px; }
  .feature-copy, .feature-side { padding: 36px 24px; }
  .feature-side { min-height: 360px; }
  .quote { font-size: clamp(32px,10vw,48px); }
  .event-card { min-height: 0; padding: 26px; border-radius: 22px; gap: 56px; }
  .event-card h3 { font-size: clamp(40px,12vw,62px); }
  .event-meta { gap: 18px; }
  .event-foot { align-items: stretch; flex-direction: column; }
  .event-foot .btn { width: 100%; }
  .page-hero { min-height: auto; padding: 0 18px; }
  .page-hero-copy { padding: 58px 0 46px; }
  .page-hero-portrait { height: 420px; border-radius: 22px 22px 0 0; }
  .price-card, .project-card { min-height: 0; border-radius: 22px; padding: 26px; }
  .price-card { gap: 6px; }
  .price-card .btn { margin-top: 24px; }
  .project-card { gap: 52px; }
  .project-card h3 { font-size: clamp(42px,13vw,62px); overflow-wrap: anywhere; }
  .project-number { font-size: 112px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .sticky-copy { position: static; }
  .timeline { margin-top: 36px; }
  .timeline-row { grid-template-columns: 1fr; gap: 8px; padding: 26px 0; }
  .timeline-row p { font-size: 18px; }
  .contact-panel { border-radius: 22px; }
  .contact-copy, .contact-form { padding: 36px 24px; }
  .contact-form .btn { width: 100%; }
  .ai-panel > div { padding: 32px 24px; border-radius: 22px; }
  .ai-example strong { font-size: 30px; }
  .faq-title, .live-title, .approach-title, .legal-title { margin-bottom: 38px; }
  summary { padding: 23px 46px 23px 0; font-size: clamp(24px,7.5vw,34px); }
  .site-footer { padding: 62px 18px 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 22px; padding-bottom: 54px; }
  .footer-main > :first-child { grid-column: 1 / -1; }
  .footer-main .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 390px) {
  .brand { font-size: 14px; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero-copy .h1, .page-hero-copy .h1 { font-size: clamp(48px,15vw,62px); }
  .section { padding-left: 16px; padding-right: 16px; }
  .hero-inner, .page-hero-inner, .page-hero { padding-left: 16px; padding-right: 16px; }
  .card, .event-card, .project-card, .price-card, .feature-copy, .feature-side, .contact-copy, .contact-form { padding-left: 22px; padding-right: 22px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > :first-child { grid-column: auto; }
}

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


/* Legal cards always use a dark surface, including when placed inside a light section. */
.legal-card,
.legal-card:visited { color: white; }
.legal-card h3 { color: #ffffff; }
.legal-card .card-kicker { color: #c7c7cc; }
.legal-card p { color: #c3c3c9; }
.legal-card .card-tag { color: #d0d0d5; }
.legal-card .arrow-circle { color: #d8d8dd; border-color: rgba(255,255,255,.22); }

/* Legal pages and system screens */
.legal-cards .legal-card { min-height: 390px; }
.legal-page-hero { padding: 108px 28px 92px; background: var(--ink); color: white; }
.legal-page-hero .h1 { max-width: 1100px; }
.legal-page-hero .lead { max-width: 760px; color: #c8c8cd; }
.legal-updated { margin: 30px 0 0; color: #8f8f96; font-size: 13px; }
.legal-layout { display: grid; grid-template-columns: minmax(210px, 280px) minmax(0, 860px); gap: clamp(54px, 8vw, 124px); align-items: start; }
.legal-nav { position: sticky; top: 128px; display: grid; gap: 10px; padding: 22px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.legal-nav strong { margin-bottom: 8px; font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.legal-nav a { color: var(--muted-dark); font-size: 14px; line-height: 1.35; }
.legal-nav a:hover { color: var(--ink); }
.legal-content section { padding: 0 0 54px; margin: 0 0 54px; border-bottom: 1px solid var(--line-light); scroll-margin-top: 132px; }
.legal-content h2 { margin: 0 0 24px; font-family: "Inter Tight", Inter, sans-serif; font-size: clamp(30px, 3.4vw, 48px); line-height: 1; letter-spacing: -.045em; }
.legal-content p { margin: 0 0 18px; color: var(--muted-dark); font-size: 17px; line-height: 1.75; }
.legal-note { padding: 28px; border-radius: var(--radius-md); background: var(--paper); border: 1px solid var(--line-light); }
.legal-note strong { display: block; margin-bottom: 8px; font-family: "Inter Tight", Inter, sans-serif; font-size: 24px; }
.legal-note p { margin: 0; }
.error-page { min-height: 100dvh; background: var(--ink); color: white; }
.error-main { min-height: 100dvh; display: grid; place-items: center; padding: 28px; }
.error-card { width: min(100%, 920px); padding: clamp(36px, 7vw, 84px); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: var(--ink-2); }
.error-card .lead { max-width: 650px; color: #c8c8cd; }

@media (max-width: 760px) {
  .legal-page-hero { padding: 70px 18px 64px; }
  .legal-page-hero .h1 { font-size: clamp(48px, 14vw, 68px); overflow-wrap: anywhere; }
  .legal-layout { grid-template-columns: 1fr; gap: 44px; }
  .legal-nav { position: static; }
  .legal-content section { padding-bottom: 38px; margin-bottom: 38px; scroll-margin-top: 104px; }
  .legal-content p { font-size: 16px; line-height: 1.7; }
  .legal-cards .legal-card { min-height: 320px; }
  .error-main { padding: 18px; }
  .error-card { border-radius: 22px; }
}
