:root {
  --blue: #3C61C8;
  --blue-dark: #284AAB;
  --green: #08C74F;
  --green-dark: #06A640;
  --bg: #06111A;
  --panel: #081521;
  --panel-soft: #0B1722;
  --soft-bg: #08141f;
  --text: #ffffff;
  --muted: #a8b3c7;
  --border: rgba(255, 255, 255, 0.10);
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.05);
  --radius: 28px;
  --shadow: 0 25px 80px rgba(40, 74, 171, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

button,
input {
  font: inherit;
}

.site-wrapper {
  overflow-x: hidden;
}

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

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(8, 199, 79, 0.18), transparent 30%),
    radial-gradient(circle at top left, rgba(60, 97, 200, 0.16), transparent 28%),
    linear-gradient(180deg, #07131d 0%, #06111A 100%);
}

.hero-blur {
  position: absolute;
  width: 288px;
  height: 288px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}

.hero-blur-blue {
  top: 0;
  left: 0;
  background: var(--blue);
}

.hero-blur-green {
  right: 0;
  bottom: 0;
  background: var(--green);
}

.topbar {
  position: relative;
  z-index: 1;
  padding-top: 24px;
}

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 16px 20px;
}

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  padding-top: 56px;
  padding-bottom: 80px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 16px;
}

.eyebrow-green {
  border: 1px solid rgba(8, 199, 79, 0.35);
  background: rgba(8, 199, 79, 0.10);
  color: #7CF3A7;
}

.hero h1,
.section h2,
.cta-box h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  max-width: 720px;
}

