:root {
  --bg: #06070b;
  --bg-soft: #0d1017;
  --surface: rgba(13, 16, 24, 0.78);
  --surface-strong: rgba(16, 20, 29, 0.94);
  --surface-elevated: rgba(19, 24, 34, 0.92);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #f7f7f4;
  --muted: #afb5c2;
  --muted-2: #8f97a8;
  --accent: #8f6aff;
  --accent-2: #28c8b7;
  --gold: #d8c29a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(86, 61, 161, 0.32) 0%, transparent 32%),
    radial-gradient(circle at 85% 78%, rgba(40, 200, 183, 0.14) 0%, transparent 20%),
    linear-gradient(180deg, #07090d 0%, #06070b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 82%);
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.9) 0.6px, transparent 0.8px);
  background-size: 10px 10px;
  mix-blend-mode: soft-light;
}

.background-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.glow-1 {
  width: 420px;
  height: 420px;
  top: -40px;
  left: -90px;
  background: rgba(143, 106, 255, 0.3);
}

.glow-2 {
  width: 320px;
  height: 320px;
  right: 0;
  bottom: 80px;
  background: rgba(40, 200, 183, 0.14);
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-xl);
  margin-bottom: 26px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(216, 194, 154, 0.06), transparent 24%, transparent 72%, rgba(143, 106, 255, 0.08));
  pointer-events: none;
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.brand-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
}

.brand-subtitle {
  color: var(--muted-2);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31d67c;
  box-shadow: 0 0 14px rgba(49, 214, 124, 0.95);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.78fr);
  gap: 18px;
}

.hero-copy,
.hero-panel,
.info-card,
.quote-card,
.contact-card {
  border-radius: var(--radius-lg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.panel-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 180px;
}

.panel-card-top {
  background: linear-gradient(180deg, rgba(216, 194, 154, 0.08), rgba(255,255,255,0.02));
}

.panel-card-bottom {
  background: linear-gradient(180deg, rgba(143, 106, 255, 0.1), rgba(255,255,255,0.02));
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 6.6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.lead,
.info-card p,
.contact-card p,
.panel-note,
.quote-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
.contact-link,
.panel-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.button:hover,
.contact-link:hover,
.panel-contact:hover {
  transform: translateY(-1px);
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, #a17cff 0%, #7a55ff 48%, #5f46e6 100%);
  box-shadow: 0 18px 44px rgba(122, 85, 255, 0.3);
}

.button.secondary {
  color: var(--text);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}

.panel-value {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  font-weight: 700;
}

.panel-contact {
  justify-content: flex-start;
  margin: 8px 0 14px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
}

.panel-note {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--muted-2);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.info-card,
.quote-card,
.contact-card {
  padding: 32px;
}

.info-card {
  background: linear-gradient(180deg, rgba(18, 22, 32, 0.94), rgba(13, 16, 24, 0.92));
}

.info-card-accent {
  background: linear-gradient(180deg, rgba(26, 20, 38, 0.94), rgba(17, 18, 28, 0.92));
}

ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.95;
}

.quote-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 26px;
  margin-bottom: 24px;
  background: linear-gradient(180deg, rgba(19, 21, 30, 0.92), rgba(13, 15, 22, 0.92));
}

.quote-mark {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(216, 194, 154, 0.9);
}

.quote-text {
  margin-bottom: 0;
  max-width: 760px;
  color: #d6dbe6;
  font-size: 24px;
  line-height: 1.55;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
}

.contact-link {
  flex-shrink: 0;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  background: rgba(143, 106, 255, 0.16);
  border: 1px solid rgba(143, 106, 255, 0.38);
}

@media (max-width: 960px) {
  .hero-layout,
  .grid,
  .contact-card,
  .quote-card {
    grid-template-columns: 1fr;
  }

  .contact-card {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 24px 16px 52px;
  }

  .hero {
    padding: 16px;
    border-radius: 26px;
  }

  .hero-copy,
  .panel-card,
  .info-card,
  .quote-card,
  .contact-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .hero-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .lead,
  .info-card p,
  .contact-card p,
  .panel-note,
  .quote-text {
    font-size: 16px;
  }

  .quote-text {
    font-size: 21px;
  }

  .button,
  .contact-link {
    width: 100%;
  }
}
