:root {
  --brand-blue: #0A66C2;
  --brand-orange: #F05A28;
  --brand-dark: #1A1A2E;
  --brand-success: #10B981;
  --brand-warning: #F59E0B;
  --brand-error: #EF4444;
  --surface: #FFFFFF;
  --surface-soft: #F6F9FC;
  --surface-alt: #EFF5FB;
  --text: #172033;
  --muted: #5B657A;
  --border: #D8E3F0;
  --shadow-soft: 0 18px 45px rgba(21, 36, 65, 0.10);
  --shadow-bold: 0 26px 70px rgba(10, 102, 194, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1200px;
  --gradient-hero: linear-gradient(135deg, #0A66C2 0%, #1579D9 40%, #F05A28 100%);
  --gradient-accent: linear-gradient(135deg, #0A66C2 0%, #F05A28 100%);
}

html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(10, 102, 194, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(240, 90, 40, 0.08), transparent 28%),
    var(--surface-soft);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(246, 249, 252, 0.95);
  border-bottom: 1px solid rgba(216, 227, 240, 0.75);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.site-header-inner,
.section-inner,
.footer-inner,
.hero-inner {
  width: min(var(--content-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark img {
  width: min(290px, 42vw);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(10, 102, 194, 0.08);
}

.nav-links a.active {
  color: var(--brand-blue);
  background: rgba(10, 102, 194, 0.12);
}

.btn,
.btn-secondary,
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn,
.btn-secondary {
  padding: 0.9rem 1.35rem;
}

.btn {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 16px 35px rgba(240, 90, 40, 0.22);
  position: relative;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(240, 90, 40, 0.28);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.btn-link:hover {
  transform: translateY(-1px);
  opacity: 0.8;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-link {
  color: var(--brand-blue);
  padding: 0;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.75rem 0 3.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.14), transparent 40%);
  pointer-events: none;
}

.hero-panel {
  position: relative;
  background: var(--gradient-hero);
  color: #fff;
  border-radius: 40px;
  box-shadow: var(--shadow-bold);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 2rem;
  padding: 4rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.content-block h2,
.panel h2,
.callout h2,
.mini-hero h1 {
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin-top: 1rem;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  max-width: 12ch;
}

.hero-copy p,
.section-heading p,
.content-block p,
.panel p,
.support-copy p,
.form-note,
.muted {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.hero-copy p {
  margin: 1.15rem 0 0;
  max-width: 60ch;
  font-size: 1.02rem;
}

.hero-actions,
.button-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.metric-card {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-card strong {
  display: block;
  font-size: 1.4rem;
  font-family: Poppins, system-ui, sans-serif;
}

.metric-card span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-search {
  margin-top: 1.8rem;
  max-width: 500px;
}

.domain-search {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.domain-search input {
  flex: 1;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.domain-search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.domain-search input:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.domain-search input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.2);
}

.btn-search {
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  background: var(--gradient-accent);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 20px rgba(240, 90, 40, 0.18);
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(240, 90, 40, 0.25);
}

.btn-search:active {
  transform: translateY(0);
}

.vera-card {
  position: relative;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 1.4rem;
}

.vera-badge {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  color: var(--brand-blue);
  font-family: Poppins, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.16);
}

.vera-card h3,
.card h3,
.pricing-card h3,
.testimonial-card h3,
.support-card h3,
.faq-item summary,
.resource-card h3,
.stat-card h3,
.shop-card h3,
.step-card h3,
.table-card h3,
.callout h3,
.login-card h3 {
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
}

.vera-card h3 {
  margin-top: 1rem;
  font-size: 1.35rem;
  color: #fff;
}

.vera-card p,
.vera-card li,
.pricing-card p,
.card p,
.testimonial-card p,
.support-card p,
.faq-answer,
.resource-card p,
.shop-card p,
.stat-card p,
.step-card p,
.table-card p,
.login-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

.vera-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.section,
.mini-hero,
.footer {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(216, 227, 240, 0.7);
  border-bottom: 1px solid rgba(216, 227, 240, 0.7);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.content-block h2,
.panel h2,
.mini-hero h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  color: var(--brand-dark);
}

.section-heading p,
.content-block p,
.panel p,
.support-copy p,
.resource-card p,
.shop-card p,
.table-card p,
.stat-card p,
.login-card p,
.faq-answer,
.form-copy p,
.footer small {
  color: var(--muted);
}

.grid-3,
.grid-4,
.cards-grid,
.stats-grid,
.resource-grid,
.shop-grid,
.support-grid,
.pricing-grid,
.steps-grid,
.portal-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.grid-3,
.cards-grid,
.support-grid,
.pricing-grid,
.resource-grid,
.shop-grid,
.portal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.steps-grid,
.stats-grid,
.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.pricing-card,
.testimonial-card,
.support-card,
.faq-search,
.resource-card,
.shop-card,
.step-card,
.table-card,
.stat-card,
.login-card,
.form-shell,
.callout,
.provider-strip,
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.pricing-card:hover,
.resource-card:hover,
.shop-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(21, 36, 65, 0.14);
  border-color: rgba(10, 102, 194, 0.2);
}

.card,
.pricing-card,
.testimonial-card,
.support-card,
.resource-card,
.shop-card,
.step-card,
.table-card,
.stat-card,
.login-card,
.quote-card {
  padding: 1.4rem;
}

.card-icon,
.step-index,
.shop-badge,
.resource-badge,
.portal-badge,
.stat-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.12), rgba(240, 90, 40, 0.18));
  color: var(--brand-blue);
  font-weight: 800;
  font-family: Poppins, system-ui, sans-serif;
}

.provider-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  flex-wrap: wrap;
}

.provider-strip strong {
  font-size: 1.05rem;
}

.provider-pills,
.filter-row,
.chip-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.pill,
.filter-button,
.chip {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.83rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill:hover,
.filter-button:hover,
.chip:hover {
  border-color: var(--brand-blue);
  background: rgba(10, 102, 194, 0.08);
}

.filter-button.active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

.pricing-card.featured,
.shop-card.featured,
.callout.brand {
  border-color: rgba(10, 102, 194, 0.32);
  box-shadow: var(--shadow-bold);
}

.price,
.big-stat {
  margin: 0.65rem 0 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 2.4rem;
  color: var(--brand-dark);
}

.price small,
.big-stat small {
  font-size: 0.9rem;
  color: var(--muted);
}

.feature-list,
.check-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.feature-list li,
.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--muted);
}

.feature-list li::before,
.check-list li::before {
  content: "✓";
  color: var(--brand-success);
  font-weight: 800;
}

.pricing-note,
.microcopy {
  font-size: 0.85rem;
  color: var(--muted);
}

.mini-hero {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.mini-hero-panel {
  padding: 2.4rem;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.08), rgba(240, 90, 40, 0.12));
  border: 1px solid rgba(10, 102, 194, 0.12);
}

.mini-hero p {
  margin: 1rem 0 0;
  max-width: 60ch;
  line-height: 1.7;
}

.split-layout,
.form-layout,
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.5rem;
}

