@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #05070b;
  --ink-2: #0a0e16;
  --panel: #0e1420;
  --panel-2: #111a2a;
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .19);
  --text: #f5f8ff;
  --muted: #99a6bc;
  --blue: #2e7cff;
  --blue-bright: #58a0ff;
  --blue-soft: rgba(46, 124, 255, .14);
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .022;
  z-index: 20;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.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; left: 16px; top: -80px; padding: 10px 16px; background: var(--blue); color: white; z-index: 100; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 15;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
}
.site-header.scrolled { background: rgba(5,7,11,.78); border-color: var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Manrope", sans-serif; font-size: .89rem; font-weight: 600; letter-spacing: .13em; }
.brand b { color: var(--blue-bright); }
.brand-mark { width: 39px; height: 39px; color: var(--blue); }
.site-nav { display: flex; align-items: center; gap: 34px; color: #c7d0df; font-size: .92rem; }
.site-nav a { transition: color .2s; }
.site-nav a:hover { color: white; }
.site-nav .nav-cta { padding: 10px 17px; border: 1px solid var(--line-strong); border-radius: 999px; color: white; }
.site-nav .nav-cta:hover { border-color: var(--blue); background: var(--blue-soft); }
.menu-button { display: none; background: none; border: 0; padding: 8px; color: white; }
.menu-button > span:not(.sr-only) { display: block; width: 23px; height: 2px; background: currentColor; margin: 5px 0; }

.hero {
  position: relative;
  min-height: 860px;
  padding: 164px max(24px, calc((100vw - var(--max)) / 2)) 110px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 76px;
  align-items: center;
  isolation: isolate;
}
.hero-grid { position: absolute; inset: 0; z-index: -2; opacity: .3; background-image: linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 82%); }
.hero-glow { position: absolute; z-index: -1; width: 700px; height: 700px; right: -240px; top: 40px; background: radial-gradient(circle, rgba(24,105,255,.22), transparent 64%); filter: blur(12px); }
.eyebrow, .section-number { margin: 0 0 26px; color: var(--blue-bright); text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 700; }
.eyebrow { display: flex; align-items: center; gap: 11px; }
.eyebrow span { width: 27px; height: 1px; background: var(--blue); }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin-top: 0; line-height: 1.08; }
h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(3.1rem, 5.7vw, 5.55rem); letter-spacing: -.057em; font-weight: 700; }
h1 em { color: var(--blue-bright); font-style: normal; }
.hero-text { max-width: 670px; color: #aeb9cb; font-size: 1.14rem; line-height: 1.78; margin: 0 0 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; padding: 0 22px; border-radius: 7px; font-size: .95rem; font-weight: 600; transition: transform .2s, border-color .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: white; box-shadow: 0 14px 42px rgba(46,124,255,.22); }
.button-primary:hover { background: #3b86ff; }
.button-quiet { border: 1px solid var(--line-strong); color: #d7dfeb; }
.button-quiet:hover { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.035); }
.hero-meta { margin-top: 62px; padding-top: 25px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hero-meta div { display: grid; gap: 3px; }
.hero-meta strong { font-size: .86rem; font-weight: 600; }
.hero-meta span { font-size: .76rem; color: var(--muted); }
.hero-visual { position: relative; perspective: 1200px; }
.founder-card { position: relative; min-height: 530px; padding: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: linear-gradient(145deg, #111a2a, #080c13 64%); box-shadow: 0 45px 90px rgba(0,0,0,.52), 0 0 0 8px rgba(255,255,255,.025); transform: rotateY(-5deg) rotateX(2deg); }
.founder-card::after { content: ""; position: absolute; width: 420px; height: 420px; right: -180px; top: -120px; border: 1px solid rgba(88,160,255,.18); border-radius: 50%; box-shadow: 0 0 100px rgba(46,124,255,.12); }
.founder-card-top { position: relative; z-index: 1; display: flex; justify-content: space-between; padding-bottom: 21px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .15em; }
.founder-monogram { margin-top: 38px; color: var(--blue); font: 800 clamp(7rem, 15vw, 11rem)/.9 "Manrope", sans-serif; letter-spacing: -.14em; text-shadow: 0 0 55px rgba(46,124,255,.24); }
.founder-message { position: relative; z-index: 1; max-width: 390px; margin-top: 35px; }
.founder-message p { margin: 0 0 6px; color: var(--blue-bright); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.founder-message strong { display: block; font: 600 1.16rem/1.4 "Manrope", sans-serif; }
.founder-lines { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.founder-lines span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 5px; color: #9faabe; background: rgba(255,255,255,.025); font-size: .68rem; }
.floating-note { position: absolute; right: -32px; bottom: -33px; display: flex; align-items: center; gap: 13px; padding: 14px 18px; border: 1px solid var(--line-strong); border-radius: 9px; background: rgba(11,16,25,.92); backdrop-filter: blur(16px); box-shadow: 0 18px 50px rgba(0,0,0,.3); }
.floating-note > span { display: grid; place-items: center; width: 33px; height: 33px; border-radius: 7px; color: var(--blue-bright); background: var(--blue-soft); font-size: .74rem; font-weight: 700; }
.floating-note p { margin: 0; color: var(--muted); font-size: .69rem; line-height: 1.4; }
.floating-note strong { color: white; font-size: .78rem; }

.trust-strip { max-width: var(--max); margin: 0 auto; min-height: 80px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-around; padding: 0 24px; color: #8e9aaf; text-transform: uppercase; letter-spacing: .15em; font-size: .68rem; font-weight: 600; }
.trust-strip i { width: 3px; height: 3px; background: var(--blue); border-radius: 50%; }
.section { max-width: var(--max); margin: 0 auto; padding: 128px 24px; }
.section-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: start; margin-bottom: 68px; }
.section-heading h2, .contact h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.045em; }
.section-number { padding-top: 8px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.service-card { position: relative; min-height: 405px; padding: 34px; border-right: 1px solid var(--line); background: linear-gradient(140deg, rgba(255,255,255,.025), transparent 52%); transition: background .25s, transform .25s; }
.service-card:last-child { border-right: 0; }
.service-card:hover { background: linear-gradient(140deg, rgba(46,124,255,.09), rgba(255,255,255,.015) 60%); transform: translateY(-5px); }
.featured-card { background: linear-gradient(145deg, rgba(46,124,255,.11), rgba(255,255,255,.02) 58%); }
.service-index { position: absolute; right: 25px; top: 24px; color: #566176; font-size: .75rem; }
.service-icon { width: 47px; height: 47px; display: grid; place-items: center; margin-bottom: 67px; border: 1px solid rgba(46,124,255,.45); color: var(--blue-bright); background: var(--blue-soft); border-radius: 11px; font-size: 1.1rem; }
.service-card h3 { margin-bottom: 17px; font-size: 1.45rem; letter-spacing: -.025em; }
.service-card p { min-height: 78px; margin: 0 0 23px; color: var(--muted); font-size: .93rem; }
.service-card ul { margin: 0; padding: 0; list-style: none; color: #c5cedc; font-size: .83rem; }
.service-card li { margin-top: 7px; }
.service-card li::before { content: "—"; color: var(--blue); margin-right: 9px; }
.quote-note { margin: 24px 0 0; color: var(--muted); font-size: .84rem; }

.process { border-top: 1px solid var(--line); }
.section-heading.compact { grid-template-columns: .65fr 1.35fr; }
.process-list { margin: 0 0 0 35%; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--blue-bright); font-size: .78rem; font-weight: 700; }
.process-list h3 { margin: 0 0 10px; font-size: 1.25rem; }
.process-list p { margin: 0; max-width: 650px; color: var(--muted); }

.contact { position: relative; max-width: var(--max); margin: 0 auto 45px; padding: 76px 68px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: start; overflow: hidden; border: 1px solid rgba(46,124,255,.3); border-radius: 14px; background: linear-gradient(140deg, rgba(46,124,255,.16), rgba(10,14,22,.96) 60%); }
.contact::after { content: "RD"; position: absolute; right: -20px; top: -80px; color: rgba(46,124,255,.055); font: 800 250px/1 "Manrope", sans-serif; letter-spacing: -.12em; pointer-events: none; }
.contact > * { position: relative; z-index: 1; }
.contact-intro > p:not(.eyebrow) { max-width: 430px; margin: 25px 0 0; color: var(--muted); }
.direct-contact { display: grid; justify-items: start; gap: 6px; margin-top: 38px; }
.direct-contact span { margin-bottom: 4px; color: #738096; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }
.direct-contact a { color: #c9d5e6; font-size: .9rem; border-bottom: 1px solid transparent; }
.direct-contact a:hover { color: white; border-bottom-color: var(--blue); }
.lead-form { display: grid; gap: 18px; padding: 30px; border: 1px solid var(--line); border-radius: 10px; background: rgba(5,8,14,.68); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label { display: grid; gap: 8px; color: #d7dfeb; font-size: .82rem; font-weight: 600; }
.lead-form label small { display: inline; color: #78859a; font-size: .7rem; font-weight: 400; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 6px; outline: none; background: #080d16; color: var(--text); font: 400 .94rem/1.4 "DM Sans", sans-serif; transition: border-color .2s, box-shadow .2s; }
.lead-form input, .lead-form select { height: 49px; padding: 0 13px; }
.lead-form textarea { min-height: 135px; padding: 13px; resize: vertical; }
.lead-form textarea::placeholder { color: #657084; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,124,255,.14); }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: .68; transform: none; }
.form-status { min-height: 24px; margin: -5px 0 0; color: #98a7bd; font-size: .82rem; }
.form-status.success { color: #75dca2; }
.form-status.error { color: #ff8e96; }
.form-honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
footer { max-width: var(--max); margin: 0 auto; min-height: 100px; padding: 24px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; color: #717c8e; font-size: .76rem; }
footer p:last-child { justify-self: end; }
.footer-brand { color: white; font-size: .7rem; }
.footer-brand .brand-mark { width: 30px; height: 30px; }

@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; gap: 75px; padding-top: 150px; }
  .hero-copy { max-width: 830px; }
  .hero-visual { width: min(720px, 90%); margin-left: auto; margin-right: auto; }
  .service-card { padding: 28px; }
}

@media (max-width: 760px) {
  .site-header { height: 70px; padding-inline: 20px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 69px; left: 0; right: 0; display: none; padding: 20px; background: rgba(5,7,11,.98); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 5px; }
  .site-nav .nav-cta { margin-top: 8px; text-align: center; border-radius: 7px; }
  .hero { min-height: auto; padding: 126px 20px 78px; gap: 58px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .hero-text { font-size: 1.02rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-meta { margin-top: 45px; grid-template-columns: 1fr; gap: 16px; }
  .hero-meta div { grid-template-columns: 120px 1fr; align-items: baseline; }
  .hero-visual { width: 100%; }
  .founder-card { min-height: 500px; transform: none; }
  .floating-note { right: 12px; bottom: -28px; }
  .trust-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; padding-block: 23px; }
  .trust-strip i { display: none; }
  .section { padding: 90px 20px; }
  .section-heading, .section-heading.compact { grid-template-columns: 1fr; gap: 20px; }
  .section-heading { margin-bottom: 44px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-icon { margin-bottom: 42px; }
  .service-card p { min-height: auto; }
  .process-list { margin-left: 0; }
  .process-list li { grid-template-columns: 45px 1fr; }
  .contact { margin: 0 20px 25px; padding: 56px 26px; grid-template-columns: 1fr; gap: 40px; }
  .contact::after { font-size: 170px; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 22px; }
  footer { grid-template-columns: 1fr; justify-items: start; padding: 36px 20px; }
  footer p { margin: 0; }
  footer p:last-child { justify-self: start; }
}

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