/* palette: bg=#EEF2F8 fg=#0B1220 accent=#3550E8 */
/* fonts: display="Bricolage Grotesque" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #EEF2F8;
  --bg-alt: #FFFFFF;
  --bg-deep: #E2E8F4;
  --fg: #0B1220;
  --fg-soft: #243049;
  --muted: #5B6B85;
  --accent: #3550E8;
  --accent-deep: #1E37C9;
  --accent-soft: #DCE3FB;
  --ink: #0F172A;
  --border: rgba(11, 18, 32, 0.08);
  --border-strong: rgba(11, 18, 32, 0.14);
  --display: 'Bricolage Grotesque', ui-serif, Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 40px -8px rgba(15, 23, 42, 0.14);
  --shadow-lg: 0 28px 80px -20px rgba(30, 55, 201, 0.22);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .22s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
svg { display: block; }

::selection { background: var(--accent); color: #fff; }

/* TYPOGRAPHY */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: 9999px;
  font-weight: 500;
}

.eyebrow--plain {
  background: transparent;
  padding: 0;
  color: var(--muted);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(3rem, 8.4vw, 6.2rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-weight: 500;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

h2 {
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  letter-spacing: -0.025em;
}

h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }

p { margin: 0; color: var(--fg-soft); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  line-height: 1.62;
  max-width: 56ch;
}

/* CONTAINER */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  body { font-size: 16px; }
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 242, 248, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.header[data-scrolled="true"] {
  background: rgba(238, 242, 248, 0.92);
  box-shadow: 0 1px 0 var(--border), 0 6px 24px -16px rgba(15, 23, 42, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand__mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--accent);
  border-radius: 9px;
  color: #fff;
  flex-shrink: 0;
}

.brand__mark svg { width: 16px; height: 16px; }

.nav {
  display: none;
  gap: 4px;
  align-items: center;
}

@media (min-width: 880px) {
  .nav { display: flex; }
}

.nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 14.5px;
  color: var(--fg-soft);
  font-weight: 500;
  border-radius: 9px;
  transition: color .22s var(--ease), background .22s var(--ease);
}

.nav a:hover, .nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(11, 18, 32, 0.04);
}

.header__cta {
  display: none;
  align-items: center;
  gap: 12px;
}

@media (min-width: 880px) { .header__cta { display: flex; } }

.header__cta .link-quiet {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--fg-soft);
  padding: 10px 14px;
}

.header__cta .link-quiet:hover { color: var(--ink); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 9999px;
  font-size: 14.5px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 22px -10px rgba(53, 80, 232, 0.65);
}

.btn--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(53, 80, 232, 0.75);
}

.btn--ghost {
  background: var(--bg-alt);
  color: var(--ink);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  background: var(--bg);
  transform: translateY(-1px);
}

.btn--lg { padding: 16px 28px; font-size: 15.5px; }

.btn svg { width: 16px; height: 16px; }

/* MOBILE MENU */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 12px 9px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

@media (min-width: 880px) { .menu-toggle { display: none; } }

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--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;
  inset: 76px 0 0 0;
  background: var(--bg);
  z-index: 90;
  padding: 32px 24px 40px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  overflow-y: auto;
}

.mobile-menu[data-open="true"] {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  display: block;
  padding: 18px 4px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn { margin-top: 28px; width: 100%; }

/* HERO */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 clamp(20px, 4vw, 40px);
  text-align: center;
  overflow: hidden;
}

.hero__inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 { margin-top: 28px; }

.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--muted);
  margin: 28px auto 0;
  max-width: 56ch;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  margin: clamp(40px, 6vw, 80px) auto 0;
  max-width: 1140px;
  padding: 0 12px;
}

/* Biomorphic blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

.blob--a { width: 460px; height: 460px; background: radial-gradient(circle, #B6C4F5 0%, transparent 60%); top: -120px; left: -120px; }
.blob--b { width: 520px; height: 520px; background: radial-gradient(circle, #C9D5F9 0%, transparent 60%); top: 40px; right: -160px; }
.blob--c { width: 380px; height: 380px; background: radial-gradient(circle, #DCE3FB 0%, transparent 65%); bottom: -100px; left: 30%; }

/* HERO MOCKUP (biomorphic dashboard preview) */
.mockup {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, transparent 100%);
  padding: 28px 0 0;
  perspective: 1400px;
}

.mockup__shadow {
  position: absolute;
  inset: auto 4% 0 4%;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.22), transparent 70%);
  filter: blur(30px);
  z-index: 0;
}

.mockup__core {
  position: relative;
  margin: 0 auto;
  width: 220px;
  height: 220px;
  border-radius: 32%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg), inset 0 -8px 30px rgba(0,0,0,0.18), inset 0 8px 30px rgba(255,255,255,0.15);
  z-index: 3;
}

.mockup__core svg { width: 96px; height: 96px; color: #fff; }

.mockup__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

@media (min-width: 880px) {
  .mockup__cards {
    position: absolute;
    inset: 0;
    grid-template-columns: 1fr 1fr;
    gap: 18px 240px;
    margin-top: 0;
    pointer-events: none;
  }
}

.mockup__card {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  pointer-events: auto;
}

.mockup__card-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
}

