:root {
  --navy: #07111f;
  --navy-2: #0c1d34;
  --ink: #dfe8f5;
  --muted: #98a6ba;
  --gold: #d7b66a;
  --gold-bright: #f2d383;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 182, 106, 0.18), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.18), transparent 30rem),
    linear-gradient(135deg, #050911 0%, #07111f 44%, #0b1424 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px clamp(18px, 4vw, 58px);
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.68);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #fff1ba 45%, #9f7d35);
  color: #06111e;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 18px 40px rgba(215, 182, 106, 0.28);
}

.brand-lockup strong { display: block; font-size: 1rem; letter-spacing: -0.02em; }
.brand-lockup small { display: block; color: var(--muted); font-size: 0.72rem; margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a:hover { color: var(--ink); }
.nav-cta {
  color: #07111f !important;
  background: var(--gold-bright);
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
}

.hero-section, .section {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 58px);
  padding-right: clamp(18px, 4vw, 58px);
}

.hero-section {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 44px;
  padding-top: 82px;
  padding-bottom: 76px;
}

.hero-glow { position: absolute; border-radius: 999px; filter: blur(5px); pointer-events: none; }
.hero-glow-one { width: 260px; height: 260px; background: rgba(215,182,106,0.13); left: 3%; top: 18%; }
.hero-glow-two { width: 340px; height: 340px; background: rgba(37,99,235,0.12); right: 3%; bottom: 10%; }

.hero-copy, .hero-card, .section-heading, .case-panel, .service-card, .process-timeline, .contact-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 26px;
  max-width: 820px;
}

.hero-text {
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 720px;
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #07111f;
  box-shadow: 0 18px 42px rgba(215, 182, 106, 0.27);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--ink);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.hero-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055));
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(215,182,106,0.18), transparent 16rem);
  pointer-events: none;
}

.hero-card-topline {
  color: var(--gold-bright);
  font-weight: 900;
  margin-bottom: 46px;
}

.hero-card h2 { font-size: clamp(1.9rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -0.055em; }
.hero-card p { color: var(--muted); line-height: 1.75; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stats-grid div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 14px;
  background: rgba(255,255,255,0.055);
}
.stats-grid strong { display: block; color: var(--gold-bright); font-size: 1.6rem; }
.stats-grid span { display: block; color: var(--muted); font-size: 0.72rem; line-height: 1.4; margin-top: 4px; }

.section { padding-top: 52px; padding-bottom: 52px; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.compact { max-width: 720px; }
.section-heading h2 { font-size: clamp(2.1rem, 4.4vw, 4.6rem); line-height: 0.98; letter-spacing: -0.06em; margin-bottom: 18px; }
.section-heading p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }

.portfolio-bubbles {
  display: grid;
  grid-template-columns: repeat(8, minmax(100px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.portfolio-bubble {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  cursor: pointer;
  font-weight: 900;
  line-height: 1.05;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.portfolio-bubble span { color: var(--muted); font-size: 0.75rem; font-weight: 700; }
.portfolio-bubble:hover, .portfolio-bubble.active {
  transform: translateY(-5px);
  border-color: rgba(242, 211, 131, 0.9);
  background: radial-gradient(circle at 35% 25%, rgba(242,211,131,0.28), rgba(255,255,255,0.08));
}

.case-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
  gap: 24px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 20px;
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}

.case-visual {
  min-height: 360px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(215,182,106,0.24), rgba(37,99,235,0.11)),
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 15rem);
  border: 1px solid rgba(255,255,255,0.16);
  overflow: hidden;
}
.case-visual span {
  color: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(7,17,31,0.36);
  font-weight: 900;
}

.case-copy { padding: 24px 18px; }
.case-label { color: var(--gold-bright); font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; }
.case-copy h3 { font-size: clamp(2rem, 5vw, 4.4rem); line-height: 0.96; letter-spacing: -0.065em; margin-bottom: 18px; }
.case-copy p { color: var(--muted); line-height: 1.8; }
.case-copy ul { margin: 22px 0; padding-left: 20px; color: var(--ink); }
.case-copy li { margin-bottom: 10px; color: #cbd7e7; }
.text-link { color: var(--gold-bright); font-weight: 900; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--card);
}
.service-number { color: var(--gold-bright); font-weight: 900; font-size: 0.82rem; }
.service-card h3 { margin-top: 42px; font-size: 1.35rem; }
.service-card p { color: var(--muted); line-height: 1.72; font-size: 0.95rem; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.process-timeline div {
  border-top: 2px solid var(--gold);
  background: rgba(255,255,255,0.055);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 22px;
}
.process-timeline strong { display: block; margin-bottom: 14px; }
.process-timeline p { color: var(--muted); line-height: 1.65; }

.contact-card {
  border: 1px solid rgba(242, 211, 131, 0.32);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 6vw, 58px);
  background:
    radial-gradient(circle at top right, rgba(242,211,131,0.22), transparent 22rem),
    rgba(255,255,255,0.075);
  box-shadow: var(--shadow);
}
.contact-card h2 { font-size: clamp(2.2rem, 5vw, 5rem); line-height: 0.96; letter-spacing: -0.065em; max-width: 850px; }
.contact-card p { color: var(--muted); line-height: 1.75; max-width: 710px; }
.contact-note { margin-top: 20px; font-size: 0.9rem; }

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px clamp(18px, 4vw, 58px) 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 980px) {
  .hero-section, .case-panel { grid-template-columns: 1fr; }
  .hero-section { min-height: unset; }
  .portfolio-bubbles { grid-template-columns: repeat(4, minmax(90px, 1fr)); }
  .service-grid, .process-timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7,17,31,0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .portfolio-bubbles { grid-template-columns: repeat(2, minmax(112px, 1fr)); }
  .service-grid, .process-timeline, .stats-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  h1 { font-size: clamp(3.2rem, 17vw, 5.2rem); }
}
