:root {
  --ink: #14231e;
  --paper: #f6f5ef;
  --sage: #cbd9ce;
  --sage-light: #e6ece7;
  --blue: #2250e8;
  --muted: #68736e;
  --line: rgba(20, 35, 30, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: "DM Sans", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.grain {
  position: fixed; inset: 0; z-index: 30; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  height: 76px; padding: 0 clamp(20px, 4vw, 64px); display: flex; align-items: center;
  justify-content: space-between; border-bottom: 1px solid var(--line); background: rgba(246,245,239,.94);
  backdrop-filter: blur(14px); position: relative; z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font: 600 19px/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.brand-mark { width: 15px; height: 15px; border-radius: 50% 50% 50% 0; background: var(--ink); transform: rotate(-45deg); }
nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); font-size: 13px; }
nav a, .header-cta { transition: opacity .2s ease; }
nav a:hover, .header-cta:hover { opacity: .5; }
.header-cta { border-bottom: 1px solid currentColor; padding: 5px 0; font-size: 13px; }
.header-cta span { margin-left: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 1px; margin: 6px auto; background: currentColor; }

.hero {
  min-height: calc(100svh - 76px); padding: clamp(48px, 6vw, 92px) clamp(20px, 4vw, 64px) clamp(28px, 4vw, 60px);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.hero-kicker, .eyebrow { font-size: 10px; font-weight: 600; line-height: 1.4; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 {
  max-width: 1220px; margin: clamp(62px, 10vh, 120px) 0 0; position: relative; z-index: 2;
  font: 500 clamp(72px, 9.7vw, 152px)/.84 "Manrope", sans-serif; letter-spacing: -.078em;
}
.hero h1 em, .section h2 em, .partnership h2 em, .contact em {
  font-family: Georgia, serif; font-weight: 400; letter-spacing: -.06em;
}
.hero-bottom { margin-top: auto; display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; position: relative; z-index: 3; }
.hero-bottom p { max-width: 390px; margin: 0; font-size: 15px; line-height: 1.6; }
.circle-link {
  width: 112px; height: 112px; flex: 0 0 auto; border: 1px solid var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; gap: 14px; background: var(--sage);
  font-size: 10px; font-weight: 600; line-height: 1.25; transition: transform .25s ease, background .25s ease;
}
.circle-link b { font-size: 20px; font-weight: 400; }.circle-link:hover { transform: translateY(-5px); background: var(--sage-light); }
.hero-art {
  width: min(34vw, 520px); aspect-ratio: 1; position: absolute; z-index: 1; right: 10vw; bottom: 5vw;
  overflow: hidden; border-radius: 50%; background: var(--blue); opacity: 1;
}
.orbit { position: absolute; inset: 12%; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; }
.orbit-two { inset: 28% -12%; transform: rotate(68deg); }
.skarto-s { position: absolute; left: 25%; top: 18%; color: #eef2ff; font: 400 min(18vw,275px)/.8 Georgia,serif; }
.art-label { position: absolute; right: 7%; top: 45%; color: var(--paper); font-size: 9px; letter-spacing: .16em; transform: rotate(90deg); }

.marquee { overflow: hidden; padding: 18px 0; background: var(--ink); color: var(--paper); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 26px; font-size: 11px; letter-spacing: .14em; animation: marquee 28s linear infinite; }
.marquee-track i { color: var(--sage); font-style: normal; } @keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(90px, 10vw, 160px) clamp(20px, 4vw, 64px); }
.section-head { margin-bottom: clamp(56px, 7vw, 110px); display: grid; grid-template-columns: 1.5fr .7fr; gap: 8vw; }
.section h2, .partnership h2 {
  margin: 24px 0 0; font: 500 clamp(50px, 7vw, 108px)/.94 "Manrope", sans-serif; letter-spacing: -.065em;
}
.section-head > p { max-width: 420px; margin: auto 0 0; color: var(--muted); font-size: 17px; line-height: 1.55; }

.service-list { border-top: 1px solid var(--ink); }
.service-card {
  min-height: 190px; padding: 32px 0; display: grid; grid-template-columns: 60px minmax(220px,1.05fr) 1fr .6fr;
  gap: clamp(20px, 3vw, 55px); align-items: start; border-bottom: 1px solid var(--line);
}
.service-card > span { font-size: 10px; color: var(--muted); }
.service-card h3 { max-width: 360px; margin: 0; font: 500 clamp(24px, 2.2vw, 34px)/1.08 "Manrope", sans-serif; letter-spacing: -.045em; }
.service-card p { max-width: 430px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.service-card b { justify-self: end; text-align: right; font-size: 9px; line-height: 1.5; letter-spacing: .12em; }

.results { background: var(--sage-light); }
.case-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 14px; }
.case { min-height: 540px; padding: 24px; display: flex; flex-direction: column; position: relative; overflow: hidden; border: 1px solid var(--line); }
.case-edtech { background: var(--sage); }.case-fintech { background: var(--ink); color: var(--paper); }.case-health { background: var(--paper); }
.case-top { display: flex; justify-content: space-between; position: relative; z-index: 2; font-size: 9px; letter-spacing: .15em; }
.case-mark { margin: auto; font: 400 min(15vw,220px)/.7 Georgia,serif; letter-spacing: -.12em; transform: rotate(-6deg); }
.case-mark span { font-family: "DM Sans", sans-serif; font-size: .28em; vertical-align: top; }
.case-globe { width: min(19vw,260px); aspect-ratio: 1; margin: auto; position: relative; border: 1px solid currentColor; border-radius: 50%; opacity: .9; }
.case-globe::before, .case-globe::after { content: ""; position: absolute; border: 1px solid currentColor; border-radius: 50%; opacity: .6; }
.case-globe::before { inset: 0 31%; }.case-globe::after { inset: 25% 0; }
.case-globe i:first-child { width: 10px; height: 10px; position: absolute; left: 26%; top: 25%; z-index: 2; border-radius: 50%; background: var(--sage); box-shadow: 7vw 5vw 0 var(--sage), 2vw 10vw 0 var(--sage); }
.case-pulse { margin: auto; font: 500 min(10vw,150px)/1 "Manrope",sans-serif; letter-spacing: -.1em; }
.case-pulse span { color: var(--muted); font-size: .65em; }
.case-copy { padding-top: 16px; position: relative; z-index: 2; border-top: 1px solid currentColor; }
.case-copy h3 { margin: 0 0 18px; font-size: 20px; font-weight: 500; }
.case-copy p { margin: 7px 0; display: flex; justify-content: space-between; gap: 16px; font-size: 12px; line-height: 1.4; text-align: right; }
.case-copy strong { font-size: 15px; font-weight: 500; text-align: left; }

.about { background: var(--ink); color: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.35fr .75fr; gap: 9vw; }
.about-copy { padding-top: 8vw; }
.about-copy p { margin: 0 0 20px; font-size: 17px; line-height: 1.65; }.about-copy p + p { color: #aeb8b3; }
.text-link { margin-top: 20px; padding-bottom: 6px; display: inline-flex; gap: 46px; border-bottom: 1px solid currentColor; font-size: 12px; }
.stats { margin-top: 9vw; padding-top: 32px; display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; border-top: 1px solid rgba(255,255,255,.25); }
.stats div { display: flex; align-items: flex-start; gap: 18px; }
.stats strong { font-size: clamp(36px,4vw,60px); font-weight: 400; line-height: 1; letter-spacing: -.06em; }
.stats span { padding-top: 8px; color: #aeb8b3; font-size: 9px; line-height: 1.5; letter-spacing: .1em; text-transform: uppercase; }

.partnership { min-height: 760px; padding: clamp(90px,8vw,140px) clamp(20px,7vw,110px); display: flex; align-items: center; justify-content: flex-end; position: relative; overflow: hidden; background: var(--sage); }
.partnership-ring { width: min(56vw,850px); aspect-ratio: 1; position: absolute; left: -8vw; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(20,35,30,.22); border-radius: 50%; letter-spacing: -.08em; }
.partnership-ring::before, .partnership-ring::after { content: ""; position: absolute; inset: 11%; border: 1px solid rgba(20,35,30,.14); border-radius: 50%; }
.partnership-ring::after { inset: 24%; }.partnership-ring span { font: 500 min(8vw,120px)/1 "Manrope",sans-serif; }.partnership-ring i { margin: 0 1.2vw; font: 400 min(5vw,72px)/1 Georgia,serif; }
.partnership-copy { width: 44%; position: relative; z-index: 2; }
.partnership-copy p { max-width: 440px; margin-top: 28px; font-size: 16px; line-height: 1.6; }

.presence-heading { max-width: 1050px; margin-top: 55px !important; }
.locations { margin-top: 65px; border-top: 1px solid var(--ink); }
.locations span { min-height: 88px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font: 500 clamp(32px,4vw,58px)/1 "Manrope",sans-serif; letter-spacing: -.05em; }
.locations span::before { content: "—"; width: 52px; color: var(--muted); font-size: 14px; }

.contact { background: var(--sage-light); }
.contact-row { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7vw; align-items: end; }
.contact-row > a { padding-bottom: 24px; position: relative; border-bottom: 1px solid currentColor; font: 500 clamp(34px,4.5vw,68px)/.98 "Manrope",sans-serif; letter-spacing: -.06em; }
.contact-row > a span { position: absolute; right: 0; bottom: 24px; font-size: 28px; }
.contact-details { margin-top: 7vw; padding-top: 22px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; border-top: 1px solid var(--line); font-size: 12px; }
.contact-details p { margin: 0; color: var(--muted); text-align: right; }

footer { padding: 36px clamp(20px,4vw,64px); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 30px; border-top: 1px solid var(--line); background: var(--paper); }
footer > div { display: flex; justify-content: center; gap: 26px; font-size: 11px; } footer p { margin: 0; text-align: right; font-size: 9px; line-height: 1.6; letter-spacing: .09em; }

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

@media (max-width: 1024px) {
  .header-cta { display: none; }
  .hero h1 { font-size: clamp(66px,10.5vw,108px); }
  .case-grid { grid-template-columns: 1fr 1fr; }.case:first-child { grid-column: 1 / -1; }.case-mark { font-size: 24vw; }
  .case-globe { width: 28vw; }.case-globe i:first-child { box-shadow: 10vw 7vw 0 var(--sage), 3vw 15vw 0 var(--sage); }
  .about-grid { grid-template-columns: 1.1fr .9fr; }.stats { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 68px; }
  .site-header { height: 68px; padding: 0 18px; }
  .brand { font-size: 17px; }
  .menu-toggle { display: block; }
  nav { display: none; }
  nav.open { position: absolute; top: 68px; left: 0; right: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 18px 20px; background: var(--paper); border-bottom: 1px solid var(--line); }
  nav.open a { min-height: 50px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 15px; }
  .hero { min-height: auto; padding: 34px 18px 28px; }
  .hero-kicker { max-width: 300px; font-size: 9px; line-height: 1.6; }
  .hero h1 { width: 100%; margin-top: 84px; font-size: 15vw; line-height: .9; letter-spacing: -.072em; }
  .hero-art { width: min(74vw, 360px); position: relative; right: auto; bottom: auto; margin: 40px -12vw 34px auto; opacity: 1; }.skarto-s { font-size: min(39vw, 190px); }
  .hero-bottom { margin-top: 0; gap: 18px; align-items: center; }.hero-bottom p { width: auto; max-width: 62%; font-size: 12px; line-height: 1.55; }
  .circle-link { width: 88px; height: 88px; gap: 8px; font-size: 9px; }
  .marquee { padding: 15px 0; }.marquee-track { gap: 20px; font-size: 9px; }
  .section { padding: 82px 18px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .section h2, .partnership h2 { font-size: 14vw; line-height: .98; }.section-head > p { margin: 0; font-size: 15px; }
  .service-card { min-height: 0; padding: 26px 0; grid-template-columns: 32px 1fr; gap: 10px 12px; }
  .service-card h3 { font-size: 25px; }.service-card p, .service-card b { grid-column: 2; }.service-card b { justify-self: start; text-align: left; margin-top: 5px; }
  .case-grid { grid-template-columns: 1fr; }.case:first-child { grid-column: auto; }.case { min-height: 460px; padding: 20px; }
  .case-mark { font-size: 45vw; }.case-globe { width: 62vw; }.case-globe i:first-child { box-shadow: 22vw 17vw 0 var(--sage), 7vw 34vw 0 var(--sage); }.case-pulse { font-size: 30vw; }
  .about-grid { grid-template-columns: 1fr; gap: 22px; }.about-copy { padding-top: 12px; }.about-copy p { font-size: 15px; }
  .stats { margin-top: 70px; grid-template-columns: 1fr 1fr; gap: 30px 16px; }.stats div { display: block; }.stats span { display: block; }
  .partnership { min-height: 700px; padding: 78px 18px; align-items: flex-start; }
  .partnership-copy { width: 100%; }.partnership-copy p { width: 86%; font-size: 14px; }
  .partnership-ring { width: 120vw; left: -47vw; bottom: -25vw; }.partnership-ring span { font-size: 18vw; }.partnership-ring i { font-size: 10vw; }
  .presence-heading { margin-top: 38px !important; }.locations { margin-top: 42px; }.locations span { min-height: 72px; font-size: 9vw; line-height: 1.05; }.locations span::before { width: 32px; }
  .contact-row { grid-template-columns: 1fr; gap: 44px; }.contact-row > a { font-size: 11vw; }
  .contact-details { margin-top: 70px; grid-template-columns: 1fr; gap: 14px; }.contact-details p { text-align: left; }
  footer { grid-template-columns: 1fr; gap: 26px; padding: 32px 18px; } footer > div { justify-content: flex-start; flex-wrap: wrap; } footer p { text-align: left; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 14.8vw; }.hero-bottom { align-items: flex-start; }.hero-bottom p { max-width: calc(100% - 104px); }
  .stats { grid-template-columns: 1fr; }.case-copy p { display: block; text-align: left; }.case-copy strong { display: block; margin-bottom: 2px; }
}

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