.mockup__card-title { font-weight: 600; color: var(--ink); font-size: 13.5px; }
.mockup__card-sub { font-size: 11.5px; color: var(--muted); font-family: var(--mono); margin-top: 2px; }
.mockup__card-val { text-align: right; font-family: var(--mono); font-size: 13px; color: var(--accent); font-weight: 600; }
.mockup__card-val .tag { display: block; font-size: 9.5px; color: var(--muted); font-weight: 500; margin-top: 2px; }

.mockup__card:nth-of-type(1) { grid-column: 1; align-self: start; margin-top: 30px; }
.mockup__card:nth-of-type(2) { grid-column: 2; align-self: start; margin-top: 0; }
.mockup__card:nth-of-type(3) { grid-column: 1; align-self: center; margin-top: 100px; }
.mockup__card:nth-of-type(4) { grid-column: 2; align-self: center; margin-top: 80px; }
.mockup__card:nth-of-type(5) { grid-column: 1; align-self: end; margin-bottom: 20px; }
.mockup__card:nth-of-type(6) { grid-column: 2; align-self: end; margin-bottom: 40px; }

@media (max-width: 879px) {
  .mockup__card { grid-column: 1 !important; align-self: auto !important; margin: 0 !important; }
}

/* SECTIONS */
.section {
  position: relative;
  padding: clamp(70px, 11vw, 140px) 0;
}

.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--ink); color: #E2E8F4; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(226, 232, 244, 0.78); }

.section__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section__head .eyebrow { margin-bottom: 22px; }
.section__head p { margin-top: 22px; color: var(--muted); }

.section__head--left { text-align: left; margin-left: 0; }

/* Curved blob divider between sections */
.curve-divider {
  position: relative;
  height: 80px;
  margin-top: -80px;
  pointer-events: none;
  overflow: hidden;
}

.curve-divider svg { width: 100%; height: 100%; }

/* FEATURE GRID */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 720px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features { grid-template-columns: repeat(3, 1fr); } }

.feature {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature__ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.feature__ico svg { width: 22px; height: 22px; }

.feature h3 { color: var(--ink); }
.feature p { font-size: 15px; line-height: 1.65; }

.feature__art {
  margin-top: 18px;
  height: 160px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-deep) 100%);
  border-radius: 20px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.feature__art svg { width: 75%; height: 75%; max-width: 220px; }

/* MANIFESTO */
.manifesto {
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(53, 80, 232, 0.45) 0%, transparent 65%);
  top: -200px; left: -200px;
  filter: blur(40px);
}

.manifesto::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(53, 80, 232, 0.32) 0%, transparent 65%);
  bottom: -200px; right: -150px;
  filter: blur(40px);
}

.manifesto__quote {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: #fff;
}

.manifesto__quote em { font-style: normal; color: #93A6FF; }

.manifesto__byline {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.stat__num span { color: var(--accent); }

.stat__label {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* PILL HEADING SECTION */
.pill-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 8px 18px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.pill-head .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* SERVICES LIST */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background .25s var(--ease);
}

@media (min-width: 880px) {
  .svc-row {
    grid-template-columns: 80px 1.5fr 2fr auto;
    gap: 36px;
    align-items: center;
  }
}

.svc-row:hover { background: rgba(53, 80, 232, 0.025); }

.svc-row__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.svc-row__title {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 500;
}

.svc-row__desc { font-size: 15px; color: var(--muted); line-height: 1.62; }

.svc-row__arrow {
  width: 44px; height: 44px;
  border-radius: 9999px;
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--fg);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.svc-row:hover .svc-row__arrow {
  background: var(--accent);
  color: #fff;
  transform: translate(3px, -3px);
}

/* COMMUNITY / EVENTS */
.events {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 880px) { .events { grid-template-columns: repeat(2, 1fr); } }

.event {
  background: var(--bg-alt);
  border-radius: 28px;
  padding: 28px 30px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.event:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.event__date {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

.event__date .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.event h3 { color: var(--ink); }

.event__meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted);
}

/* TESTIMONIALS */
.tests-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 880px) { .tests-grid { grid-template-columns: repeat(2, 1fr); } }

.test {
  padding: 32px 32px 28px;
  background: var(--bg-alt);
  border-radius: 28px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 22px;
}

.test__body {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-weight: 400;
}

.test__by {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.avatar {
  width: 44px; height: 44px;
  border-radius: 9999px;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.avatar--a { background: var(--accent); }
.avatar--b { background: #5469E0; }
.avatar--c { background: #7A5BE3; }
.avatar--d { background: #1E37C9; }
.avatar--e { background: #4659C8; }
.avatar--f { background: #6C5CE7; }

.test__name { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.test__role { font-size: 12.5px; color: var(--muted); font-family: var(--mono); margin-top: 2px; }

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 26px;
  transition: background .25s var(--ease);
}

.faq details[open] { background: var(--bg-alt); box-shadow: var(--shadow-sm); }

.faq summary {
  list-style: none;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 500;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 24px;
  color: var(--accent);
  font-weight: 300;
  transition: transform .25s var(--ease);
  line-height: 1;
}

.faq details[open] summary::after { content: '−'; }

.faq__body {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--fg-soft);
}

/* CTA */
.cta {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-radius: 36px;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 6vw, 80px);
  overflow: hidden;
  text-align: center;
}

.cta::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(53, 80, 232, 0.55) 0%, transparent 65%);
  top: -300px; left: 50%; transform: translateX(-50%);
  filter: blur(20px);
}

.cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, 0.72); margin: 22px auto 0; max-width: 56ch; }
.cta__ctas { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn--ghost { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); color: #fff; }
.cta .btn--ghost:hover { background: rgba(255,255,255,0.12); }

/* FOOTER */
.footer {
  padding: 80px 0 36px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; } }

.footer__brand p { font-size: 14.5px; color: var(--muted); margin-top: 16px; max-width: 36ch; line-height: 1.6; }

.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}

.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14.5px; color: var(--fg-soft); }
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  margin-top: 30px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

