@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin-wght-normal.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --midnight: #0b1020;
  --navy: #121a31;
  --navy-2: #18233d;
  --line: #263351;
  --white: #f7f9ff;
  --muted: #9ca9c7;
  --teal: #13d8c7;
  --violet: #7c5cfc;
  --ink: #0d1325;
  --paper: #f3f6fb;
  --font: "Manrope", "Segoe UI", sans-serif;
  --gradient: linear-gradient(135deg, var(--teal), var(--violet));
  --pad: clamp(1.25rem, 5vw, 5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--paper); font-family: var(--font); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link { position: fixed; z-index: 100; top: .75rem; left: .75rem; padding: .7rem 1rem; color: var(--midnight); background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0 var(--pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(to bottom, rgba(5,10,22,.64), transparent);
  transition: background .25s ease, height .25s ease, border-color .25s ease;
}
.site-header.is-scrolled,
.compact-header { height: 70px; background: rgba(11,16,32,.94); border-color: var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: .75rem; width: max-content; }
.brand img { width: 46px; height: 46px; border-radius: 12px; }
.brand-name { color: var(--white); font-size: 1.28rem; font-weight: 750; letter-spacing: -.045em; white-space: nowrap; }
.brand-name b { display: inline-grid; place-items: center; margin-left: .22rem; padding: .24rem .38rem; border-radius: .42rem; color: white; background: var(--gradient); font-size: .72em; letter-spacing: .02em; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.4rem); }
.desktop-nav a { color: rgba(247,249,255,.76); font-size: .73rem; font-weight: 700; letter-spacing: .04em; }
.desktop-nav a:hover { color: var(--teal); }
.header-cta { justify-self: end; padding: .72rem 1rem; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; color: var(--white); font-size: .68rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.header-cta:hover { color: var(--midnight); background: var(--white); }
.menu-button, .mobile-nav { display: none; }

.hero { position: relative; min-height: min(900px, 100svh); display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--midnight); }
.hero-image, .hero-shade, .hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(7,24,37,.88) 0%, rgba(7,24,37,.72) 31%, rgba(7,24,37,.18) 66%, rgba(7,24,37,.04) 100%), linear-gradient(0deg, rgba(7,24,37,.5), transparent 46%); }
.hero-grid { opacity: .12; background-image: linear-gradient(rgba(19,216,199,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(19,216,199,.15) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(90deg, black, transparent 62%); }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 10.5rem var(--pad) 9rem; }
.eyebrow, .section-label { margin: 0 0 1.5rem; color: var(--teal); font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: .7rem; }
.eyebrow span { width: 34px; height: 1px; background: var(--teal); }
.hero h1, .board-hero h1 { max-width: 850px; margin: 0; font-size: clamp(4rem, 8vw, 8rem); line-height: .92; letter-spacing: -.075em; }
.hero h1 em, .board-hero h1 em { color: transparent; background: var(--gradient); background-clip: text; -webkit-background-clip: text; font-style: normal; }
.hero-copy { max-width: 620px; margin: 2rem 0 0; color: rgba(247,249,255,.76); font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.25rem; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 1.5rem; padding: 0 1.25rem; border: 1px solid transparent; border-radius: .2rem; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.button-primary { color: var(--midnight); background: var(--teal); box-shadow: 0 10px 35px rgba(19,216,199,.16); }
.button-primary:hover { background: #45ecdd; }
.button-ghost { color: var(--white); border-color: rgba(247,249,255,.34); background: rgba(11,16,32,.18); }
.button-ghost:hover { border-color: var(--white); }
.hero-proof { position: absolute; z-index: 3; right: var(--pad); bottom: 2.3rem; display: flex; border: 1px solid rgba(255,255,255,.14); background: rgba(11,16,32,.62); backdrop-filter: blur(12px); }
.hero-proof div { min-width: 170px; padding: 1rem 1.2rem; border-right: 1px solid rgba(255,255,255,.12); }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { color: var(--white); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-proof span { margin-top: .3rem; color: var(--muted); font-size: .67rem; }

.section-pad { padding: clamp(5rem, 9vw, 9rem) var(--pad); }
.intro { display: grid; grid-template-columns: .44fr 1fr; gap: 3rem; background: var(--white); }
.intro-copy { max-width: 980px; }
.intro h2, .section-heading h2, .board-copy h2, .process h2, .contact h2, .board-intro h2 { margin: 0; font-size: clamp(2.8rem, 5.8vw, 6rem); line-height: .98; letter-spacing: -.065em; }
.intro h2 span, .board-copy h2 span { color: var(--violet); }
.intro-copy > p { max-width: 650px; margin: 2rem 0 0 auto; color: #5e6a86; font-size: 1.05rem; line-height: 1.85; }

.services { background: var(--midnight); color: var(--white); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3.6rem; }
.section-heading h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
.section-heading > p { max-width: 390px; margin: 0; color: var(--muted); line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 400px; padding: clamp(2rem, 4vw, 3.5rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--navy); overflow: hidden; }
.service-card::after { content: ""; position: absolute; width: 280px; height: 280px; right: -160px; bottom: -180px; border-radius: 50%; background: var(--gradient); opacity: 0; filter: blur(35px); transition: opacity .3s ease; }
.service-card:hover::after, .service-featured::after { opacity: .15; }
.service-number { color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .16em; }
.service-icon { position: absolute; top: 2.5rem; right: 2.5rem; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--teal); font-size: 1.15rem; }
.service-card h3 { max-width: 420px; margin: 5.5rem 0 1rem; font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -.05em; }
.service-card p { max-width: 540px; color: var(--muted); line-height: 1.75; }
.service-card ul { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.8rem 0 0; padding: 0; list-style: none; }
.service-card li { padding: .55rem .7rem; border: 1px solid var(--line); border-radius: 999px; color: #c8d0e4; font-size: .67rem; }

.board-feature { display: grid; grid-template-columns: minmax(320px,.8fr) minmax(320px,1fr); align-items: center; gap: clamp(3rem, 8vw, 9rem); background: #e8edf7; }
.board-art { min-height: 560px; display: grid; place-items: center; padding: 3rem; border-radius: .4rem; background: radial-gradient(circle at 18% 20%, rgba(19,216,199,.24), transparent 28%), radial-gradient(circle at 82% 76%, rgba(124,92,252,.28), transparent 30%), var(--navy); box-shadow: 0 35px 80px rgba(11,16,32,.16); }
.board-frame { width: min(350px, 100%); min-height: 410px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 2rem; color: var(--white); border: 12px solid #202a42; outline: 1px solid rgba(255,255,255,.2); background: var(--midnight); text-align: center; transform: rotate(-2deg); box-shadow: 18px 22px 0 rgba(19,216,199,.18); }
.board-frame::before, .board-frame::after { content: ""; position: absolute; }
.board-frame span { color: var(--teal); font-size: .74rem; font-weight: 800; letter-spacing: .24em; }
.board-frame strong { margin: .5rem 0; font-size: clamp(4rem, 8vw, 6.5rem); line-height: .9; letter-spacing: -.08em; }
.board-frame i { color: var(--muted); font-size: 1rem; font-style: normal; }
.board-copy p:not(.section-label) { max-width: 580px; color: #5e6a86; font-size: 1rem; line-height: 1.8; }
.text-link { display: inline-flex; gap: 1.5rem; margin-top: 1.3rem; padding-bottom: .45rem; border-bottom: 1px solid var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { color: var(--violet); }

.process { color: var(--white); background: var(--navy); }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); margin-top: 4rem; border-top: 1px solid var(--line); }
.process-grid article { min-height: 260px; padding: 2rem; border-right: 1px solid var(--line); }
.process-grid article:last-child { border-right: 0; }
.process-grid span { color: var(--teal); font-size: .7rem; font-weight: 800; letter-spacing: .15em; }
.process-grid h3 { margin: 4rem 0 .7rem; font-size: 1.35rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.7; }

.contact { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(3rem, 8vw, 9rem); color: var(--white); background: var(--midnight); border-top: 1px solid var(--line); }
.contact-copy > p:not(.section-label) { max-width: 600px; color: var(--muted); line-height: 1.8; }
.contact-card { padding: clamp(2rem, 4vw, 3.5rem); border: 1px solid var(--line); background: var(--navy); }
.contact-card > p { margin: 0 0 1rem; color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-email { display: block; margin-bottom: 2.3rem; color: var(--white); font-size: clamp(1.35rem, 3vw, 2.5rem); font-weight: 750; letter-spacing: -.04em; overflow-wrap: anywhere; }
.contact-card .button { width: 100%; }
.contact-card small { display: block; margin-top: 1rem; color: var(--muted); text-align: center; }

footer { min-height: 190px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 3rem; padding: 3rem var(--pad); color: var(--muted); background: #070b16; border-top: 1px solid var(--line); }
footer p { margin: 0; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
footer > div { display: flex; gap: 1.5rem; font-size: .72rem; }
footer a:hover { color: var(--teal); }
footer small { grid-column: 1 / -1; border-top: 1px solid #1b243a; padding-top: 1.5rem; }

/* Ad Boards */
.board-page { background: var(--midnight); }
.board-hero { min-height: 780px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(3rem, 7vw, 8rem); padding-top: 10rem; color: var(--white); background: radial-gradient(circle at 80% 20%, rgba(124,92,252,.18), transparent 30%), var(--midnight); }
.board-hero-copy > p:not(.eyebrow) { max-width: 620px; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.board-hero-copy .button { margin-top: 1.4rem; }
.board-hero-art { min-height: 600px; display: grid; place-items: center; padding: 0; overflow: hidden; background: linear-gradient(145deg, rgba(19,216,199,.15), rgba(124,92,252,.18)); border: 1px solid var(--line); }
.board-hero-art img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; object-position: 64% center; }
.board-frame.large { min-height: 500px; width: min(410px,100%); }
.board-intro { display: grid; grid-template-columns: .45fr 1fr; gap: 3rem; background: var(--white); }
.board-intro > div { max-width: 940px; }
.board-intro p:last-child { max-width: 700px; margin: 2rem 0 0 auto; color: #5e6a86; line-height: 1.8; }
.board-example { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2.5rem, 6vw, 7rem); align-items: center; color: var(--white); background: #0d1427; }
.board-example-image { min-height: 520px; overflow: hidden; border: 1px solid var(--line); background: var(--navy); }
.board-example-image img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: center; }
.board-example-copy h2 { max-width: 720px; margin: .75rem 0 1.5rem; font-size: clamp(2.8rem, 5vw, 5.3rem); line-height: .98; letter-spacing: -.055em; }
.board-example-copy > p:not(.section-label) { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.board-example-copy ul { display: grid; gap: .85rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.board-example-copy li { padding: 1rem 0; color: var(--muted); border-top: 1px solid var(--line); line-height: 1.6; }
.board-example-copy li strong { color: var(--white); }
.board-benefits { display: grid; grid-template-columns: repeat(3,1fr); padding-top: 0; color: var(--white); background: var(--navy); }
.board-benefits article { min-height: 300px; padding: 2.5rem; border: 1px solid var(--line); border-right: 0; }
.board-benefits article:last-child { border-right: 1px solid var(--line); }
.board-benefits span { color: var(--teal); font-size: .7rem; font-weight: 800; }
.board-benefits h3 { margin: 5rem 0 .7rem; font-size: 1.6rem; }
.board-benefits p { color: var(--muted); line-height: 1.7; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .menu-button { width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; border: 0; color: white; background: transparent; }
  .menu-button span { width: 24px; height: 2px; background: currentColor; transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav { position: absolute; inset: 100% 0 auto; display: none; flex-direction: column; gap: 0; padding: 1rem var(--pad) 1.5rem; background: rgba(11,16,32,.98); border-bottom: 1px solid var(--line); }
  .mobile-nav.is-open { display: flex; }
  .mobile-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-weight: 700; }
  .hero-proof { display: none; }
  .intro, .contact, .board-hero, .board-intro, .board-example { grid-template-columns: 1fr; }
  .intro-copy > p, .board-intro p:last-child { margin-left: 0; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid article { border-bottom: 1px solid var(--line); }
  .board-hero-art { min-height: 520px; }
  .board-example-image { min-height: 440px; }
  .board-example-image img { min-height: 440px; }
}

@media (max-width: 760px) {
  .site-header { height: 68px; gap: .7rem; }
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 1.05rem; }
  .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { min-height: 760px; align-items: end; }
  .hero-image { object-position: 70% center; opacity: .94; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,24,37,.96) 0%, rgba(7,24,37,.74) 48%, rgba(7,24,37,.2) 100%); }
  .hero-content { padding: 9rem 1.2rem 5rem; }
  .hero h1, .board-hero h1 { font-size: clamp(3.6rem, 17vw, 5.2rem); }
  .hero-copy { font-size: .96rem; }
  .button { width: 100%; }
  .section-pad { padding: 4.5rem 1.2rem; }
  .intro { gap: 1rem; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 1.4rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 370px; padding: 1.7rem; }
  .service-icon { top: 1.7rem; right: 1.7rem; }
  .board-feature { grid-template-columns: 1fr; }
  .board-art { min-height: 460px; padding: 2rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 230px; border-right: 0; }
  .process-grid h3 { margin-top: 3rem; }
  .contact { gap: 2rem; }
  footer { grid-template-columns: 1fr; gap: 1.3rem; }
  footer > div { flex-direction: column; gap: .8rem; }
  footer small { grid-column: 1; }
  .board-hero { padding-top: 8rem; }
  .board-hero-art { min-height: 450px; padding: 1.5rem; }
  .board-hero-art { padding: 0; }
  .board-hero-art img { min-height: 450px; object-position: 67% center; }
  .board-benefits { grid-template-columns: 1fr; padding-top: 0; }
  .board-benefits article { min-height: 250px; border-right: 1px solid var(--line); border-bottom: 0; }
  .board-benefits article:last-child { border-bottom: 1px solid var(--line); }
  .board-benefits h3 { margin-top: 3rem; }
  .board-example-image { min-height: 340px; }
  .board-example-image img { min-height: 340px; }
}

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