:root {
  --bg: #fbfaf7;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #09090c;
  --muted: #5f6673;
  --line: rgba(9, 9, 12, 0.08);
  --shadow: 0 20px 60px rgba(13, 19, 33, 0.08);
  --shadow-strong: 0 24px 80px rgba(13, 19, 33, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --gradient: linear-gradient(90deg, #ff2e9a 0%, #ff8a3d 35%, #ffd84d 68%, #4ddcff 100%);
  --gradient-soft: linear-gradient(135deg, rgba(255, 46, 154, 0.12), rgba(255, 138, 61, 0.12), rgba(77, 220, 255, 0.12));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 46, 154, 0.1), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 216, 77, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(77, 220, 255, 0.12), transparent 30%),
    var(--bg);
  min-height: 100vh;
}

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

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

.top-line {
  height: 6px;
  background: var(--gradient);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, 0.78);
  border-bottom: 1px solid rgba(9, 9, 12, 0.05);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand span {
  display: block;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

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

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 14px 34px rgba(255, 85, 130, 0.25);
}

.hero {
  padding: 72px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(9, 9, 12, 0.06);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-weight: 700;
}

.hero-kicker {
  margin-bottom: 20px;
}

.hero-kicker::before,
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gradient);
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero p,
.page-hero p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 62ch;
}

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

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.button {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 20px 40px rgba(255, 85, 130, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(9, 9, 12, 0.08);
  box-shadow: var(--shadow);
}

.hero-panel,
.page-hero-card,
.cta-block,
.highlight-band,
.card,
.feature,
.stat,
.value,
.contact-card,
.legal-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
}

.hero-panel::before,
.page-hero-card::before,
.cta-block::before,
.card::before,
.feature::before,
.stat::before,
.value::before,
.contact-card::before,
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 46, 154, 0.38), rgba(255, 138, 61, 0.26), rgba(77, 220, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-panel {
  padding: 26px;
}

.page-hero {
  padding: 58px 0 24px;
}

.page-hero-card,
.cta-block,
.card,
.feature,
.contact-card,
.legal-card {
  padding: 30px;
}

.panel-glow {
  position: absolute;
  inset: auto -20% -34% auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.35), transparent 65%);
  pointer-events: none;
}

.metric-card,
.flow-card {
  position: relative;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(9, 9, 12, 0.08);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 20px;
  margin-bottom: 16px;
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.metric-card span,
.card p,
.feature p,
.contact-card p,
.legal-card p,
.stat span,
.value span,
.list li,
ul li {
  color: var(--muted);
  line-height: 1.7;
}

.flow-card {
  padding: 18px;
}

.flow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(9, 9, 12, 0.08);
}

.flow-row:last-child {
  border-bottom: 0;
}

.flow-label {
  font-weight: 700;
}

.flow-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gradient-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.stats,
.section {
  padding: 42px 0;
}

.stats-grid,
.value-grid,
.card-grid,
.feature-grid,
.highlight-grid,
.footer-grid,
.contact-grid,
.form-grid {
  display: grid;
  gap: 18px;
}

.stats-grid,
.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.value-grid {
  margin-top: 18px;
}

.stat,
.value {
  padding: 22px;
}

.stat strong,
.value strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading h2,
.cta-block h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.coverage-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-strong);
  padding: 28px;
}

.coverage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 46, 154, 0.38), rgba(255, 138, 61, 0.26), rgba(77, 220, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.coverage-card h3 {
  margin: 14px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(9, 9, 12, 0.08);
  box-shadow: var(--shadow);
  font-weight: 700;
}

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

.feature-grid,
.highlight-grid,
.contact-grid,
.footer-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.card h3,
.feature h3,
.contact-card h2,
.legal-card h3 {
  margin: 14px 0 10px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 12px;
}

.list li::before {
  content: "•";
  color: #ff2e9a;
  font-weight: 900;
}

.highlight-band {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 216, 77, 0.24), transparent 36%),
    radial-gradient(circle at bottom left, rgba(77, 220, 255, 0.2), transparent 28%),
    #0d1220;
  color: #fff;
}

.highlight-band p,
.highlight-band li {
  color: rgba(255, 255, 255, 0.78);
}

.quote {
  font-size: 1.4rem;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.cta-block::after {
  content: "";
  position: absolute;
  inset: auto -15% -38% auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 46, 154, 0.18), transparent 70%);
}

.site-footer {
  padding: 30px 0 42px;
  border-top: 1px solid rgba(9, 9, 12, 0.06);
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-strong);
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 46, 154, 0.38), rgba(255, 138, 61, 0.26), rgba(77, 220, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.media-frame {
  padding: 16px;
}

.media-frame img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(13, 19, 33, 0.12);
}

.media-frame svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(13, 19, 33, 0.12);
}

.media-caption {
  padding: 0 20px 22px;
}

.experience-panel {
  position: relative;
  min-height: 360px;
  margin: 16px;
  padding: 26px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 216, 77, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(77, 220, 255, 0.16), transparent 24%),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(13, 19, 33, 0.08);
}

.experience-panel-flow {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.journey-shell {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  gap: 10px;
  align-items: center;
}

.journey-step {
  min-height: 132px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(9, 9, 12, 0.08);
  box-shadow: var(--shadow);
}

.journey-step-dark {
  background: #0d1220;
  color: #fff;
}

.journey-step-dark .journey-label,
.journey-step-dark strong {
  color: #fff;
}

.journey-step-accent {
  background: linear-gradient(135deg, rgba(255, 46, 154, 0.1), rgba(77, 220, 255, 0.12));
}

.journey-label,
.signal-title {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.journey-step strong,
.signal-header strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.journey-link {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: var(--gradient);
}

.journey-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #ff9d3d;
  border-right: 3px solid #ff9d3d;
  transform: translateY(-50%) rotate(45deg);
}

.journey-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.summary-chip,
.signal-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--gradient-soft);
  font-weight: 700;
}

.experience-panel-signals {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.signal-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.signal-metric {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(9, 9, 12, 0.08);
  box-shadow: var(--shadow);
}

.media-caption strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.company-lockup {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

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

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.8;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(9, 9, 12, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

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

.form-field-full {
  grid-column: 1 / -1;
}

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin-top: 14px;
  min-height: 24px;
  color: var(--muted);
  font-weight: 600;
}

.form-status.is-error {
  color: #c73d5a;
}

.form-status.is-success {
  color: #187a52;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .highlight-grid,
  .contact-grid,
  .footer-grid,
  .stats-grid,
  .value-grid,
  .coverage-grid,
  .media-grid,
  .card-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 40px;
  }

  .journey-shell {
    grid-template-columns: 1fr;
  }

  .journey-link {
    width: 8px;
    height: 28px;
    justify-self: center;
  }

  .journey-link::after {
    top: auto;
    bottom: -1px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(135deg);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .hero-panel,
  .cta-block,
  .highlight-band,
  .page-hero-card,
  .card,
  .feature,
  .contact-card,
  .legal-card {
    padding: 22px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.8rem;
  }

  .experience-panel {
    min-height: 0;
    margin: 12px;
    padding: 18px;
  }
}