@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #0a0a0b;
  --bg-2: #101215;
  --panel: rgba(255,255,255,0.035);
  --panel-strong: rgba(255,255,255,0.055);
  --text: #ffffff;
  --muted: #d2d2d2;
  --line: rgba(255,255,255,0.08);

  --accent: #faa61a;
  --accent-2: #ffbf4d;
  --brand-dark: #39474f;
  --brand-light: #d2d2d2;
  --white: #ffffff;

  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.22);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(250,166,26,0.10), transparent 24%),
    radial-gradient(circle at top left, rgba(255,255,255,0.035), transparent 18%),
    linear-gradient(180deg, #0a0a0b 0%, #0d0f12 100%);
  color: var(--text);
  font-family: "Raleway", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

h1, h2, h3, h4, h5, h6,
.eyebrow,
.btn,
.pill,
.brand-name,
.section-head h2,
.cta-box h2 {
  font-family: "Century Gothic", "Apple Gothic", "Avant Garde", "Raleway", sans-serif;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
}

p {
  margin: 0;
  color: var(--muted);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(10,10,11,0.72);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 76px;
}

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
}

.brand-logo img {
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(250,166,26,0.14));
}

.nav-note {
  color: var(--brand-light);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.hero {
  padding: 34px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.panel,
.quote,
.cta-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.018));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  color: #eef0f2;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.025);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(250,166,26,0.65);
  flex: 0 0 auto;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 4.85rem);
  margin-bottom: 20px;
}

.hero-copy p {
  font-size: 1.06rem;
  max-width: 58ch;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(250,166,26,0.22);
}

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

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

.stat {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
  color: var(--white);
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  min-height: 100%;
  background:
    radial-gradient(circle at 85% 10%, rgba(250,166,26,0.12), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
}

.hero-card .eyebrow {
  margin-right: 10px;
  margin-bottom: 12px;
}

.hero-visual {
  width: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.012), rgba(0,0,0,0.10));
  border: 1px solid rgba(255,255,255,0.04);
}

.hero-visual img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

section {
  padding: 18px 0 24px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.85rem);
}

.section-head p {
  max-width: 62ch;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

.panel {
  padding: 24px;
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  color: var(--white);
}

.panel p,
.panel li {
  color: var(--muted);
}

.panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--white);
  margin-bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: var(--shadow);
}

.comparison th,
.comparison td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: top;
}

.comparison th {
  font-size: 0.94rem;
  color: var(--white);
  background: rgba(255,255,255,0.03);
}

.comparison td {
  color: var(--muted);
}

.comparison tr:last-child td {
  border-bottom: none;
}

.quote {
  padding: 34px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: -14px;
  left: 18px;
  font-size: 6rem;
  color: rgba(255,255,255,0.06);
  font-weight: 700;
  line-height: 1;
}

.quote p {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.35;
  margin-bottom: 12px;
  max-width: 30ch;
  color: var(--white);
}

.quote span {
  color: var(--muted);
  font-size: 0.98rem;
}

.cta {
  padding: 20px 0 90px;
}

.cta-box {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(250,166,26,0.16), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
}

.cta-box h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.cta-box p {
  max-width: 55ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer {
  padding: 0 0 40px;
  color: #99a2b1;
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-grid,
  .cta-box,
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  .cta-actions {
    justify-content: flex-start;
  }

  .nav-note {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(calc(100% - 24px), var(--max));
  }

  .topbar-inner {
    min-height: 64px;
  }

  .brand-logo img {
    width: 170px;
  }

  .nav-note {
    display: none;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-copy,
  .hero-card,
  .panel,
  .quote,
  .cta-box {
    padding: 22px;
  }

  .hero-visual {
    min-height: 360px;
    padding: 8px;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .comparison th,
  .comparison td {
    padding: 13px 12px;
    font-size: 0.92rem;
  }
}