.form-shell {
  padding: 1.5rem;
}

.form-progress {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.form-progress span {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: #E6EEF7;
}

.form-progress span.active {
  background: var(--gradient-accent);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea,
.faq-search input {
  width: 100%;
  border-radius: 14px;
  border: 2px solid var(--border);
  padding: 0.9rem 1rem;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.faq-search input:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.checkbox-row,
.radio-grid {
  display: grid;
  gap: 0.7rem;
}

.choice {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
}

.choice input {
  margin-top: 0.15rem;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.button-ghost {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status.error {
  color: var(--brand-error);
}

.form-status.success {
  color: var(--brand-success);
}

.faq-search {
  padding: 1rem;
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.2rem;
  color: var(--brand-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

th,
td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.88rem;
  color: var(--brand-dark);
  background: rgba(10, 102, 194, 0.06);
}

.calculator-shell {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.07), rgba(240, 90, 40, 0.10));
  border: 1px solid rgba(10, 102, 194, 0.12);
}

.range-row {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.range-row input[type="range"] {
  width: 100%;
}

.calc-output {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.calc-output .stat-card {
  background: rgba(255, 255, 255, 0.82);
}

.gallery-card {
  min-height: 220px;
  padding: 1.4rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.15), rgba(240, 90, 40, 0.18));
  border: 1px solid rgba(10, 102, 194, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer {
  padding-top: 3rem;
  background: var(--brand-dark);
  color: rgba(255,255,255,0.8);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer h4 {
  margin: 0 0 0.8rem;
  font-family: Poppins, system-ui, sans-serif;
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer a {
  color: rgba(255,255,255,0.78);
}

.footer a:hover {
  color: #fff;
}

.footer-note {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.hidden {
  display: none !important;
}

@media (max-width: 1120px) {
  .hero-inner,
  .split-layout,
  .form-layout,
  .two-col,
  .footer-grid,
  .grid-3,
  .pricing-grid,
  .resource-grid,
  .shop-grid,
  .portal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4,
  .steps-grid,
  .gallery-grid,
  .stats-grid,
  .calc-output {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-header-inner,
  .provider-strip,
  .form-actions,
  .footer-note {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero-inner,
  .split-layout,
  .form-layout,
  .two-col,
  .footer-grid,
  .grid-3,
  .grid-4,
  .cards-grid,
  .stats-grid,
  .resource-grid,
  .shop-grid,
  .support-grid,
  .pricing-grid,
  .steps-grid,
  .portal-grid,
  .gallery-grid,
  .calc-output,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .hero-inner,
  .mini-hero-panel {
    padding: 2rem 0;
  }

  .hero-panel,
  .mini-hero-panel {
    border-radius: 28px;
  }

  .brand-mark img {
    width: min(240px, 62vw);
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .content-block h2,
  .panel h2,
  .mini-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .domain-search {
    flex-direction: column;
  }

  .domain-search input,
  .btn-search {
    width: 100%;
  }

  .section,
  .footer,
  .mini-hero {
    padding: 3.5rem 0;
  }

  .btn,
  .btn-secondary {
    font-size: 0.95rem;
    padding: 0.85rem 1.2rem;
    width: 100%;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
}