:root {
  --bg: #f3f8ff;
  --bg-strong: #dfeeff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ink: #10233f;
  --ink-soft: #54708e;
  --accent: #1d6fe8;
  --accent-strong: #1457c7;
  --accent-warm: #5aa4ff;
  --line: rgba(16, 35, 63, 0.12);
  --shadow: 0 24px 70px rgba(25, 86, 182, 0.14);
  --radius: 28px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(29, 111, 232, 0.16), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(90, 164, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 52%, #e7f1ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

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

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 1rem;
}

.brand small,
.footer-brand small {
  display: block;
  color: var(--ink-soft);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 12px 30px rgba(29, 111, 232, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--ink-soft);
  font-weight: 600;
}

.site-nav a:hover,
.footer-grid a:hover,
.feature-card a:hover,
.quick-links a:hover {
  color: var(--accent-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(29, 111, 232, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(29, 111, 232, 0.28);
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(27, 42, 47, 0.14);
  box-shadow: none;
}

.button-outline:hover {
  border-color: rgba(29, 111, 232, 0.45);
  color: var(--accent-strong);
}

.button-sm {
  min-height: 44px;
  padding: 0 1rem;
}

.button-block {
  width: 100%;
}

.hero-section,
.feature-section,
.plans-section,
.support-section,
.cta-section,
.page-hero,
.content-section {
  padding: 4.5rem 0;
}

.hero-grid,
.support-grid,
.content-grid,
.cta-panel,
.stats-grid,
.feature-grid,
.plans-grid,
.footer-grid,
.two-column,
.services-grid,
.proof-grid,
.work-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.support-grid,
.two-column {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.support-copy h2,
.cta-panel h2,
.page-hero h1,
.section-card h2,
.service-card h3,
.feature-card h3,
.plan-card .plan-tier,
.work-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
}

.hero-text,
.section-heading p,
.support-copy p,
.page-hero p,
.section-card p,
.service-card p,
.feature-card p,
.plan-card p,
.work-card p,
.site-footer p,
.timeline-item p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.eyebrow,
.card-label,
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.trust-list,
.plan-card ul,
.check-list,
.timeline {
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-list li,
.check-list li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(27, 42, 47, 0.08);
  font-weight: 700;
  color: var(--ink-soft);
}

.panel-card,
.stat-card,
.feature-card,
.plan-card,
.support-link,
.cta-panel,
.section-card,
.service-card,
.work-card,
.timeline-item,
.quote-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-card,
.plan-card,
.feature-card,
.section-card,
.service-card,
.work-card,
.timeline-item,
.quote-card {
  padding: 1.7rem;
}

.floating-card::after,
.feature-card::after,
.plan-card::after,
.service-card::after,
.work-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(90, 164, 255, 0.18), transparent 70%);
}

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

.domain-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.domain-input-row {
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 0.75rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(27, 42, 47, 0.12);
  padding: 0 1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(29, 111, 232, 0.18);
  border-color: rgba(29, 111, 232, 0.46);
}

.quick-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.quick-links a,
.feature-card a,
.footer-grid a {
  font-weight: 800;
  color: var(--ink);
}

.stats-grid,
.feature-grid,
.plans-grid,
.services-grid,
.work-grid,
.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 1.35rem 1.45rem;
}

