:root {
  --ink: #0a1628;
  --white: #ffffff;
  --surface: #f5f7fa;
  --surface-strong: #edf2f7;
  --accent: #0066ff;
  --accent-dark: #0052cc;
  --accent-glow: rgba(0, 102, 255, 0.12);
  --mint: #00c896;
  --mint-dark: #00a87a;
  --mint-glow: rgba(0, 200, 150, 0.1);
  --slate: #64748b;
  --warm-gray: #94a3b8;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --max-width: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow-soft: 0 24px 80px rgba(10, 22, 40, 0.08), 0 1px 3px rgba(10, 22, 40, 0.04);
  --shadow-card: 0 16px 48px rgba(0, 102, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

main {
  padding-top: 72px;
}

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

.section {
  padding: 100px 0;
}

.section.alt {
  background: var(--surface);
}

.section.tight {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 16px;
  color: var(--slate);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 760px;
}

.text-center {
  text-align: center;
}

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

.kicker {
  margin-bottom: 14px;
}

.stack-24 > * + * {
  margin-top: 24px;
}

.stack-16 > * + * {
  margin-top: 16px;
}

.btn-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 15px 32px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 16px rgba(0, 102, 255, 0.3);
}

.btn.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 102, 255, 0.35);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn.teal {
  background: var(--mint);
  color: var(--white);
}

.btn.teal:hover {
  background: var(--mint-dark);
  transform: translateY(-2px);
}

.btn.white {
  background: var(--white);
  color: var(--ink);
}

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

.btn.sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 102, 255, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(10px, 1.7vw, 22px);
}

.site-nav a {
  text-decoration: none;
  color: var(--slate);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-hero {
  position: relative;
  padding: 150px 0 88px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.05), transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.hero-panel h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.hero-panel p {
  color: var(--slate);
  font-size: 0.95rem;
}

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

.mini-stat {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  background: var(--surface);
}

.mini-stat .num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.42rem;
  line-height: 1;
}

.mini-stat .label {
  margin-top: 6px;
  color: var(--slate);
  font-size: 0.82rem;
  line-height: 1.4;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--mint));
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.65;
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--accent-glow);
  color: var(--accent);
}

.icon-wrap.teal {
  background: var(--mint-glow);
  color: var(--mint);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card.recommended {
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}

.price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-name {
  font-size: 1.42rem;
  margin-bottom: 6px;
}

.price-sub {
  color: var(--slate);
  font-size: 0.92rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.price-row strong {
  font-family: var(--font-display);
  font-size: 1.62rem;
}

.price-row span {
  color: var(--slate);
  font-size: 0.84rem;
}

.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--slate);
  font-size: 0.93rem;
}

.check-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mint);
  font-weight: 700;
}

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  margin-top: 28px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.data-table th {
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table td {
  color: var(--slate);
}

.data-table td strong {
  color: var(--ink);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  min-height: 220px;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: var(--accent-glow);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.step p {
  font-size: 0.92rem;
  color: var(--slate);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.highlight {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(0, 102, 255, 0.2);
  background: linear-gradient(140deg, rgba(0, 102, 255, 0.08), rgba(0, 200, 150, 0.08));
}

.highlight h3 {
  margin-bottom: 8px;
}

.highlight p {
  color: var(--slate);
}

.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-nav a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--slate);
  font-size: 0.86rem;
  font-weight: 700;
}

.pill-nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.form-shell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 30px;
}

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

.field {
  display: grid;
  gap: 8px;
}

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

label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

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

.form-note {
  color: var(--slate);
  font-size: 0.82rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 8px;
  font-size: 0.84rem;
  font-weight: 600;
}

.form-status.info {
  color: var(--slate);
}

.form-status.success {
  color: var(--mint-dark);
}

.form-status.error {
  color: #b42318;
}

button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.tag-list {
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--surface-strong);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--slate);
  font-size: 0.92rem;
}

.contact-link {
  display: inline-flex;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.contact-link:hover {
  color: var(--accent-dark);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  text-align: left;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-trigger span:last-child {
  color: var(--accent);
  transition: 0.2s ease;
}

.faq-item.open .faq-trigger span:last-child {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-body p {
  padding: 0 18px 16px;
  color: var(--slate);
  font-size: 0.93rem;
}

.cta-band {
  padding: 56px 34px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.22), transparent 70%);
}

.cta-band p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  z-index: 1;
}

.cta-band h2,
.cta-band .btn-row {
  position: relative;
  z-index: 1;
}

.footer {
  margin-top: 96px;
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer p,
.footer a {
  color: var(--slate);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

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

.footer-meta {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--warm-gray);
  font-size: 0.82rem;
}

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

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

@media (max-width: 1080px) {
  .grid.three,
  .grid.four,
  .contact-grid,
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(var(--max-width), calc(100% - 32px));
  }

  .section {
    padding: 82px 0;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: grid;
    gap: 0;
    padding: 10px 16px 14px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .site-nav a {
    padding: 12px 8px;
    border-bottom: 1px solid var(--surface);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-actions .btn.sm {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .grid.two,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  main {
    padding-top: 68px;
  }

  .site-header .container {
    height: 68px;
  }

  .brand {
    font-size: 1.32rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 0.95rem;
  }

  .page-hero {
    padding-top: 128px;
  }

  .contact-grid,
  .grid.three,
  .grid.four,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .form-shell,
  .price-card,
  .hero-panel {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
}
