:root {
  --ink: #0a1220;
  --ink-soft: #354255;
  --paper: #f5f3ed;
  --white: #fffef9;
  --line: rgba(10, 18, 32, .15);
  --blue: #3157f6;
  --cyan: #75e9ef;
  --orange: #ff7a45;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(5, 14, 31, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.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; }
.skip-link { position: fixed; z-index: 100; left: 12px; top: 12px; transform: translateY(-150%); background: var(--white); padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { transform: none; }
.floating-contact { position: fixed; z-index: 18; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 10px; min-height: 50px; padding: 0 17px; color: #fff; border: 1px solid rgba(117, 233, 239, .3); border-radius: 999px; background: rgba(9, 17, 31, .9); box-shadow: 0 14px 36px rgba(5, 14, 31, .24); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); text-decoration: none; font-size: 14px; font-weight: 760; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.floating-contact svg { width: 20px; height: 20px; color: var(--cyan); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.floating-contact:hover { background: rgba(20, 32, 58, .97); border-color: rgba(117, 233, 239, .58); box-shadow: 0 18px 44px rgba(5, 14, 31, .3); transform: translateY(-2px); }
.floating-contact:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
.section-shell { width: min(1280px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px max(24px, calc((100vw - 1280px) / 2));
  color: #fff;
  background: rgba(9, 17, 31, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 760; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; color: var(--ink); background: var(--cyan); border-radius: 50%; font-size: 13px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: rgba(255,255,255,.72); text-decoration: none; font-size: 14px; font-weight: 650; transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: #fff; }
.main-nav .nav-cta { color: #fff; padding: 10px 16px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; }
.menu-button { display: none; border: 0; background: transparent; color: #fff; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(290px, .7fr);
  gap: 80px;
  width: 100%;
  max-width: none;
  min-height: 760px;
  padding: 112px max(24px, calc((100vw - 1280px) / 2)) 90px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(49, 87, 246, .32), transparent 26%),
    linear-gradient(135deg, #09111f 0%, #0d1830 62%, #101d36 100%);
}
.hero::after { content: ""; position: absolute; inset: auto -10% -42% 38%; height: 78%; border: 1px solid rgba(117,233,239,.25); border-radius: 50%; transform: rotate(-8deg); pointer-events: none; }
.hero-copy, .hero-proof { position: relative; z-index: 1; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 24px; color: var(--blue); font-size: 13px; line-height: 1.2; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; }
.hero .eyebrow { color: rgba(255,255,255,.63); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(117,233,239,.1); }
h1, h2, h3, p { overflow-wrap: break-word; }
h1 { max-width: 900px; margin: 0; font-size: clamp(3.6rem, 7.2vw, 7.4rem); line-height: .92; letter-spacing: -.072em; font-weight: 780; }
h1 em, .contact h2 em { color: var(--cyan); font-family: inherit; font-style: normal; font-weight: inherit; }
.hero-lead { max-width: 760px; margin: 38px 0 0; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 52px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-size: 15px; font-weight: 750; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--cyan); }
.button-secondary { color: #fff; border: 1px solid rgba(255,255,255,.25); }
.hero-proof { align-self: end; padding: 28px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.proof-label { margin: 0 0 28px; color: rgba(255,255,255,.48); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.proof-row { display: grid; grid-template-columns: 54px 1fr; gap: 12px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.12); }
.proof-row strong { color: var(--cyan); font-size: 13px; }
.proof-row span { font-size: 17px; }
.proof-note { margin: 26px 0 0; padding-top: 22px; color: rgba(255,255,255,.58); border-top: 1px solid rgba(255,255,255,.12); font-size: 14px; }

.intro-strip { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--white); }
.ticker { display: flex; width: max-content; color: var(--ink-soft); font-size: 13px; font-weight: 750; text-transform: uppercase; letter-spacing: .09em; animation: ticker-scroll 24s linear infinite; will-change: transform; }
.ticker-group { display: flex; align-items: center; justify-content: space-around; flex: 0 0 clamp(880px, 72vw, 1180px); gap: 34px; padding: 18px 30px; }
.ticker-group span { white-space: nowrap; }
.ticker i { flex: 0 0 auto; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.intro-strip:hover .ticker { animation-play-state: paused; }
@keyframes ticker-scroll { to { transform: translateX(-25%); } }

.projects { padding-top: 128px; padding-bottom: 90px; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .6fr); gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .support-heading h2, .process h2, .contact h2 { max-width: 820px; margin: 0; font-size: clamp(2.8rem, 5.4vw, 5.4rem); line-height: .96; letter-spacing: -.06em; }
.section-heading > p { max-width: 440px; margin: 0; color: var(--ink-soft); font-size: 18px; }
.project { position: relative; display: grid; grid-template-columns: minmax(340px, .8fr) minmax(0, 1.3fr); gap: 60px; margin: 0 0 34px; padding: 62px; border: 1px solid var(--line); border-radius: 32px; overflow: hidden; background: var(--white); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset; }
.project-index { position: absolute; right: 28px; top: 14px; color: rgba(10,18,32,.05); font-size: 128px; line-height: 1; font-weight: 850; letter-spacing: -.08em; }
.project-copy { position: relative; z-index: 1; display: flex; flex-direction: column; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--blue); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.project-meta span + span { color: var(--ink-soft); }
.project h3 { margin: 22px 0 0; font-size: clamp(2.4rem, 4.5vw, 4.8rem); line-height: 1; letter-spacing: -.06em; }
.project-summary { margin: 25px 0 0; color: var(--ink-soft); font-size: 18px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; }
.tag-list li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 650; }
.project-details { display: grid; gap: 18px; margin-top: auto; padding-top: 38px; }
.project-details div { display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.project-details span { color: var(--blue); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.project-details p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: auto; padding-top: 38px; }
.metric-grid div { padding: 18px 14px 0 0; border-top: 1px solid var(--line); }
.metric-grid strong { display: block; font-size: 24px; letter-spacing: -.04em; }
.metric-grid span { display: block; margin-top: 5px; color: var(--ink-soft); font-size: 12px; line-height: 1.35; }
.case-link { display: inline-flex; align-items: center; gap: 10px; width: fit-content; margin-top: 28px; padding-bottom: 5px; color: var(--blue); border-bottom: 1px solid rgba(49,87,246,.35); text-decoration: none; font-size: 14px; font-weight: 800; }
.case-link span { transition: transform .2s ease; }
.case-link:hover span, .case-link:focus-visible span { transform: translateX(4px); }
.media-stage { position: relative; min-height: 520px; align-self: stretch; padding: 42px 34px 34px; overflow: hidden; border-radius: 22px; background: linear-gradient(145deg, #dfeaff, #a9c4ff); box-shadow: var(--shadow); }
.media-stage::before { content: ""; position: absolute; width: 360px; height: 360px; right: -100px; bottom: -130px; border-radius: 50%; background: rgba(255,255,255,.36); }
.media-stage-dark { background: linear-gradient(145deg, #152445, #0a1120); }
.media-stage-warm { background: linear-gradient(145deg, #ffd4b4, #ff8f65); }
.media-toolbar { position: absolute; z-index: 2; display: flex; align-items: center; gap: 7px; left: 34px; right: 34px; top: 34px; height: 34px; padding: 0 13px; border-radius: 10px 10px 0 0; background: rgba(255,255,255,.94); }
.media-toolbar span { width: 7px; height: 7px; border-radius: 50%; background: #c9ced6; }
.media-toolbar b { margin-left: auto; color: #677386; font-size: 10px; font-weight: 650; }
.media-placeholder { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; min-height: 444px; padding: 48px; color: #fff; border: 1px dashed rgba(255,255,255,.65); border-radius: 16px; background: rgba(9,17,31,.58); backdrop-filter: blur(9px); }
.media-placeholder strong { max-width: 430px; font-size: clamp(1.7rem, 3vw, 3.2rem); line-height: 1.05; letter-spacing: -.045em; }
.media-placeholder p { max-width: 400px; margin: 14px 0 0; color: rgba(255,255,255,.7); }
.media-kicker { margin-bottom: auto; color: var(--cyan); font-size: 12px; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; }
.phone-slot { position: absolute; z-index: 3; right: 24px; bottom: 24px; display: grid; place-items: end center; width: 116px; height: 224px; padding: 12px; color: #fff; border: 5px solid #101827; border-radius: 24px; background: rgba(49,87,246,.88); box-shadow: 0 20px 55px rgba(5,14,31,.34); }
.phone-slot span { font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.project-gallery { display: grid; align-self: stretch; min-width: 0; gap: 14px; }
.media-stage-gallery { min-height: 0; padding: 68px 18px 18px; background: linear-gradient(145deg, #dbeeff, #8ecfed); }
.media-stage-gallery::before { display: none; }
.gallery-main { position: relative; display: block; width: 100%; height: 466px; padding: 0; overflow: hidden; color: #fff; border: 0; border-radius: 13px; background: #eaf6fb; cursor: zoom-in; box-shadow: 0 14px 34px rgba(7, 57, 88, .18); }
.gallery-main img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .35s ease; }
.project-gallery[data-slide-format="mobile"] .gallery-main img { image-rendering: auto; }
.gallery-main:hover img, .gallery-main:focus-visible img { transform: scale(1.018); }
.project-gallery[data-slide-format="mobile"] .gallery-main:hover img,
.project-gallery[data-slide-format="mobile"] .gallery-main:focus-visible img { transform: none; }
.gallery-main:focus-visible, .gallery-thumb:focus-visible, .gallery-arrow:focus-visible, .lightbox-close:focus-visible, .lightbox-arrow:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.gallery-expand { position: absolute; right: 14px; bottom: 14px; padding: 8px 12px; border-radius: 999px; background: rgba(7, 19, 34, .84); backdrop-filter: blur(8px); font-size: 12px; font-weight: 750; }
.gallery-arrow { position: absolute; z-index: 3; top: calc(50% + 24px); display: grid; place-items: center; width: 44px; height: 44px; padding: 0; color: #fff; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(7, 19, 34, .78); backdrop-filter: blur(8px); cursor: pointer; font: inherit; font-size: 20px; line-height: 1; transform: translateY(-50%); transition: transform .2s ease, background .2s ease; }
.gallery-arrow:hover { background: var(--blue); transform: translateY(-50%) scale(1.07); }
.gallery-arrow-prev { left: 30px; }
.gallery-arrow-next { right: 30px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.gallery-thumbs .gallery-thumb:last-child:nth-child(odd) { grid-column: 1 / -1; }
.gallery-thumb { display: grid; grid-template-columns: 74px 1fr; align-items: center; gap: 12px; min-width: 0; padding: 9px; color: var(--ink); text-align: left; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 254, 249, .72); cursor: pointer; transition: border-color .2s ease, transform .2s ease, background .2s ease; }
.gallery-thumb:hover { transform: translateY(-2px); border-color: rgba(49, 87, 246, .45); }
.gallery-thumb.is-active { color: #fff; border-color: var(--blue); background: var(--blue); }
.gallery-thumb img { display: block; width: 74px; aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; border-radius: 8px; }
.gallery-thumb span { min-width: 0; font-size: 13px; font-weight: 750; }
.lightbox { width: min(94vw, 1500px); max-width: none; padding: 52px 18px 18px; overflow: visible; border: 0; border-radius: 20px; background: #08111f; box-shadow: 0 28px 100px rgba(0, 0, 0, .55); }
.lightbox::backdrop { background: rgba(2, 7, 14, .86); backdrop-filter: blur(6px); }
.lightbox img { display: block; width: 100%; max-height: 84vh; object-fit: contain; border-radius: 12px; }
.lightbox-meta { position: absolute; top: 16px; left: 18px; right: 150px; display: flex; align-items: center; gap: 12px; min-width: 0; color: #fff; font-size: 13px; font-weight: 750; }
.lightbox-meta span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lightbox-meta span:last-child { flex: 0 0 auto; color: rgba(255,255,255,.58); }
.lightbox-close { position: absolute; top: 10px; right: 12px; min-height: 34px; padding: 0 12px; color: #fff; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.08); cursor: pointer; font: inherit; font-size: 13px; font-weight: 700; }
.lightbox-arrow { position: absolute; z-index: 2; top: 50%; display: grid; place-items: center; width: 50px; height: 50px; padding: 0; color: #fff; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; background: rgba(7,19,34,.82); backdrop-filter: blur(8px); box-shadow: 0 10px 30px rgba(0,0,0,.25); cursor: pointer; font: inherit; font-size: 24px; line-height: 1; transform: translateY(-50%); transition: transform .2s ease, background .2s ease; }
.lightbox-arrow:hover { background: var(--blue); transform: translateY(-50%) scale(1.07); }
.lightbox-arrow-prev { left: 30px; }
.lightbox-arrow-next { right: 30px; }

.about { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr); gap: 64px 80px; align-items: start; padding-top: 110px; padding-bottom: 120px; border-top: 1px solid var(--line); }
.about-copy { padding: 12px 0; }
.about-copy h2 { max-width: 720px; margin: 0; font-size: clamp(2.8rem, 5.2vw, 5.2rem); line-height: .94; letter-spacing: -.06em; }
.about-copy > p { max-width: 720px; margin: 20px 0 0; color: var(--ink-soft); font-size: 17px; }
.about-copy .about-lead { margin-top: 32px; color: var(--ink); font-size: 21px; line-height: 1.48; }
.about-stack { display: flex; flex-wrap: wrap; gap: 8px; margin: 34px 0 0; padding: 0; list-style: none; }
.about-stack li { padding: 8px 12px; color: var(--ink); border: 1px solid var(--line); border-radius: 999px; background: rgba(255,254,249,.72); font-size: 13px; font-weight: 700; }
.about-values { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.about-values article { display: grid; grid-template-columns: 38px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.about-values article > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.about-values strong { display: block; font-size: 18px; line-height: 1.25; }
.about-values p { margin: 8px 0 0; color: var(--ink-soft); font-size: 14px; }
.about-path { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr); gap: 70px; padding-top: 58px; border-top: 1px solid var(--line); }
.about-path-heading h3 { max-width: 470px; margin: 0; font-size: clamp(2rem, 3.4vw, 3.4rem); line-height: 1; letter-spacing: -.05em; }
.about-path-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.about-path-list li { min-height: 230px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.about-path-list li > span { display: block; margin-bottom: 42px; color: var(--blue); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.about-path-list strong { display: block; font-size: 20px; line-height: 1.2; }
.about-path-list p { margin: 12px 0 0; color: var(--ink-soft); font-size: 14px; }

.services { padding-top: 100px; padding-bottom: 130px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-grid article { display: flex; flex-direction: column; min-height: 480px; padding: 32px 26px; border-right: 1px solid var(--line); }
.service-grid article:last-child { border-right: 0; }
.service-number { color: var(--blue); font-size: 13px; font-weight: 800; }
.service-grid h3 { margin: 46px 0 14px; font-size: 28px; line-height: 1.04; letter-spacing: -.04em; }
.service-grid p { margin: 0; color: var(--ink-soft); }
.service-grid ul { display: grid; gap: 0; margin: 26px 0 30px; padding: 0; list-style: none; }
.service-grid li { position: relative; padding: 9px 0 9px 18px; border-top: 1px solid rgba(10,18,32,.09); color: var(--ink-soft); font-size: 13px; }
.service-grid li::before { content: "—"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.service-price { display: flex; flex-direction: column; gap: 3px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.service-price strong { font-size: 20px; letter-spacing: -.03em; }
.service-price span { color: var(--ink-soft); font-size: 12px; }
.pricing-note { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 24px; padding: 24px 28px; color: #fff; border-radius: 20px; background: var(--ink); }
.pricing-note p { max-width: 830px; margin: 0; color: rgba(255,255,255,.64); font-size: 14px; }
.pricing-note p strong { color: #fff; }
.pricing-note .button-primary { flex: 0 0 auto; }

.support { width: 100%; max-width: none; padding: 128px max(24px, calc((100vw - 1280px) / 2)); background: #e7efff; }
.support-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .6fr); gap: 80px; align-items: end; }
.support-heading > p { max-width: 440px; margin: 0; color: var(--ink-soft); font-size: 18px; }
.support-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 58px; }
.support-card { display: flex; flex-direction: column; min-height: 500px; padding: 30px; border: 1px solid rgba(10,18,32,.12); border-radius: 24px; background: rgba(255,254,249,.82); box-shadow: 0 18px 55px rgba(5,14,31,.07); }
.support-card-featured { color: #fff; border-color: var(--ink); background: var(--ink); transform: translateY(-10px); box-shadow: 0 26px 70px rgba(5,14,31,.2); }
.support-card-label { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--blue); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.support-card-label strong { font-size: 12px; }
.support-card-featured .support-card-label { color: var(--cyan); }
.support-card h3 { margin: 44px 0 14px; font-size: 30px; line-height: 1.05; letter-spacing: -.04em; }
.support-card > p { margin: 0; color: var(--ink-soft); }
.support-card-featured > p { color: rgba(255,255,255,.68); }
.support-card ul { display: grid; gap: 0; margin: 28px 0 34px; padding: 0; list-style: none; }
.support-card li { position: relative; padding: 11px 0 11px 20px; border-top: 1px solid rgba(10,18,32,.1); font-size: 14px; }
.support-card li::before { content: "—"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.support-card-featured li { border-color: rgba(255,255,255,.12); }
.support-card-featured li::before { color: var(--cyan); }
.support-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(10,18,32,.16); }
.support-card-featured .support-price { border-color: rgba(255,255,255,.18); }
.support-price strong { font-size: 24px; letter-spacing: -.035em; }
.support-price span { color: var(--ink-soft); font-size: 13px; }
.support-card-featured .support-price span { color: rgba(255,255,255,.6); }
.support-note { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 24px; padding: 24px 28px; border: 1px solid rgba(10,18,32,.12); border-radius: 20px; background: rgba(255,254,249,.6); }
.support-note p { max-width: 720px; margin: 0; color: var(--ink-soft); font-size: 14px; }
.support-note p strong { color: var(--ink); }
.support-note .button-primary { flex: 0 0 auto; color: #fff; background: var(--blue); }

.process { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr); gap: 100px; width: 100%; max-width: none; padding: 128px max(24px, calc((100vw - 1280px) / 2)); color: #fff; background: var(--ink); }
.process .eyebrow { color: var(--cyan); }
.process-intro > p:last-child { max-width: 540px; margin: 30px 0 0; color: rgba(255,255,255,.6); font-size: 18px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.17); }
.process-list li { display: grid; grid-template-columns: 62px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.process-list > li > span { color: var(--cyan); font-size: 13px; font-weight: 800; }
.process-list strong { font-size: 20px; }
.process-list p { margin: 5px 0 0; color: rgba(255,255,255,.55); }

.contact { width: 100%; max-width: none; padding: 130px max(24px, calc((100vw - 1280px) / 2)); background: var(--blue); color: #fff; }
.contact .eyebrow { color: rgba(255,255,255,.65); }
.contact h2 em { color: var(--cyan); }
.contact > p:not(.eyebrow) { max-width: 670px; margin: 30px 0 0; color: rgba(255,255,255,.73); font-size: 19px; }
.contact-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 42px; }
.contact .button-primary { background: var(--cyan); }
.contact-note { color: rgba(255,255,255,.78); font-size: 15px; font-weight: 700; text-decoration: none; }
.contact-note:hover, .contact-note:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 5px; }
.site-footer { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: none; padding: 24px max(24px, calc((100vw - 1280px) / 2)); color: rgba(255,255,255,.55); background: var(--ink); font-size: 13px; }
.site-footer a { color: #fff; text-decoration: none; }

/* Project case pages */
.case-page { background: #f5f3ed; }
.case-page .site-header { position: relative; }
.case-hero { position: relative; overflow: hidden; padding-top: 92px; padding-bottom: 96px; color: #fff; background: var(--ink); }
.case-hero::after { content: ""; position: absolute; right: -10vw; bottom: -34vw; width: 58vw; height: 58vw; border: 1px solid rgba(117,233,239,.24); border-radius: 50%; box-shadow: 0 0 0 8vw rgba(117,233,239,.035), 0 0 0 16vw rgba(117,233,239,.025); pointer-events: none; }
.case-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(290px, .55fr); gap: 80px; align-items: end; }
.case-back { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 46px; color: rgba(255,255,255,.65); text-decoration: none; font-size: 14px; font-weight: 700; }
.case-back:hover, .case-back:focus-visible { color: var(--cyan); }
.case-hero h1 { max-width: 900px; margin: 18px 0 0; font-size: clamp(4rem, 8vw, 8rem); line-height: .86; letter-spacing: -.075em; }
.case-hero-lead { max-width: 760px; margin: 34px 0 0; color: rgba(255,255,255,.68); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.case-facts { display: grid; margin: 0; border-top: 1px solid rgba(255,255,255,.17); }
.case-facts div { display: grid; grid-template-columns: 105px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.case-facts dt { color: var(--cyan); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.case-facts dd { margin: 0; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 650; }
.case-section { padding-top: 104px; padding-bottom: 104px; }
.case-section-head { display: grid; grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr); gap: 84px; align-items: start; }
.case-section-head h2, .case-outcome h2, .case-next h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 5rem); line-height: .96; letter-spacing: -.06em; }
.case-prose { max-width: 760px; }
.case-prose > p { margin: 0 0 20px; color: var(--ink-soft); font-size: 18px; }
.case-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 38px 0 0; padding: 0; list-style: none; }
.case-points li { min-height: 132px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); font-weight: 750; }
.case-points li span { display: block; margin-bottom: 16px; color: var(--blue); font-size: 12px; letter-spacing: .1em; }
.case-gallery-section { padding-top: 0; padding-bottom: 112px; }
.case-gallery-section .project-gallery { width: 100%; }
.case-gallery-section .media-stage-gallery { padding: 76px 26px 26px; border-radius: 28px; }
.case-gallery-section .media-toolbar { left: 26px; right: 26px; top: 26px; }
.case-gallery-section .gallery-main { height: min(65vw, 720px); min-height: 520px; }
.case-gallery-section .gallery-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.case-gallery-section .gallery-thumbs.case-gallery-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.case-gallery-section .gallery-thumbs.case-gallery-three .gallery-thumb:last-child { grid-column: auto; }
.case-gallery-section .gallery-thumb { grid-template-columns: 88px 1fr; }
.case-gallery-section .gallery-thumb img { width: 88px; }
.case-outcome { width: 100%; max-width: none; padding: 112px max(24px, calc((100vw - 1280px) / 2)); color: #fff; background: var(--ink); }
.case-outcome-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 90px; align-items: start; }
.case-outcome .eyebrow { color: var(--cyan); }
.case-outcome-list { display: grid; gap: 1px; margin: 0; padding: 0; list-style: none; background: rgba(255,255,255,.14); }
.case-outcome-list li { padding: 24px; background: var(--ink); }
.case-outcome-list strong { display: block; font-size: 18px; }
.case-outcome-list p { margin: 7px 0 0; color: rgba(255,255,255,.58); }
.case-next { padding-top: 110px; padding-bottom: 120px; }
.case-next-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 46px; }
.case-next-card { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; min-height: 230px; padding: 30px; color: #fff; border-radius: 24px; background: var(--blue); text-decoration: none; transition: transform .2s ease; }
.case-next-card:last-child { color: var(--ink); background: var(--cyan); }
.case-next-card:hover, .case-next-card:focus-visible { transform: translateY(-4px); }
.case-next-card span { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.case-next-card strong { max-width: 360px; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; letter-spacing: -.05em; }

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; gap: 60px; min-height: auto; }
  .hero-proof { max-width: 600px; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .project { grid-template-columns: 1fr; }
  .project-copy { min-height: 430px; }
  .support-heading { grid-template-columns: 1fr; gap: 26px; }
  .support-grid { grid-template-columns: 1fr; }
  .support-card { min-height: 0; }
  .support-card-featured { transform: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid article:nth-child(2) { border-right: 0; }
  .service-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pricing-note { align-items: stretch; flex-direction: column; }
  .pricing-note .button { width: fit-content; }
  .process { grid-template-columns: 1fr; gap: 60px; }
  .about { grid-template-columns: 1fr; }
  .about-values { display: grid; grid-template-columns: repeat(3, 1fr); }
  .about-values article { padding: 24px; border-right: 1px solid var(--line); }
  .about-values article:last-child { border-right: 0; }
  .about-path { grid-template-columns: 1fr; gap: 34px; }
  .case-hero-inner, .case-section-head, .case-outcome-grid { grid-template-columns: 1fr; gap: 48px; }
  .case-gallery-section .gallery-thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-gallery-section .gallery-thumbs.case-gallery-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-gallery-section .gallery-thumbs.case-gallery-three .gallery-thumb:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .section-shell { width: min(100% - 28px, 1280px); }
  .hero.section-shell,
  .support.section-shell,
  .process.section-shell,
  .contact.section-shell,
  .site-footer.section-shell { width: 100%; margin-inline: 0; }
  .floating-contact { right: 14px; bottom: 14px; min-height: 48px; padding: 0 15px; font-size: 13px; }
  .site-header { padding: 14px; }
  .menu-button { display: grid; gap: 6px; padding: 10px; }
  .menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; background: currentColor; transition: transform .2s ease; }
  .main-nav { position: absolute; left: 14px; right: 14px; top: 68px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: #111b2e; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
  .main-nav[data-open="true"] { display: flex; }
  .main-nav a { padding: 13px; }
  .main-nav .nav-cta { margin-top: 6px; text-align: center; }
  .hero { padding: 82px 18px 62px; }
  h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-lead { margin-top: 28px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .projects { padding-top: 82px; }
  .section-heading h2, .support-heading h2, .process h2, .contact h2 { font-size: clamp(2.5rem, 13vw, 4.2rem); }
  .project { gap: 40px; padding: 26px; border-radius: 24px; }
  .project-copy { min-height: 0; }
  .project-index { font-size: 84px; }
  .project-details, .metric-grid { margin-top: 30px; padding-top: 0; }
  .metric-grid { grid-template-columns: 1fr; gap: 16px; }
  .metric-grid div { display: grid; grid-template-columns: 100px 1fr; gap: 12px; align-items: baseline; }
  .media-stage { min-height: 420px; padding: 28px 18px 18px; }
  .media-toolbar { left: 18px; right: 18px; top: 20px; }
  .media-placeholder { min-height: 374px; padding: 28px 22px; }
  .phone-slot { width: 92px; height: 178px; right: 10px; bottom: 10px; }
  .media-stage-gallery { min-height: 0; padding: 58px 10px 10px; }
  .media-stage-gallery .media-toolbar { left: 10px; right: 10px; top: 14px; }
  .gallery-main { height: 466px; }
  .gallery-arrow { top: calc(50% + 20px); width: 40px; height: 40px; }
  .gallery-arrow-prev { left: 18px; }
  .gallery-arrow-next { right: 18px; }
  .gallery-thumbs { gap: 8px; }
  .gallery-thumb { grid-template-columns: 52px 1fr; gap: 8px; padding: 7px; }
  .gallery-thumb img { width: 52px; aspect-ratio: 4 / 5; object-position: top center; }
  .lightbox { width: calc(100vw - 20px); padding: 48px 10px 10px; }
  .lightbox-meta { left: 12px; right: 122px; font-size: 12px; }
  .lightbox-arrow { width: 44px; height: 44px; background: rgba(7,19,34,.9); font-size: 22px; }
  .lightbox-arrow-prev { left: 16px; }
  .lightbox-arrow-next { right: 16px; }
  .services { padding-top: 70px; padding-bottom: 80px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 0; padding: 30px 8px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-grid article:last-child { border-bottom: 0; }
  .service-grid h3 { margin-top: 42px; }
  .service-price { margin-top: 12px; }
  .pricing-note { padding: 22px; }
  .pricing-note .button { width: 100%; }
  .support { padding: 86px 18px; }
  .support-grid { margin-top: 40px; }
  .support-card { padding: 26px; }
  .support-note { align-items: stretch; flex-direction: column; padding: 22px; }
  .support-note .button { width: 100%; }
  .process, .contact { padding: 86px 18px; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 8px; padding: 24px 18px; }
  .about { grid-template-columns: 1fr; gap: 34px; padding-top: 76px; padding-bottom: 82px; }
  .about-copy h2 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .about-copy .about-lead { font-size: 19px; }
  .about-values { display: flex; }
  .about-values article { padding: 22px 0; border-right: 0; }
  .about-path { grid-column: auto; padding-top: 44px; }
  .about-path-list { grid-template-columns: 1fr; }
  .about-path-list li { min-height: 0; }
  .about-path-list li > span { margin-bottom: 28px; }
  .case-hero { padding: 60px 18px 70px; }
  .case-back { margin-bottom: 34px; }
  .case-hero h1 { font-size: clamp(3.4rem, 18vw, 5.3rem); }
  .case-section { padding: 76px 0; }
  .case-points { grid-template-columns: 1fr; }
  .case-gallery-section { padding: 0 14px 82px; }
  .case-gallery-section .media-stage-gallery { padding: 58px 10px 10px; }
  .case-gallery-section .media-toolbar { left: 10px; right: 10px; top: 14px; }
  .case-gallery-section .gallery-main { height: 500px; min-height: 0; }
  .case-gallery-section .gallery-thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-gallery-section .gallery-thumb { grid-template-columns: 52px 1fr; }
  .case-gallery-section .gallery-thumb img { width: 52px; }
  .case-outcome { padding: 82px 18px; }
  .case-next { padding: 82px 0; }
  .case-next-links { grid-template-columns: 1fr; }
  .case-next-card { min-height: 190px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .ticker { animation: none; transform: none; }
}