.stat-visual {
  height: 108px;
  margin-bottom: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(29, 111, 232, 0.12);
  background-color: #eaf3ff;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-visual-hosting {
  background-image:
    linear-gradient(135deg, rgba(17, 78, 166, 0.18), rgba(90, 164, 255, 0.06)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Crect width='800' height='400' fill='%23eaf3ff'/%3E%3Cg opacity='.95'%3E%3Crect x='110' y='104' width='580' height='72' rx='18' fill='%231d6fe8'/%3E%3Crect x='110' y='188' width='580' height='72' rx='18' fill='%235aa4ff'/%3E%3Crect x='110' y='272' width='580' height='28' rx='14' fill='%2398c5ff'/%3E%3Ccircle cx='160' cy='140' r='10' fill='white'/%3E%3Ccircle cx='160' cy='224' r='10' fill='white'/%3E%3Ccircle cx='194' cy='140' r='10' fill='white'/%3E%3Ccircle cx='194' cy='224' r='10' fill='white'/%3E%3Crect x='590' y='125' width='70' height='12' rx='6' fill='white'/%3E%3Crect x='590' y='209' width='70' height='12' rx='6' fill='white'/%3E%3C/g%3E%3C/svg%3E");
}

.stat-visual-domain {
  background-image:
    linear-gradient(135deg, rgba(17, 78, 166, 0.14), rgba(90, 164, 255, 0.06)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Crect width='800' height='400' fill='%23edf5ff'/%3E%3Cg opacity='.96'%3E%3Ccircle cx='400' cy='200' r='112' fill='none' stroke='%231d6fe8' stroke-width='18'/%3E%3Cellipse cx='400' cy='200' rx='112' ry='46' fill='none' stroke='%235aa4ff' stroke-width='14'/%3E%3Cellipse cx='400' cy='200' rx='54' ry='112' fill='none' stroke='%235aa4ff' stroke-width='14'/%3E%3Cpath d='M288 200h224' stroke='%231145a6' stroke-width='16' stroke-linecap='round'/%3E%3Ccircle cx='612' cy='110' r='42' fill='%231d6fe8'/%3E%3Cpath d='M598 110h28M612 96v28' stroke='white' stroke-width='10' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
}

.stat-visual-support {
  background-image:
    linear-gradient(135deg, rgba(17, 78, 166, 0.14), rgba(90, 164, 255, 0.08)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Crect width='800' height='400' fill='%23eef6ff'/%3E%3Cg opacity='.97'%3E%3Cpath d='M248 238c0-82 68-148 152-148s152 66 152 148' fill='none' stroke='%231d6fe8' stroke-width='28' stroke-linecap='round'/%3E%3Crect x='220' y='222' width='62' height='108' rx='24' fill='%235aa4ff'/%3E%3Crect x='518' y='222' width='62' height='108' rx='24' fill='%235aa4ff'/%3E%3Crect x='314' y='236' width='172' height='76' rx='28' fill='%231145a6'/%3E%3Ccircle cx='400' cy='180' r='38' fill='%2398c5ff'/%3E%3Crect x='352' y='316' width='96' height='18' rx='9' fill='%231d6fe8'/%3E%3C/g%3E%3C/svg%3E");
}

.stat-card span {
  display: block;
  margin-bottom: 0.6rem;
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
}

.section-heading {
  margin-bottom: 1.6rem;
}

.section-heading h2,
.support-copy h2,
.cta-panel h2,
.section-card h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(29, 111, 232, 0.96), rgba(20, 87, 199, 0.96));
  color: #f6f1ea;
  transform: translateY(-10px);
}

.plan-card.featured p,
.plan-card.featured li,
.plan-card.featured .price span,
.plan-card.featured .plan-badge {
  color: rgba(246, 241, 234, 0.86);
}

.plan-badge {
  color: #fff;
}

.price {
  margin: 1rem 0 0.7rem;
  font-size: 2.3rem;
  font-weight: 800;
}

.price span {
  font-size: 1rem;
  color: var(--ink-soft);
}

.plan-card ul,
.timeline {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 1.5rem;
}

.plan-card li,
.timeline-item {
  color: var(--ink-soft);
}

.plan-card li::before,
.check-list li::before,
.timeline-item::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
}

.support-links {
  display: grid;
  gap: 1rem;
}

.support-link {
  padding: 1.2rem 1.35rem;
}

.support-link span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}

.support-link strong {
  font-size: 1.05rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 238, 255, 0.9));
}

.page-hero {
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 3rem;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 111, 232, 0.16), transparent 72%);
}

.page-hero p,
.section-card p,
.service-card p,
.work-card p,
.timeline-item p {
  max-width: 62ch;
}

.section-card,
.quote-card {
  background: rgba(255, 250, 243, 0.82);
}

.quote-card blockquote {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  line-height: 1.35;
}

.timeline-item {
  padding: 1.1rem 1.25rem;
}

.timeline-item::before {
  position: absolute;
  left: 1.15rem;
  top: 1.4rem;
}

.timeline-item strong,
.service-card h3,
.work-card h3 {
  display: block;
  margin-bottom: 0.45rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 35, 63, 0.1);
}

.footer-grid h3 {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-grid a {
  display: block;
  margin: 0.55rem 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .nav-wrap,
  .site-nav,
  .hero-grid,
  .support-grid,
  .two-column,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-wrap {
    padding: 1rem 0;
  }

  .site-nav {
    gap: 0.9rem;
  }

  .button-sm {
    width: 100%;
  }

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

  .stats-grid,
  .feature-grid,
  .plans-grid,
  .services-grid,
  .work-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .hero-section,
  .feature-section,
  .plans-section,
  .support-section,
  .cta-section,
  .page-hero,
  .content-section {
    padding: 3.25rem 0;
  }

  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .domain-input-row,
  .hero-actions,
  .cta-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-nav {
    display: none;
  }

  .price {
    font-size: 2rem;
  }
}
