:root {
  --ink: #08111f;
  --ink-2: #13233a;
  --panel: #ffffff;
  --muted: #637187;
  --muted-2: #8b98aa;
  --soft: #f5f7fb;
  --soft-2: #edf2f8;
  --line: #dfe7f0;
  --gold: #d7a13b;
  --gold-2: #f2cd77;
  --blue: #2b67ad;
  --blue-2: #6ca4e8;
  --deep: #07101d;
  --radius: 28px;
  --shadow: 0 30px 90px rgba(8, 17, 31, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #f7f9fc;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1200px, calc(100% - 44px)); margin: 0 auto; }
.section { padding: 104px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 16, 29, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 14px; color: #fff; min-width: 0; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #101722;
  font-size: 25px; font-weight: 950; box-shadow: 0 14px 34px rgba(215,161,59,.25);
}
.brand strong { display: block; font-size: 14px; letter-spacing: .08em; line-height: 1.1; }
.brand small { display: block; margin-top: 4px; color: rgba(255,255,255,.6); font-size: 12px; }
.nav-links { display: flex; align-items: center; gap: 24px; color: rgba(255,255,255,.76); font-size: 14px; font-weight: 760; }
.nav-links a:not(.nav-cta):hover { color: #fff; }
.nav-cta { color: #111721; background: linear-gradient(135deg, var(--gold), var(--gold-2)); padding: 12px 18px; border-radius: 999px; box-shadow: 0 16px 36px rgba(215,161,59,.18); }
.menu-toggle { display: none; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.07); color: #fff; border-radius: 999px; padding: 10px 14px; font-weight: 850; }

.hero {
  position: relative;
  min-height: 780px;
  padding: 122px 0 100px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(242,205,119,.23), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(88,146,216,.22), transparent 28%),
    linear-gradient(135deg, #07101d 0%, #0b1728 46%, #162942 100%);
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -240px -290px auto;
  width: 660px; height: 660px; border-radius: 50%;
  border: 100px solid rgba(242,205,119,.08);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr minmax(420px, .88fr); gap: 62px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--gold-2); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 950; }
.eyebrow.dark { color: #9b6f1c; }
h1, h2, h3 { margin: 0; line-height: 1.04; }
h1 { max-width: 780px; font-size: clamp(48px, 6.1vw, 84px); letter-spacing: -.065em; }
h2 { font-size: clamp(34px, 4vw, 56px); letter-spacing: -.048em; }
h3 { font-size: 22px; letter-spacing: -.025em; }
p { color: var(--muted); margin: 0; }
.lead { max-width: 700px; margin-top: 26px; color: rgba(255,255,255,.73); font-size: 19px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 999px; padding: 0 24px; cursor: pointer; font-weight: 950; letter-spacing: .01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #101722; box-shadow: 0 22px 48px rgba(215,161,59,.26); }
.btn.secondary { color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.17); }
.btn.full { width: 100%; }
.proof-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.proof-strip span { padding: 10px 13px; border-radius: 999px; color: rgba(255,255,255,.76); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); font-size: 13px; font-weight: 760; }
.hero-media { position: relative; padding: 16px; border-radius: 36px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); box-shadow: 0 40px 100px rgba(0,0,0,.35); }
.hero-media img { width: 100%; border-radius: 25px; background: #0e1d30; }
.media-badge { position: absolute; width: min(270px, 54%); padding: 16px 18px; border-radius: 20px; background: rgba(255,255,255,.94); box-shadow: 0 22px 62px rgba(0,0,0,.22); color: var(--ink); }
.media-badge strong { display: block; font-size: 15px; }
.media-badge span { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }
.media-badge.top { top: -24px; left: -22px; }
.media-badge.bottom { right: -20px; bottom: 34px; }

.snapshot { background: #fff; }
.snapshot-grid { display: grid; grid-template-columns: .8fr 1.15fr .75fr; gap: 34px; align-items: stretch; }
.snapshot article { padding: 28px; border-radius: 28px; background: #f8fafc; border: 1px solid var(--line); }
.snapshot article:first-child { background: #fff; border: 0; padding-left: 0; }
.snapshot span { display: inline-flex; margin-bottom: 18px; color: #9b6f1c; font-weight: 950; letter-spacing: .14em; }
.snapshot h2 { font-size: clamp(28px, 3.2vw, 44px); }
.snapshot p { font-size: 18px; color: #43536a; }
.metric-card { display: grid; align-content: center; background: linear-gradient(145deg, #0b1627, #173153) !important; color: #fff; }
.metric-card strong { display: block; font-size: 26px; line-height: 1.1; letter-spacing: -.04em; }
.metric-card small { display: block; margin-top: 16px; color: rgba(255,255,255,.68); font-weight: 750; }

.section-heading { max-width: 820px; margin-bottom: 46px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading p:last-child { margin-top: 18px; font-size: 18px; }
.services { background: linear-gradient(180deg, #f7f9fc, #edf2f8); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 266px; padding: 28px; background: rgba(255,255,255,.9); border: 1px solid rgba(223,231,240,.94); border-radius: var(--radius); box-shadow: 0 18px 50px rgba(8,17,31,.07); }
.service-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 28px; background: #fff; }
.service-card.featured.reverse { grid-column: span 2; grid-template-columns: .92fr 1fr; }
.service-card img { border-radius: 22px; background: #eef3f9; }
.card-kicker, .icon { display: inline-flex; align-items: center; justify-content: center; min-width: 54px; height: 54px; padding: 0 15px; border-radius: 18px; margin-bottom: 18px; color: #121821; background: linear-gradient(135deg, #f7d58c, #d7a13b); font-weight: 950; letter-spacing: .04em; }
.icon { font-size: 13px; }
.service-card p { margin-top: 14px; }

.industries { background: #fff; }
.industries-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 60px; align-items: start; }
.industries-copy p { margin-top: 20px; font-size: 18px; color: #46566c; }
.industry-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.industry-list span { display: flex; min-height: 58px; align-items: center; padding: 14px 16px; border: 1px solid var(--line); border-radius: 18px; background: #f8fafc; color: #26384f; font-weight: 780; }

.enterprise { color: #fff; background: radial-gradient(circle at 10% 12%, rgba(242,205,119,.17), transparent 28%), linear-gradient(135deg, #07101d, #142942); }
.enterprise p { color: rgba(255,255,255,.7); }
.enterprise-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 44px; align-items: start; }
.enterprise-panel { position: sticky; top: 108px; padding: 44px; border-radius: 34px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.enterprise-panel p:not(.eyebrow) { margin-top: 22px; font-size: 18px; }
.disclaimer { padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); font-size: 13px !important; color: rgba(255,255,255,.64) !important; }
.enterprise-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.enterprise-cards article { min-height: 166px; padding: 24px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.enterprise-cards strong { display: block; font-size: 20px; line-height: 1.2; }
.enterprise-cards span { display: block; margin-top: 12px; color: rgba(255,255,255,.64); }

.letters { background: linear-gradient(180deg, #fff, #f6f8fc); }
.letters-head { display: grid; grid-template-columns: 1fr .9fr; gap: 36px; align-items: end; margin-bottom: 44px; }
.letters-head > p { font-size: 16px; color: #5a6880; padding: 20px; border-radius: 22px; background: #fff6df; border: 1px solid #f1dcaa; }
.letter-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.letter-card { position: relative; padding: 34px; min-height: 330px; border-radius: 30px; background: #fff; border: 1px solid var(--line); box-shadow: 0 20px 62px rgba(8,17,31,.08); overflow: hidden; }
.letter-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: linear-gradient(var(--gold), var(--blue)); }
.letter-card::after { content: "APPRECIATION"; position: absolute; right: 24px; bottom: 22px; color: rgba(8,17,31,.05); font-size: 42px; font-weight: 950; letter-spacing: -.06em; }
.letter-top { margin-bottom: 26px; }
.letter-top span { display: block; font-size: 20px; font-weight: 950; letter-spacing: -.03em; }
.letter-top small { display: block; margin-top: 6px; color: var(--muted); font-weight: 760; }
.letter-card p { position: relative; z-index: 1; font-size: 18px; color: #33445b; }
.letter-card footer { position: relative; z-index: 1; margin-top: 26px; color: #9b6f1c; font-weight: 900; }

.workflow { color: #fff; background: radial-gradient(circle at 90% 10%, rgba(242,205,119,.15), transparent 30%), linear-gradient(135deg, #08111f, #152843); }
.workflow p { color: rgba(255,255,255,.68); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step { position: relative; padding: 30px 24px; min-height: 292px; border-radius: 26px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.12); }
.step span { display: block; margin-bottom: 48px; color: var(--gold-2); font-weight: 950; font-size: 13px; letter-spacing: .16em; }
.step p { margin-top: 16px; }

.contact { background: #07101d; color: #fff; }
.contact p { color: rgba(255,255,255,.68); }
.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 58px; align-items: start; }
.contact-copy p { margin-top: 22px; font-size: 18px; }
.contact-card { margin-top: 34px; padding: 28px; border-radius: 28px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.contact-card span { display: block; color: rgba(255,255,255,.6); }
.contact-card a { display: inline-block; margin-top: 8px; color: var(--gold-2); font-size: clamp(20px, 3vw, 30px); font-weight: 950; letter-spacing: -.03em; overflow-wrap: anywhere; }
.form { padding: 34px; border-radius: 32px; background: #fff; color: var(--ink); box-shadow: 0 28px 80px rgba(0,0,0,.26); }
.form label { display: grid; gap: 8px; margin-bottom: 16px; color: #26384f; font-weight: 850; font-size: 14px; }
.form input, .form textarea { width: 100%; border: 1px solid var(--line); border-radius: 18px; padding: 15px 16px; font: inherit; color: var(--ink); background: #f8fafc; outline: none; }
.form input:focus, .form textarea:focus { border-color: #d7a13b; box-shadow: 0 0 0 4px rgba(215,161,59,.14); }
.form textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: 13px; color: var(--muted) !important; }
.form-note.success { color: #16794c !important; }

.footer { padding: 28px 0; color: rgba(255,255,255,.72); background: #050b14; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 14px; }
.footer p { color: rgba(255,255,255,.7); }
.footer a { color: var(--gold-2); font-weight: 850; overflow-wrap: anywhere; }

@media (max-width: 1020px) {
  .hero-inner, .snapshot-grid, .industries-grid, .enterprise-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 96px; }
  .hero-media { max-width: 720px; }
  .service-grid, .enterprise-cards { grid-template-columns: 1fr 1fr; }
  .service-card.featured, .service-card.featured.reverse { grid-column: span 2; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .enterprise-panel { position: static; }
  .letters-head { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1200px); }
  .section { padding: 74px 0; }
  .brand-text small { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links { position: absolute; left: 14px; right: 14px; top: 84px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border-radius: 24px; background: rgba(7,16,29,.98); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 24px 80px rgba(0,0,0,.28); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; border-radius: 16px; }
  .nav-cta { text-align: center; margin-top: 8px; }
  h1 { font-size: clamp(40px, 13vw, 62px); }
  .lead { font-size: 17px; }
  .media-badge { position: static; width: auto; margin-top: 12px; }
  .service-grid, .service-card.featured, .service-card.featured.reverse, .industry-list, .enterprise-cards, .letter-grid, .timeline { grid-template-columns: 1fr; }
  .service-card.featured, .service-card.featured.reverse { grid-column: span 1; }
  .enterprise-panel, .form, .letter-card { padding: 24px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
