:root {
  --bg: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e7ebf3;
  --line-strong: #d8deea;
  --accent: #2563eb;
  --accent-soft: #e8f0ff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.05);
  --radius: 16px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --font-main: 'Manrope', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.hidden {
  display: none !important;
}

.page {
  background: var(--bg);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.lede {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #3c4a60;
  margin: 0 0 1.5rem;
}

.section {
  padding: 96px 0;
}

.section.muted {
  background: #f8fafc;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.75rem;
}

.section-heading h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: -0.01em;
}

.section-subhead {
  margin: 0;
  font-size: 1.02rem;
  color: #4b5565;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.22);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
}

.btn.ghost {
  background: #ffffff;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn.ghost:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.btn.text {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  color: var(--accent);
}

.navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-weight: 600;
  color: #1f2a3d;
}

.nav-links a {
  position: relative;
  padding: 0.2rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav-toggle.is-active .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  background: var(--bg);
  padding: 88px 0 78px;
}

.hero-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 2.75rem;
}

.hero-visual {
  width: 100%;
  display: grid;
  place-items: center;
}

.hero-art {
  width: min(560px, 100%);
}

.hero-art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
}

.hero-title {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.35rem;
}

.headline-group {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  min-width: 140px;
}

.headline-rotator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.12rem 0.45rem;
  border-bottom: 2px solid var(--accent);
  font-weight: 800;
  color: var(--ink);
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.headline-rotator.is-fading {
  opacity: 0.4;
  transform: translateY(4px);
}

.hero-copy .accent {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.65rem;
  color: #334155;
  font-weight: 600;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  border: none;
  background: transparent;
}

.hero-note {
  margin: 0;
  color: #1f2937;
  font-weight: 600;
  line-height: 1.5;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #1e3a8a;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-panel {
  width: 100%;
}


.trust-belt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}

.trust-inner {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

.logo-wrap {
  height: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: #ffffff;
}

.logo-wrap img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.domain-card {
  display: block;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.85rem;
}

.pill.alt {
  background: #eef2f7;
  color: #1f2937;
}

.thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f9fbff, #f4f6fb);
  margin-bottom: 0.9rem;
}

.thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card-body {
  display: grid;
  gap: 0.4rem;
}

.domain-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.descriptor {
  margin: 0;
  color: #5b6b7f;
  font-size: 0.95rem;
}

.card-footer {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: #1f2937;
}

.chevron {
  font-size: 1.1rem;
  color: #64748b;
  transition: transform 0.15s ease;
}

.domain-card:hover .chevron {
  transform: translateX(4px);
}

.skeleton {
  background: linear-gradient(90deg, #f1f4f9, #e9edf5, #f1f4f9);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}

.skeleton.line {
  height: 14px;
  border-radius: 8px;
}

.skeleton.line.wide {
  width: 70%;
}

.skeleton-fill {
  position: absolute;
  inset: 0;
}

.skeleton-line-50 {
  width: 50%;
}

.skeleton-line-40 {
  width: 40%;
}

.skeleton-dot {
  width: 16px;
  height: 16px;
}

.pill-skeleton {
  height: 28px;
  width: 80px;
  display: inline-block;
}

.fallback-thumb {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #f3f4f6;
  color: #9ca3af;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

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

.feature-card p {
  margin: 0;
  color: #4a5567;
  line-height: 1.6;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: stretch;
}

.steps-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.steps-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.steps-note {
  margin: 0.75rem auto 0;
  text-align: center;
  color: #5b6678;
  font-size: 0.95rem;
  max-width: 620px;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 48px;
}

.step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f5f7fb;
  color: #1f2937;
}

.step-icon.icon-plain {
  background: transparent;
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.step-label {
  margin: 0;
  font-weight: 800;
  color: #0f172a;
  font-size: 1.05rem;
  text-align: center;
}

.step-text {
  margin: 0;
  color: #3a485c;
  line-height: 1.6;
  text-align: left;
}

@media (min-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


.cta {
  padding: 80px 0 96px;
}

.cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ffffff;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.cta-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  letter-spacing: 0.02em;
}

.cta-copy p {
  margin: 0;
  color: #4a5567;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-actions .btn {
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.cta-kicker {
  margin: 0.2rem 0 0;
  color: #5b6678;
  font-size: 0.98rem;
}

.error {
  margin-top: 1rem;
  color: #b91c1c;
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 64px;
  background: #ffffff;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  text-align: center;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  color: #3b475c;
  font-weight: 600;
}

.footer-link {
  position: relative;
}

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

.mail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.mail-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.mail-icon svg {
  width: 100%;
  height: 100%;
}

.footer-copy {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .headline-group {
    min-width: 110px;
  }

  .visual-orb {
    width: min(420px, 100%);
  }

  .nav-links {
    position: absolute;
    right: 1.25rem;
    top: 76px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 200px;
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 90px;
  }

  .section {
    padding: 72px 0;
  }

  .meta-row {
    gap: 0.35rem;
  }

  .hero-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .headline-group {
    min-width: 0;
  }
}
