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

:root {
  color-scheme: dark;
  --bg: #06060e;
  --bg-2: #0f1020;
  --card: rgba(17, 17, 32, 0.74);
  --card-strong: rgba(23, 24, 45, 0.92);
  --ink: #f7f0e6;
  --muted: #b9b2c9;
  --soft: #7f7894;
  --gold: #e4bf76;
  --gold-2: #c8944f;
  --violet: #9b76ff;
  --line: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(228, 191, 118, 0.25);
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.46);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 4%, rgba(228, 191, 118, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 10%, rgba(155, 118, 255, 0.2), transparent 30rem),
    linear-gradient(135deg, #05050b 0%, #0b0b17 48%, #080811 100%);
  overflow-x: hidden;
}

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

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at var(--pointer-x, 62%) var(--pointer-y, 28%), rgba(228, 191, 118, 0.09), transparent 18rem),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

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

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 6vw, 6.6rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 3.4vw, 3.75rem);
  line-height: 0.98;
}

.site-shell {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.section {
  width: min(var(--max), calc(100% - 34px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 34px));
  margin: 16px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 6, 14, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(24px) saturate(140%);
}

.topbar.is-elevated {
  background: rgba(6, 6, 14, 0.94);
}

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

.brand-logo,
.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #080811;
  font-weight: 900;
  border: 1px solid var(--line-gold);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 30px rgba(228, 191, 118, 0.25);
}

.brand-logo {
  flex: 0 0 46px;
  min-width: 46px;
  max-width: 46px;
  min-height: 46px;
  max-height: 46px;
  object-fit: cover;
  background: #090912;
}

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

.brand strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-nav a {
  padding: 11px 15px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: #0b0b12;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 58px 0 28px;
}

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

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: #0b0b12;
  background: linear-gradient(135deg, #fff2c9, var(--gold) 55%, var(--gold-2));
  box-shadow: 0 20px 55px rgba(228, 191, 118, 0.22);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.signal-grid div,
.module-grid article,
.role-strip {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.signal-grid div {
  min-height: 152px;
  padding: 18px;
  border-radius: 22px;
}

.signal-grid span,
.module-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-grid strong,
.module-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
}

.signal-grid small,
.module-grid p,
.footer p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.65;
}

.showcase {
  position: relative;
  min-height: 650px;
}

.showcase-card,
.phone-card,
.logo-medallion {
  border: 1px solid var(--line-gold);
  background: rgba(10, 10, 22, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.desktop-card {
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  overflow: hidden;
  border-radius: 30px;
}

.desktop-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.shot-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(6, 6, 14, 0.74);
  backdrop-filter: blur(16px);
}

.shot-label span,
.shot-label strong {
  display: block;
}

.shot-label span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shot-label strong {
  margin-top: 2px;
  font-size: 0.95rem;
}

.phone-card {
  position: absolute;
  right: 34px;
  bottom: 22px;
  width: min(34%, 210px);
  overflow: hidden;
  border-radius: 32px;
  transform: rotate(2deg);
}

.phone-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
}

.logo-medallion {
  position: absolute;
  bottom: 40px;
  left: 18px;
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  border-radius: 50%;
}

.logo-medallion img {
  width: 124px;
  height: 124px;
  object-fit: cover;
  border-radius: 50%;
}

.compact-panel {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 22px;
  align-items: stretch;
  padding: 22px 0;
}

.panel-heading {
  padding: 28px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(228, 191, 118, 0.14), transparent 18rem),
    var(--card-strong);
}

.panel-heading h2 {
  margin-bottom: 0;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.module-grid article {
  min-height: 190px;
  padding: 20px;
  border-radius: 24px;
}

.role-strip {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  align-items: center;
  margin: 24px auto 44px;
  padding: 26px;
  border-radius: var(--radius-xl);
}

.role-strip h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.role-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.role-pills span {
  padding: 13px 15px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  width: min(var(--max), calc(100% - 34px));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.footer-links a {
  padding: 10px 12px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 999px;
}

.footer-links a:hover {
  color: var(--ink);
  border-color: var(--line);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--soft);
  font-size: 0.84rem;
}

.legal-main {
  width: min(880px, calc(100% - 34px));
  margin: 0 auto;
  padding: 70px 0;
}

.legal-card {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card-strong);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.legal-card h2 {
  margin-top: 32px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.legal-list {
  padding-left: 20px;
}

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

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

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(6, 6, 14, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .compact-panel,
  .role-strip,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .showcase {
    min-height: 560px;
  }

  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar,
  .section,
  .footer,
  .legal-main {
    width: min(100% - 22px, var(--max));
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero-actions,
  .signal-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .signal-grid {
    display: grid;
  }

  .showcase {
    min-height: 520px;
  }

  .desktop-card {
    top: 0;
  }

  .desktop-card img {
    aspect-ratio: 4 / 3;
  }

  .phone-card {
    right: 12px;
    bottom: 24px;
    width: 38%;
    border-radius: 24px;
  }

  .logo-medallion {
    bottom: 42px;
    left: 8px;
    width: 104px;
    height: 104px;
  }

  .logo-medallion img {
    width: 86px;
    height: 86px;
  }

  .panel-heading,
  .role-strip {
    padding: 22px;
  }
}
