:root {
  --bg: #07111f;
  --bg-2: #0a1729;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #f5f7fb;
  --muted: #aeb8c8;
  --gold: #d8b86a;
  --gold-2: #ffe4a0;
  --cyan: #6ee7ff;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(110, 231, 255, 0.18), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(216, 184, 106, 0.2), transparent 26%),
    linear-gradient(135deg, #050914 0%, var(--bg) 42%, #071827 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.06), transparent 20%, transparent 80%, rgba(216,184,106,0.08));
  mix-blend-mode: screen;
}

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

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 18px 0 42px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.25);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #10131b;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 34px rgba(216, 184, 106, 0.35);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  margin-top: 2px;
  font-size: 0.76rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  padding: 11px 14px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  transition: 180ms ease;
}

nav a:hover,
.nav-cta {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  border: 1px solid rgba(216, 184, 106, 0.38);
}

.section {
  padding: 86px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.align-start {
  align-items: start;
}

.hero {
  min-height: calc(100vh - 130px);
  padding-top: 28px;
  padding-bottom: 64px;
  overflow: hidden;
}

.hero-copy,
.hero-panel {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-panel {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 6.4vw, 6.45rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.hero-lead,
.content-stack p,
.card p,
.case-card p,
.timeline p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-lead {
  max-width: 760px;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #10131b;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 20px 50px rgba(216, 184, 106, 0.26);
}

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

.button.ai-button {
  color: #06111f;
  background: linear-gradient(135deg, var(--cyan), #7dd3fc 45%, var(--gold-2));
  box-shadow: 0 20px 50px rgba(110, 231, 255, 0.22);
}

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

.trust-strip span {
  padding: 9px 12px;
  color: #dbe7f8;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-panel,
.card,
.case-card,
.quote-band,
.final-cta {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-panel {
  padding: 24px;
  border-radius: var(--radius);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(110, 231, 255, 0.28);
  border-radius: 999px;
  color: #d8fbff;
  background: rgba(110, 231, 255, 0.08);
  font-weight: 800;
  font-size: 0.86rem;
}

.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #42ffb1;
  box-shadow: 0 0 16px #42ffb1;
}

.portrait-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(216, 184, 106, 0.32), transparent 35%),
    linear-gradient(160deg, rgba(110, 231, 255, 0.13), rgba(255, 255, 255, 0.04));
}

.portrait-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 184, 106, 0.85), transparent 68%);
  filter: blur(18px);
  opacity: 0.55;
  animation: pulse 5s ease-in-out infinite;
}

.portrait-initials {
  position: relative;
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.2rem;
  font-weight: 800;
  background: rgba(7, 17, 31, 0.55);
}

.portrait-photo {
  position: relative;
  width: min(78%, 300px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 55px rgba(216, 184, 106, 0.22);
}

.portrait-card.portrait-fallback::after {
  content: "SC";
  position: relative;
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.2rem;
  font-weight: 800;
  background: rgba(7, 17, 31, 0.55);
}

.team-intro {
  max-width: 720px;
  margin: 0 auto 42px;
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  text-align: center;
}

.team-photo {
  display: block;
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(216, 184, 106, 0.5);
  box-shadow: 0 0 44px rgba(216, 184, 106, 0.25), 0 12px 40px rgba(0, 0, 0, 0.35);
}

.team-avatar-fallback {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #06111f;
  box-shadow: 0 0 44px rgba(216, 184, 106, 0.25);
}

.team-role {
  color: var(--gold-2);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 4px 0 14px;
}

.media-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.audio-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.audio-header > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #06111f;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 40px rgba(216, 184, 106, 0.22);
  font-weight: 900;
}

.audio-header p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

audio {
  width: 100%;
  margin: 4px 0 20px;
  accent-color: var(--gold);
}

.media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.media-actions a {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
  transition: 180ms ease;
}

.media-actions a:hover {
  color: var(--gold-2);
  border-color: rgba(216, 184, 106, 0.45);
}

.ai-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
  gap: 26px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(110, 231, 255, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 18%, rgba(110, 231, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.ai-copy {
  align-self: center;
}

.ai-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 26px;
}

.ai-frame-wrap {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.2);
}

.ai-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #08111f;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.16);
}

.metric-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-2);
  font-size: 1.75rem;
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.section-heading {
  max-width: 680px;
}

.section-heading.centered {
  margin: 0 auto 38px;
  text-align: center;
}

.content-stack {
  padding-top: 8px;
}

.cards.three,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.case-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 30px;
  border-radius: 26px;
}

.card::after,
.case-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -50% 20%;
  height: 170px;
  background: radial-gradient(circle, rgba(216, 184, 106, 0.18), transparent 65%);
}

.card-index {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.dark-panel {
  margin: 40px calc(50% - 50vw);
  padding: 98px calc(50vw - 50%);
  background: linear-gradient(135deg, rgba(3, 7, 15, 0.72), rgba(9, 28, 43, 0.82));
  border-block: 1px solid var(--line);
}

.case-card ul {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.case-card li {
  padding: 10px 0;
  color: #dce6f5;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #10131b;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
}

.quote-band {
  padding: clamp(32px, 6vw, 72px);
  border-radius: var(--radius);
  text-align: center;
}

.quote-band blockquote {
  max-width: 940px;
  margin: 0 auto 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.quote-band p {
  color: var(--gold-2);
  font-weight: 900;
}

.final-cta {
  margin-bottom: 72px;
  padding: clamp(34px, 6vw, 76px);
  border-radius: var(--radius);
  text-align: center;
}

.final-cta .button + .button {
  margin-left: 10px;
}

.final-cta h2 {
  max-width: 900px;
  margin-inline: auto;
}

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
  color: var(--muted);
  font-weight: 800;
}

.contact-links a:hover {
  color: var(--gold-2);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { transform: scale(0.94); opacity: 0.45; }
  50% { transform: scale(1.08); opacity: 0.72; }
}

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
    border-radius: 26px;
  }

  nav {
    display: none;
  }

  .section-grid,
  .ai-section,
  .cards.three,
  .case-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .ai-frame-wrap {
    min-height: 560px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(3.35rem, 15vw, 5.2rem);
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    top: 8px;
    margin-top: 8px;
  }

  .brand small {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .final-cta .button + .button {
    margin-left: 0;
    margin-top: 12px;
  }

  .audio-header {
    align-items: flex-start;
  }

  .ai-frame-wrap {
    min-height: 500px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }
}
