:root {
  --white: #f8fafc;
  --surface: #fdf7ff;
  --navy: #020617;
  --ink: #1d1a25;
  --muted: #656273;
  --line: #d9d5e0;
  --purple: #6200ee;
  --violet: #8b5cf6;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 96px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -50px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  z-index: 10;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: #210B5C;
}

.wordmark img {
  display: block;
  width: auto;
  height: 42px;
}

.wordmark span {
  display: block;
  font-size: 21px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 11px;
}

.site-nav a:not(.button) {
  color: var(--muted);
  padding: 28px 0 24px;
  border-bottom: 2px solid transparent;
}
.site-nav a:not(.button):hover,
.site-nav a.active {
  color: var(--navy);
  border-color: var(--purple);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--purple);
  color: #fff;
  border: 1px solid var(--purple);
  border-radius: 4px;
  padding: 15px 22px;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.button:hover {
  background: #4800b2;
  transform: translateY(-2px);
}
.button-small {
  padding: 9px 18px;
  border-radius: 99px;
  font-size: 10px;
}
.button-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.button-outline:hover {
  background: var(--navy);
  color: #fff;
}

.menu-toggle { display: none; background: none; border: 0; }

.section-grid {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(340px, 38%);
}

.hero {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(340px, 38%);
  min-height: 650px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.vertical-label {
  position: absolute;
  left: 0;
  top: 24px;
  width: 78px;
  height: auto;
  border-right: 1px solid var(--line);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e2ea;
  font: 600 34px/1 'Hanken Grotesk';
  letter-spacing: 0.12em;
}

.hero-copy {
  grid-column: 2;
  padding: 120px clamp(40px, 8vw, 132px) 56px 68px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
}

.accent-rule {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--violet);
  margin-bottom: 20px;
}

.eyebrow {
  color: var(--muted);
  font: 600 10px/1.2 Inter, Arial, sans-serif;
  letter-spacing: 0.12em;
  margin: 0 0 24px;
}

.hero-copy h1,
.platform h2,
.resource-band h2,
.contact-section h2 {
  font: 700 clamp(42px, 5vw, 68px)/1.02 'Hanken Grotesk', Arial, sans-serif;
  letter-spacing: -0.055em;
  margin: 0 0 26px;
}

.hero-copy h1 { font-size: clamp(44px, 5.5vw, 78px); }

.hero-copy .lede {
  color: var(--muted);
  font-size: 13px;
  max-width: 440px;
  margin: 0 0 26px;
}

.text-link {
  font-size: 11px;
  font-weight: 600;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 4px;
}
.text-link span { margin-left: 7px; }

.hero-metrics {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 100px;
  margin-top: 66px;
  padding-top: 15px;
}

.metric-label,
.capability-number {
  display: block;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.14em;
  margin-bottom: 7px;
}

.hero-metrics strong { font: 500 22px 'Hanken Grotesk'; }

.hero-art {
  grid-column: 3;
  background: #eee9f5;
  overflow: hidden;
  min-height: 650px;
  position: relative;
}

.contact-page .hero-art {
  background: linear-gradient(180deg, #f3eefc 0%, #ece6f7 100%);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(0.9);
  mix-blend-mode: multiply;
}

.art-coordinate {
  position: absolute;
  right: 18px;
  bottom: 17px;
  color: #70697d;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.contact-page-copy {
  justify-content: center;
}

.contact-details {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
  padding-top: 18px;
  max-width: 460px;
}

.contact-details strong {
  display: block;
  font: 600 18px/1.2 'Hanken Grotesk', Arial, sans-serif;
  margin-top: 4px;
}

.contact-panel {
  height: 100%;
  padding: 72px clamp(24px, 4vw, 56px);
  display: flex;
  align-items: center;
}

.contact-form {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(217, 213, 224, 0.8);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.08);
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  padding: 14px 16px;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9b96a6;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form .button {
  width: 100%;
  margin-top: 6px;
}

.platform {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 48px 1fr 1fr;
  min-height: 540px;
}
.platform:before {
  content: "";
  border-right: 1px solid var(--line);
  grid-column: 1;
}

.platform-intro {
  padding: 104px 9% 80px 11%;
  border-right: 1px solid var(--line);
}

.platform h2 { font-size: clamp(35px, 4vw, 52px); }
h2 em {
  font-style: normal;
  color: var(--violet);
}

.platform-intro > p:last-child {
  color: var(--muted);
  font-size: 13px;
  max-width: 390px;
}

.capabilities { padding: 92px 11% 60px; }

.capability {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 24px 40px 25px 0;
}

.capability h3 {
  font: 600 22px 'Hanken Grotesk';
  margin: 0 0 5px;
}

.capability p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  max-width: 390px;
}

.capability-mark {
  position: absolute;
  right: 0;
  top: 25px;
  color: var(--violet);
}

.capability-muted { opacity: 0.72; }

.resource-band {
  background: #f1eafb;
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.resource-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.resource-band h2 {
  font-size: clamp(35px, 4vw, 52px);
  margin-bottom: 0;
}

.contact-section { padding: 120px 0 130px; }

.contact-kicker {
  display: flex;
  gap: 20px;
  align-items: center;
}
.contact-kicker .accent-rule { margin: 0; }

.contact-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 64px;
  padding-left: 11%;
}

.contact-section h2 {
  font-size: clamp(56px, 8vw, 112px);
  margin: 0;
}

.contact-cta { max-width: 330px; }

.contact-cta p {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 26px;
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 80px;
}

.footer-tagline {
  margin: 0;
  color: #a9a4b4;
  font: 500 17px/1.35 'Hanken Grotesk';
}

.site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 11px;
  color: #c3becb;
}
.site-footer nav a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #353142;
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  color: #858091;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.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;
}

@media (max-width: 800px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .nav-shell { height: 64px; }
  .menu-toggle {
    display: grid;
    gap: 5px;
    padding: 8px;
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 14px 16px 22px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.button) { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .site-nav .button { margin-top: 16px; }
  .section-grid { display: block; }
  .hero { display: grid; grid-template-columns: 1fr; }
  .vertical-label { display: none; }
  .hero-copy { grid-column: auto; }
  .hero-art { grid-column: auto; }
  .hero-copy { padding: 64px 16px 48px; min-height: auto; }
  .hero-copy h1 { font-size: 48px; }
  .hero-metrics { gap: 60px; margin-top: 50px; }
  .hero-art { min-height: 370px; height: 55vw; max-height: 500px; }
  .contact-page .hero-art { height: auto; min-height: auto; }
  .contact-page-copy { padding-bottom: 24px; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-panel { padding: 24px 16px 32px; }
  .contact-form { margin-left: 0; padding: 22px; }
  .platform { display: block; }
  .platform:before { display: none; }
  .platform-intro { padding: 76px 16px 42px; border-right: 0; }
  .capabilities { padding: 0 16px 60px; }
  .capability { padding-right: 28px; }
  .resource-band { padding: 64px 0; }
  .resource-inner { display: block; }
  .resource-band h2 { margin-bottom: 36px; }
  .contact-section { padding: 85px 0 95px; }
  .contact-content { display: block; margin-top: 50px; padding-left: 0; }
  .contact-section h2 { font-size: 70px; margin-bottom: 42px; }
  .footer-top { grid-template-columns: 1fr 1fr; padding-bottom: 55px; }
  .footer-tagline { grid-column: 2; }
  .site-footer nav { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-bottom: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
  .button:hover { transform: none; }
}
