:root {
  --ink: #080a18;
  --near-black: #202126;
  --violet-950: #17073f;
  --violet-900: #241064;
  --violet-800: #30117e;
  --cobalt: #125cff;
  --cobalt-2: #0067ff;
  --mint: #49f995;
  --paper: #f6f5f1;
  --white: #fff;
  --rule: rgba(255,255,255,.18);
  --display: "Barlow Condensed", "Anton", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --pad: clamp(20px, 3.2vw, 58px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--near-black); }
body { margin: 0; background: var(--near-black); color: var(--white); font-family: var(--body); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.site-shell {
  width: min(1680px, calc(100% - 28px));
  margin: 14px auto;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 40px 100px rgba(0,0,0,.28);
  overflow: hidden;
  background: var(--violet-900);
}

.texture { position: relative; isolation: isolate; }
.texture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("assets/print-grain.png"),
    url("assets/grain.svg");
  background-size: 420px 420px, 155px 155px;
  background-position: 0 0, 38px 24px;
  background-repeat: repeat;
  background-blend-mode: soft-light, overlay;
  opacity: .78;
  mix-blend-mode: soft-light;
  filter: contrast(1.28) saturate(.82);
  pointer-events: none;
  z-index: 5;
}

/* The locked reference is visibly print-textured. The grain is intentionally
   present on every major colour field rather than being a barely perceptible
   web effect. */
.hero.texture::after,
.what.texture::after,
.approach.texture::after,
.services.texture::after,
.manifesto.texture::after,
.contact.texture::after {
  opacity: .86;
}

.site-header.texture::after,
.site-footer.texture::after {
  opacity: .62;
}

.partners.texture::after {
  opacity: .24;
  mix-blend-mode: multiply;
  filter: contrast(1.15) grayscale(1);
}
.texture > * { position: relative; z-index: 2; }