.gradient-text {
  display: block;
  background: linear-gradient(90deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description,
.section-description,
.panel-subtitle,
.queue-subtitle,
.metric-label,
.contact-subtitle,
.compare-row div:nth-child(2),
.compare-row div:nth-child(3) {
  color: var(--muted);
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.9;
  max-width: 700px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
  border: 0;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--green);
  color: #06111A;
  box-shadow: 0 10px 30px rgba(8, 199, 79, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.btn-large {
  padding: 16px 24px;
}

.btn-gradient {
  width: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  color: #fff;
  padding: 16px 24px;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.tag-card,
.benefit-card,
.ideal-card,
.feature-card,
.compare-table,
.card,
.contact-card,
.faq-item {
  border: 1px solid var(--border);
}

.tag-card,
.benefit-card {
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  text-align: center;
  color: #d8e0ed;
}

.tag-card {
  padding: 16px;
  font-size: 14px;
}

.hero-panel-wrap {
  display: flex;
  justify-content: center;
}

.hero-panel-glow {
  width: 100%;
  max-width: 720px;
  padding: 16px;
  border-radius: 32px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-panel {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.panel-brand {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

.panel-subtitle {
  font-size: 12px;
  margin-top: 4px;
}

.panel-status {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: #9FB4FF;
  border: 1px solid rgba(60, 97, 200, 0.20);
  background: rgba(60, 97, 200, 0.10);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  padding: 16px;
}

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

.panel-block,
.card-dark,
.contact-card {
  background: rgba(2, 8, 15, 0.45);
}

.panel-block {
  border-radius: 24px;
  padding: 16px;
}

.panel-block-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}

.panel-title {
  font-size: 14px;
  font-weight: 600;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #7CF3A7;
  background: rgba(8, 199, 79, 0.10);
}

.queue-list,
.steps,
.faq-list {
  display: grid;
  gap: 12px;
}

.queue-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
}

.queue-title {
  font-size: 14px;
  font-weight: 500;
}

.queue-time {
  font-size: 12px;
  color: var(--muted);
}

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

.metric-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  padding: 12px;
}

.metric-number {
  color: var(--green);
  font-weight: 800;
  font-size: 1.125rem;
}

.metric-label {
  margin-top: 4px;
  font-size: 12px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  display: inline-flex;
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  font-size: 12px;
  color: #d8e0ed;
}

.section {
  padding: 80px 0;
}

.section-soft {
  background: var(--soft-bg);
  border-bottom: 1px solid var(--border);
}

.section-compare {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.section-two-cols,
.compare-grid,
.split-grid,
.cta-box {
  display: grid;
  gap: 48px;
}

.section-two-cols,
.compare-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.split-grid,
.cta-box {
  grid-template-columns: 1fr 1fr;
}

.section-center {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.section-center h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.section h2,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-label {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.green {
  color: var(--green);
}

.green-light {
  color: #7CF3A7;
}

.blue {
  color: var(--blue);
}

.green-text {
  color: var(--green);
}

.section-description {
  margin: 24px auto 0;
  font-size: 1.125rem;
  line-height: 1.85;
  max-width: 760px;
}

.section-description.left {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.benefit-grid,
.feature-grid,
.ideal-grid {
  display: grid;
  gap: 16px;
}

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

.feature-grid {
  margin-top: 56px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  padding: 24px;
  transition: transform 0.22s ease, background 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 12px 0 0;
  color: #cad3e2;
  line-height: 1.8;
}

.compare-table {
  overflow: hidden;
  border-radius: 28px;
  background: var(--panel-soft);
}

.compare-header,
.compare-row {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.1fr;
}

.compare-header {
  background: rgba(255,255,255,0.03);
  font-size: 14px;
  font-weight: 700;
}

.compare-header > div,
.compare-row > div {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.compare-header > div:not(:first-child),
.compare-row > div:not(:first-child) {
  border-left: 1px solid var(--border);
}

.compare-row:last-child > div {
  border-bottom: 0;
}

.compare-row > div:first-child {
  color: #fff;
  font-weight: 600;
}

.card {
  border-radius: 32px;
  padding: 32px;
}

.card-gradient {
  background: linear-gradient(135deg, rgba(8, 199, 79, 0.08), rgba(60, 97, 200, 0.05), transparent);
}

.step {
  display: flex;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #0b1620;
}

.step span {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: var(--blue);
  flex-shrink: 0;
}

.step p {
  margin: 6px 0 0;
  color: #d8e0ed;
}

.ideal-grid {
  margin-top: 32px;
  grid-template-columns: repeat(2, 1fr);
}

.ideal-card {
  border-radius: 18px;
  background: rgba(11, 22, 32, 0.8);
  padding: 16px;
  color: #d8e0ed;
  text-align: left;
}

.faq-list {
  max-width: 900px;
  margin: 48px auto 0;
}

.faq-item {
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.4rem;
  color: var(--green);
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.26s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: #cad3e2;
  line-height: 1.8;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.cta-box {
  border-radius: 36px;
  padding: 32px;
  border: 1px solid rgba(8, 199, 79, 0.20);
  background: linear-gradient(135deg, rgba(8, 199, 79, 0.16), rgba(6,17,26,1), rgba(60,97,200,0.10));
}

.contact-card {
  border-radius: 28px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.contact-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.contact-subtitle {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-form input {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  padding: 14px 16px;
  color: #fff;
  outline: none;
}

.contact-form input::placeholder {
  color: #71819a;
}

.contact-form input:focus {
  border-color: rgba(60,97,200,0.55);
  box-shadow: 0 0 0 4px rgba(60,97,200,0.12);
}

@media (max-width: 1100px) {
  .hero-grid,
  .section-two-cols,
  .compare-grid,
  .split-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

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

  .hero-panel-wrap {
    justify-content: stretch;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1200px, calc(100% - 24px));
  }

  .topbar {
    padding-top: 16px;
  }

  .brand-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    display: flex;
    justify-content: center;
  }

  .brand-logo {
    height: 42px;
  }

  .hero-grid {
    padding-top: 40px;
    padding-bottom: 56px;
    gap: 32px;
  }

  .tag-grid,
  .benefit-grid,
  .feature-grid,
  .ideal-grid,
  .metric-grid,
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .panel-grid {
    display: grid;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-header,
  .compare-row {
    min-width: 760px;
  }

  .section,
  .section-soft,
  .section-compare {
    padding: 56px 0;
  }

  .card,
  .cta-box,
  .contact-card {
    padding: 24px;
  }

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

  .btn,
  .btn-large {
    width: 100%;
  }
}