/* COOKIE POPUP */
.cookie-popup {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 24px;
  background: rgba(11, 18, 32, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}

@media (min-width: 720px) { .cookie-popup { align-items: center; } }

.cookie-popup[data-open="true"] { opacity: 1; pointer-events: auto; }

.cookie-popup__card {
  background: var(--bg-alt);
  padding: 32px 36px 30px;
  max-width: 520px;
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.cookie-popup__label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.cookie-popup h3 { color: var(--ink); margin-bottom: 14px; }
.cookie-popup p { font-size: 14px; color: var(--fg-soft); line-height: 1.62; }
.cookie-popup p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.cookie-popup__actions {
  display: flex; gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cookie-popup__actions button {
  flex: 1;
  min-width: 130px;
  padding: 13px 22px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease);
}

.cookie-popup__actions button[data-cookie="decline"] {
  background: transparent;
  color: var(--fg-soft);
  border: 1px solid var(--border-strong);
}

.cookie-popup__actions button[data-cookie="decline"]:hover { background: var(--bg); }

.cookie-popup__actions button[data-cookie="accept"] {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.cookie-popup__actions button[data-cookie="accept"]:hover { background: var(--accent-deep); }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}

.reveal.is-visible { opacity: 1; transform: none; }

/* HERO ZOOM */
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.zoom-in {
  animation: heroZoom 8s var(--ease) both;
  transform-origin: center;
}

/* FORM */
.form {
  display: grid;
  gap: 18px;
}

.form__row { display: grid; gap: 18px; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.field input, .field select, .field textarea {
  font: inherit;
  font-family: var(--sans);
  font-size: 15.5px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: var(--bg-alt);
  color: var(--ink);
  transition: border .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
}

.field textarea { resize: vertical; min-height: 130px; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.field input::placeholder, .field textarea::placeholder { color: rgba(91, 107, 133, 0.55); }

.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.form__consent input { margin-top: 4px; accent-color: var(--accent); }
.form__consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.form .btn { justify-self: start; }

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; } }

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-info__block { padding-top: 28px; border-top: 1px solid var(--border); }
.contact-info__block:first-of-type { border-top: 0; padding-top: 0; }

.contact-info__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-info__value {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.4;
}

.contact-info__value a { color: var(--ink); }
.contact-info__value a:hover { color: var(--accent); }

/* ABOUT PAGE - TIMELINE */
.timeline {
  display: grid;
  gap: 36px;
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--border-strong);
}

.tl-item { position: relative; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -27px; top: 7px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 3px solid var(--accent);
}

.tl-year {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tl-item h3 { color: var(--ink); margin-bottom: 8px; font-size: 1.3rem; }
.tl-item p { font-size: 15px; color: var(--fg-soft); }

/* TEAM (no faces) */
.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .team { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.team-card .avatar { width: 56px; height: 56px; font-size: 19px; }

.team-card__name { font-family: var(--display); font-size: 1.2rem; color: var(--ink); letter-spacing: -0.015em; font-weight: 500; }
.team-card__role { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
.team-card__bio { font-size: 14.5px; line-height: 1.62; color: var(--fg-soft); }

/* LEGAL PAGES */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) 0;
}

.legal h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 32px; }
.legal h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin-top: 48px; margin-bottom: 18px; }
.legal p, .legal li { font-size: 16px; line-height: 1.78; color: var(--fg-soft); margin-bottom: 14px; }
.legal ul, .legal ol { padding-left: 22px; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal__meta { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }

/* THANKS */
.thanks {
  min-height: 80vh;
  display: grid; place-items: center;
  text-align: center;
  padding: 80px 0;
}

.thanks h1 { margin-bottom: 24px; }
.thanks p { font-size: 1.1rem; color: var(--muted); max-width: 50ch; margin: 0 auto; }
.thanks .btn { margin-top: 36px; }

/* UTILITIES */
.split-2 { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 880px) { .split-2 { grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; } }

.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
.mb-lg { margin-bottom: 48px; }