.site-header {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px var(--pad);
  background: linear-gradient(92deg, #241064 0%, #1a0a4a 62%, #251265 100%);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 50;
}
.brand { font-family: var(--display); font-size: clamp(36px, 2.9vw, 50px); line-height: .88; letter-spacing: -.015em; white-space: nowrap; text-transform: uppercase; }
.brand span { color: var(--mint); }
.brand.big { font-size: clamp(44px, 3.8vw, 64px); }
.header-micro, .footer-stack { font-size: 12px; font-weight: 800; line-height: 1; letter-spacing: -.01em; text-transform: uppercase; }
.desktop-nav { justify-self: center; display: flex; gap: clamp(18px, 2.4vw, 42px); }
.desktop-nav a { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; opacity: .94; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--mint); }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  padding: 16px 18px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.nav-cta { background: var(--mint); color: #10233c; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.nav-cta span, .button span { font-size: 24px; line-height: 0; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  min-height: min(840px, calc(100vh - 110px));
  display: grid;
  grid-template-columns: 56% 44%;
  grid-template-rows: 1fr;
  background:
    radial-gradient(circle at 8% 3%, rgba(47,38,151,.7), transparent 34%),
    linear-gradient(104deg, #291072 0%, #31148c 42%, #0769ff 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 8%, rgba(0,0,0,.06) 8% 16%);
  opacity: .28;
  z-index: 0;
}
.hero-display { align-self: center; padding: 42px 0 42px var(--pad); }
.hero-word {
  font-family: var(--display);
  font-size: clamp(134px, 17vw, 290px);
  line-height: .76;
  color: var(--mint);
  letter-spacing: -.03em;
  white-space: nowrap;
  text-transform: uppercase;
}
.hero-word.amp { color: var(--mint); margin-top: 16px; }
.hero-word.amp span { color: var(--paper); margin-right: .05em; }
.hero-copy {
  align-self: center;
  padding: 80px var(--pad) 90px 56px;
  max-width: 680px;
}
.utility-line { color: var(--mint); font-weight: 900; text-transform: uppercase; font-size: clamp(18px, 1.65vw, 26px); line-height: 1.08; margin-bottom: 34px; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 4.8vw, 82px);
  line-height: .9;
  text-transform: uppercase;
  margin: 0 0 28px;
  letter-spacing: -.015em;
  max-width: 620px;
}
.hero-copy > p { font-size: clamp(20px, 1.85vw, 28px); line-height: 1.38; max-width: 620px; margin: 0 0 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.button-mint { background: var(--mint); color: #112b3e; min-width: 210px; }
.button-dark { background: var(--ink); color: var(--white); }
.text-link { font-size: 11px; text-transform: uppercase; font-weight: 900; display: flex; align-items: center; gap: 14px; }
.text-link span { color: var(--mint); font-size: 20px; }
.coordinates { position: absolute; top: 32px; right: var(--pad); text-align: right; font-weight: 800; font-size: 22px; line-height: 1.08; }
.hero-arrow { position: absolute; right: 4%; bottom: 18%; font-family: var(--body); font-size: clamp(110px, 11vw, 188px); font-weight: 200; line-height: .7; }
.hero-rail { position: absolute; right: var(--pad); bottom: 26px; width: 38%; height: 14px; background: var(--mint); border-bottom: 5px solid #151557; }

.what {
  display: grid;
  grid-template-columns: 1.25fr repeat(5, 1fr);
  background: #28106e;
  border-top: 1px solid rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(0,0,0,.45);
}
.service-cell { min-height: 330px; padding: 38px 30px 34px; border-right: 1px solid rgba(255,255,255,.2); position: relative; }
.service-cell:last-child { border-right: 0; }
.section-label { color: var(--mint); text-transform: uppercase; text-decoration: underline; text-underline-offset: 5px; font-weight: 900; font-size: 15px; letter-spacing: .015em; }
.section-label.light { color: var(--paper); }
.section-label.mint { color: #2fe890; text-decoration: none; }
.what-intro > p, .approach-intro > p { margin: 36px 0 0; font-size: 24px; line-height: 1.18; max-width: 430px; font-family: var(--display); text-transform: uppercase; }
.plus-mark { color: var(--mint); font-size: 64px; font-weight: 800; position: absolute; top: 22px; right: 22px; line-height: 1; }
.plus-mark.large { position: static; font-size: 68px; margin-top: 20px; }
.line-icon { color: var(--mint); font-size: 52px; line-height: 1; font-weight: 900; }
.icon-cell h2, .process-cell h2 { font-family: var(--display); font-size: 32px; line-height: .92; margin: 26px 0 14px; text-transform: uppercase; letter-spacing: -.01em; }
.icon-cell p, .process-cell p { font-size: 17px; line-height: 1.46; margin: 0; opacity: .98; max-width: 290px; }

.partners {
  background: var(--paper);
  color: #241064;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0;
  min-height: 430px;
  padding: 46px var(--pad);
}
.partners-left { padding-right: 45px; border-right: 1px solid rgba(36,16,100,.14); }
.partners-left h2 {
  font-family: var(--display);
  font-size: clamp(54px, 6.4vw, 96px);
  line-height: .84;
  text-transform: uppercase;
  margin: 28px 0 0;
  letter-spacing: -.03em;
}
.partners-copy { padding: 82px 58px 0; font-size: 20px; line-height: 1.48; }
.partner-list { padding-left: 36px; display: flex; flex-direction: column; justify-content: center; }
.partner-list a { padding: 17px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid #3057c8; font-size: 17px; text-transform: uppercase; font-weight: 800; color: #0c55db; }
.partner-list b { font-size: 28px; line-height: .65; }

.approach {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  background: #28106e;
  position: relative;
}
.process-cell { min-height: 330px; padding: 38px 28px 36px; border-right: 1px solid rgba(255,255,255,.17); }
.process-cell:last-of-type { border-right: 0; }
.process-no { font-family: var(--display); font-size: clamp(82px, 8vw, 132px); line-height: .78; color: var(--mint); margin-bottom: 18px; }
.approach-plus { position: absolute; right: 22px; top: 18px; color: var(--mint); font-size: 46px; font-weight: 800; }

.services { padding: 36px var(--pad) 42px; background: linear-gradient(112deg,#025cff 0%,#1269f7 45%,#104ce3 100%); }
.cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 26px; align-items: stretch; }
.service-card { position: relative; min-height: 390px; padding: 24px 22px 28px; border: 2px solid var(--mint); display: flex; flex-direction: column; }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.card-no { font-family: var(--display); font-size: 48px; line-height: 1; }
.service-card h2 { font-family: var(--display); font-size: clamp(38px, 3.1vw, 56px); line-height: .9; text-transform: uppercase; margin: 24px 0 18px; letter-spacing: -.02em; }
.service-card p { font-size: 17px; line-height: 1.48; margin: 0; max-width: 290px; }
.corner-arrow { position: absolute; right: 10px; bottom: 2px; font-size: 54px; line-height: 1; }

.manifesto {
  display: grid;
  grid-template-columns: 1.25fr 1.3fr auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: #2c116f;
  min-height: 190px;
  padding: 30px var(--pad);
}
.manifesto-left, .manifesto-center { font-family: var(--display); text-transform: uppercase; line-height: .86; letter-spacing: -.02em; }
.manifesto-left { font-size: clamp(34px, 4.2vw, 68px); color: var(--paper); }
.manifesto-center { font-size: clamp(42px, 5.5vw, 86px); color: var(--mint); white-space: nowrap; }
.manifesto-copy { font-size: 18px; line-height: 1.45; max-width: 320px; }
.manifesto-plus { color: var(--mint); font-size: 46px; font-weight: 800; }

.contact {
  min-height: 340px;
  padding: 40px var(--pad);
  display: grid;
  grid-template-columns: 1.45fr auto 1fr;
  gap: 38px;
  align-items: center;
  background: linear-gradient(90deg,#146bff,#0068ff 62%,#1457ef);
  overflow: hidden;
}
.contact-heading h2 { font-family: var(--display); font-size: clamp(62px, 8.5vw, 138px); line-height: .82; text-transform: uppercase; margin: 24px 0 18px; letter-spacing: -.03em; }
.contact-heading p { max-width: 560px; margin: 0; font-size: 15px; line-height: 1.45; }
.contact-coordinates { justify-self: end; align-self: end; text-align: right; font-weight: 800; font-size: 15px; line-height: 1.15; }
.contact-arrow { position: absolute; right: 4%; top: 18px; color: var(--mint); font-size: 112px; line-height: 1; }
.contact-plus { position: absolute; right: 2.3%; bottom: 28px; color: var(--mint); font-size: 48px; font-weight: 900; }
.contact-panel { grid-column: 1 / -1; width: 100%; margin-top: 12px; background: var(--paper); color: #241064; padding: 24px; }
.contact-panel form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-panel label { display: grid; gap: 7px; font-size: 13px; text-transform: uppercase; font-weight: 900; }
.contact-panel .wide { grid-column: 1 / -1; }
.contact-panel input, .contact-panel select, .contact-panel textarea { width: 100%; border: 1px solid #241064; background: #fff; padding: 13px; color: #241064; outline: none; }
.hidden-field { display: none; }
.hero, .what, .approach, .services, .manifesto, .contact {
  background-blend-mode: screen, normal;
}
.what, .approach, .manifesto {
  background-image: radial-gradient(circle at 12% 8%, rgba(77,52,190,.35), transparent 28%);
}
.what-intro .section-label, .approach-intro .section-label { margin-bottom: 8px; display: inline-block; }
.partners-copy p { margin-top: 0; margin-bottom: 18px; }
.contact-heading p { font-size: 20px; line-height: 1.45; max-width: 420px; }
.contact-coordinates { font-size: 22px; font-weight: 800; line-height: 1.05; }

.site-footer {
  background: #141224;
  display: grid;
  grid-template-columns: 1.15fr 1.5fr 1fr;
  gap: 48px;
  padding: 38px var(--pad) 20px;
}
.footer-brand { display: flex; align-items: flex-start; gap: 28px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; font-size: 14px; }
.footer-links div { display: flex; flex-direction: column; gap: 7px; }
.footer-links b { text-transform: uppercase; margin-bottom: 4px; color: var(--paper); }
.footer-links a, .footer-links span { opacity: .78; }
.footer-statement { border: 1px solid rgba(255,255,255,.34); padding: 18px; text-transform: uppercase; font-weight: 900; color: var(--mint); position: relative; align-self: start; }
.footer-statement span { color: var(--white); }
.footer-statement b { position: absolute; right: 12px; top: 8px; font-size: 32px; color: var(--mint); }
.footer-bottom { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.16); padding-top: 18px; font-size: 13px; color: var(--mint); }

@media (max-width: 1180px) {
  .desktop-nav { gap: 18px; }
  .header-micro { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .what { grid-template-columns: repeat(3, 1fr); }
  .service-cell { min-height: 270px; }
  .what-intro { grid-column: span 3; min-height: 190px; }
  .what-intro > p { max-width: 600px; }
  .approach { grid-template-columns: repeat(2, 1fr); }
  .approach-intro { grid-column: span 2; min-height: 190px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  .site-shell { width: min(100%, calc(100% - 12px)); margin: 6px auto; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; background: var(--mint); color: #151531; border: 0; padding: 12px 16px; text-transform: uppercase; font-size: 13px; font-weight: 900; }
  .mobile-nav { position: absolute; top: 100%; left: 0; right: 0; background: #1b0b4b; padding: 18px var(--pad) 26px; border-top: 1px solid rgba(255,255,255,.14); }
  .mobile-nav.open { display: grid; gap: 16px; }
  .mobile-nav a { text-transform: uppercase; font-weight: 900; font-size: 18px; }

  .hero { min-height: auto; grid-template-columns: 1fr; padding-bottom: 48px; }
  .hero-display { padding: 64px var(--pad) 20px; }
  .hero-word { font-size: clamp(92px, 24vw, 190px); }
  .hero-copy { padding: 35px var(--pad) 100px; max-width: none; }
  .hero h1 { max-width: 760px; }
  .hero-arrow { right: 4%; bottom: 40px; font-size: 110px; }
  .coordinates { top: 24px; right: var(--pad); font-size: 16px; }
  .hero-rail { width: calc(100% - (var(--pad) * 2)); right: var(--pad); }

  .partners { grid-template-columns: 1fr; }
  .partners-left { border-right: 0; border-bottom: 1px solid rgba(36,16,100,.14); padding: 0 0 32px; }
  .partners-copy { padding: 34px 0; }
  .partner-list { padding-left: 0; }
  .manifesto { grid-template-columns: 1fr auto; }
  .manifesto-left, .manifesto-center { grid-column: 1 / -1; }
  .manifesto-copy { max-width: 480px; }
  .contact { grid-template-columns: 1fr; }
  .contact .button { justify-self: start; }
  .contact-coordinates { justify-self: start; }
  .contact-arrow { opacity: .45; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-bottom { grid-column: 1; }
}

@media (max-width: 640px) {
  :root { --pad: 18px; }
  .site-header { min-height: 68px; padding-top: 12px; padding-bottom: 12px; }
  .brand { font-size: 28px; }
  .hero-display { padding-top: 78px; }
  .hero-word { font-size: clamp(78px, 27vw, 138px); line-height: .8; }
  .hero-word.amp { margin-top: 8px; }
  .hero h1 { font-size: clamp(48px, 13vw, 68px); }
  .hero-copy > p { font-size: 20px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button-mint { min-width: 0; width: 100%; }

  .what { grid-template-columns: 1fr; }
  .what-intro, .service-cell { grid-column: 1; min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); padding: 30px 22px; }
  .icon-cell { display: grid; grid-template-columns: 58px 1fr; column-gap: 12px; }
  .icon-cell h2 { margin: 4px 0 8px; }
  .icon-cell p { grid-column: 2; font-size: 16px; }

  .partners { padding: 34px var(--pad); }
  .partners-left h2 { font-size: clamp(62px, 18vw, 96px); }
  .partners-copy { font-size: 18px; }

  .approach { grid-template-columns: 1fr; }
  .approach-intro { grid-column: 1; }
  .process-cell { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); padding: 28px 22px; }
  .process-no { font-size: 92px; margin-bottom: 18px; }
  .cards { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: 1; min-height: 300px; }
  .service-card h2 { font-size: 44px; }

  .manifesto { grid-template-columns: 1fr; gap: 18px; padding: 34px var(--pad); }
  .manifesto-left, .manifesto-center, .manifesto-symbol, .manifesto-copy { grid-column: 1; }
  .manifesto-center { white-space: normal; }
  .manifesto-symbol { font-size: 80px; }
  .manifesto-plus { position: absolute; right: 18px; top: 20px; }

  .contact { padding: 34px var(--pad); }
  .contact-heading h2 { font-size: clamp(66px, 20vw, 105px); }
  .contact-arrow { font-size: 86px; right: 0; opacity: .32; }
  .contact-plus { bottom: 12px; }
  .contact-panel { padding: 20px; }
  .contact-panel form { grid-template-columns: 1fr; }
  .contact-panel .wide { grid-column: 1; }

  .footer-brand { flex-direction: column; gap: 14px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 22px; }
}
