:root {
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-accent: #007bff;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --ink-strong: #0f172a;
  --muted-ink: #4b5563;
  --bg-soft: #f5f7fb;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --max-width: 1200px;
  --font-main: '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(--gray-900);
  background: #fff;
  min-height: 100vh;
}

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

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

.navbar {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

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

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

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 500;
  color: var(--gray-700);
}

.nav-links a:hover {
  color: var(--blue-600);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: var(--white);
  color: var(--gray-900);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--blue-500);
  color: var(--blue-500);
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.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 {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-500));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08) 0,
    rgba(255, 255, 255, 0.08) 10%,
    rgba(255, 255, 255, 0) 25%
  );
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 4rem 1rem;
}

.hero-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-content p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
}

.section {
  padding: 4.5rem 0;
  background: #fff;
}

.section.title-only {
  padding-bottom: 2rem;
}

.section-heading {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 2.5rem;
  color: var(--gray-900);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--gray-900);
}

.icon-star {
  color: #2563eb;
  font-size: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  align-items: center;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.featured-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.img-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease, opacity 300ms ease;
}

.featured-card:hover img {
  transform: scale(1.02);
}

.img-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e5e7eb, #f3f4f6, #e5e7eb);
  background-size: 200% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
}

.card-body {
  padding: 1.1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.domain-name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.price {
  font-weight: 700;
  color: var(--gray-900);
}

.chevron {
  color: var(--blue-600);
  opacity: 0;
  transform: translateX(0);
  transition: all 200ms ease;
}

.featured-card:hover .chevron {
  opacity: 1;
  transform: translateX(4px);
}

.feature-card {
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: var(--blue-600);
}

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

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: var(--gray-600);
}

.logos {
  gap: 1.5rem;
}

.logo-wrap {
  display: grid;
  place-items: center;
  padding: 1rem;
  transition: transform 200ms ease, opacity 200ms ease;
}

.logo-wrap img {
  max-width: 160px;
  width: 100%;
  height: auto;
  opacity: 0.75;
  transition: opacity 200ms ease;
}

.logo-wrap:hover {
  transform: scale(1.05);
}

.logo-wrap:hover img {
  opacity: 1;
}

.trust-more {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-top: 1rem;
}

.error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: 12px;
}

.hidden {
  display: none;
}

.footer {
  padding: 2.5rem 0 2rem;
  background: #fff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-link {
  display: inline-flex;
}

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

.footer-market {
  color: var(--blue-600);
  font-weight: 600;
  text-decoration: none;
}

.footer-market:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  color: #6b7280;
}

.footer-link {
  color: #6b7280;
  font-weight: 500;
}

.footer-link:hover {
  color: #111827;
}

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

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

.footer-copy {
  margin: 0.25rem 0 0;
  color: #9ca3af;
  font-size: 0.95rem;
  text-align: center;
}

/* Why .now page */
.why-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #4f46e5, #7c3aed, #ec4899);
}

.why-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.why-hero-body {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 1200px;
}

.why-hero-body h1 {
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0;
}

.accent-dot {
  color: #22d3ee;
}

.why-hero-body p {
  margin: 2rem auto 0;
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  font-weight: 300;
  max-width: 900px;
  line-height: 1.4;
}

.why-hero-body .subline {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 400;
}

.why-cta {
  margin-top: 3rem;
}

.pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #22d3ee;
  color: #0f172a;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.pill-cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 24px 50px rgba(34, 211, 238, 0.35);
  background: #5eead4;
}

.pill-cta .chevron {
  font-size: 1.4rem;
}

.why-cards {
  padding: 4.5rem 0;
}

.why-grid {
  margin-top: 1rem;
}

.why-simple {
  background: #fff;
}

.why-wrapper {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 4rem 0;
}

.why-simple-inner {
  background: transparent;
  max-width: 72rem;
}

.why-block {
  margin-bottom: 3rem;
}

.why-block h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #111827;
}

.why-block p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #374151;
}

.why-block strong {
  font-weight: 700;
}

.why-block em {
  font-style: italic;
}

.why-cite {
  text-align: center;
  margin-top: 2rem;
}

.why-cite p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
}

.why-cite a {
  color: #2563eb;
  text-decoration: underline;
}

.why-cite a:hover {
  color: #1d4ed8;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
}

.why-card svg {
  width: 64px;
  height: 64px;
  color: #22d3ee;
}

.why-card h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.why-card p {
  margin: 0;
  color: #4b5563;
  font-size: 1.05rem;
}

.ms-section {
  padding: 6rem 0;
  background: linear-gradient(90deg, #312e81, #1e1b4b);
  color: #fff;
}

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

.ms-inner h2 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 900;
  margin: 0 0 2.5rem;
  line-height: 1.15;
}

.ms-logo {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.ms-copy {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.7;
  opacity: 0.95;
}

.ms-links {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  font-size: 1rem;
}

.ms-links a {
  color: #a5f3fc;
  text-decoration: underline;
}

.ms-links a:hover {
  color: #e0f2fe;
}

.animate-fade-in {
  animation: fade-in 1.2s ease-out forwards;
}

.animate-fade-in-delay {
  animation: fade-in 1.4s ease-out forwards;
}

.animate-fade-in-delay-2 {
  animation: fade-in 1.8s ease-out forwards;
}

.animate-fade-up {
  animation: fade-up 0.9s ease-out forwards;
}

/* Contact page */
.contact-page {
  background: #fff;
}

.contact-hero {
  padding: 4rem 1rem 3rem;
  text-align: center;
}

.contact-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.5rem, 3vw, 3rem);
  font-weight: 800;
  color: #111827;
}

.contact-hero p {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: #4b5563;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  padding: 2.5rem 1.5rem;
  margin: 0 auto 2rem;
  max-width: 720px;
}

.contact-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #2563eb;
}

.icon-circle svg {
  width: 34px;
  height: 34px;
}

.contact-card h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
}

.contact-card p {
  margin: 0;
  color: #4b5563;
  max-width: 480px;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-mail:hover {
  color: #1d4ed8;
}

.contact-mail svg {
  width: 26px;
  height: 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-feature {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
}

.icon-small {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  display: grid;
  place-items: center;
  color: #16a34a;
}

.icon-small svg {
  width: 28px;
  height: 28px;
}

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

.icon-small.purple {
  color: #8b5cf6;
}

.icon-small.orange {
  color: #ea580c;
}

.contact-feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
}

.contact-feature p {
  margin: 0;
  color: #4b5563;
  font-size: 0.98rem;
}

.contact-note {
  margin-top: 2.5rem;
  color: #4b5563;
  font-size: 1rem;
}

/* News page */
.news-page {
  background: #0b1224;
  color: #f8fafc;
  min-height: 70vh;
}

.news-hero {
  position: relative;
  padding: 5rem 1rem 6rem;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.18), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.12), transparent 32%),
    linear-gradient(135deg, #0b1224 0%, #0f172a 60%, #0b1224 100%);
}

.news-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 65%, rgba(37, 99, 235, 0.1), transparent 45%),
    radial-gradient(circle at 20% 70%, rgba(16, 185, 129, 0.07), transparent 40%);
  filter: blur(6px);
  opacity: 0.9;
  pointer-events: none;
}

.news-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.news-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #e0f2fe;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.news-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 8px rgba(52, 211, 153, 0.1);
}

.news-hero h1 {
  margin: 1.4rem 0 0.25rem;
  font-size: clamp(2.9rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #f8fafc;
  text-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}
/* Privacy page */
.privacy-page {
  background: #fff;
  min-height: 100vh;
}

.privacy-inner {
  max-width: 64rem;
  padding: 4rem 1rem;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 2rem;
  text-decoration: none;
}

.privacy-back:hover {
  color: #1d4ed8;
}

.back-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-right: 0.4rem;
}

.back-icon svg {
  width: 18px;
  height: 18px;
}

.privacy-title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 3vw, 2.75rem);
  font-weight: 800;
  color: #111827;
}

.privacy-updated {
  margin: 0 0 1.5rem;
  color: #4b5563;
  font-size: 1rem;
}

.privacy-prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4b5563;
}

.privacy-prose p {
  margin: 0 0 1.25rem;
}

.privacy-prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.privacy-prose ul {
  margin: 0 0 1.25rem 1.25rem;
  padding-left: 1rem;
  list-style: disc;
}

.privacy-prose li {
  margin: 0.35rem 0;
}

.privacy-link {
  color: #2563eb;
  text-decoration: underline;
}

.privacy-link:hover {
  color: #1d4ed8;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 768px) {
  .nav-content {
    flex-wrap: wrap;
    padding: 0.75rem 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0 0;
    border-top: 1px solid #e5e7eb;
    display: none;
  }

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

  .nav-links a {
    padding: 0.25rem 0;
  }
}

@media (max-width: 640px) {
  .nav-links {
    gap: 16px;
    font-size: 0.95rem;
  }

  .hero-content {
    padding: 3rem 1rem;
  }

  .img-wrap {
    height: 170px;
  }
}

/* Why .Now modern layout overrides */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn.hero-primary {
  background: var(--blue-accent);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 123, 255, 0.26);
}

.btn.hero-primary:hover {
  box-shadow: 0 22px 44px rgba(0, 123, 255, 0.32);
}

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

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

.why-modern {
  background: #fff;
  color: var(--ink-strong);
}

.why-hero {
  position: relative;
  min-height: 36vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
}

.why-hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.why-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
  padding: 1rem 1.5rem 1.5rem;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.9rem;
  color: #1d4ed8;
  margin: 0 0 1rem;
  display: none;
}

.why-hero-title {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.why-hero-title .placeholder {
  color: #9ca3af;
}

.why-hero-title .accent {
  color: var(--blue-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.12em;
}

.why-hero-subhead {
  margin: 1rem auto 1.5rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--muted-ink);
  max-width: 860px;
  display: none;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
}

.hero-hook {
  margin: 1rem 0 0;
  font-weight: 700;
  color: var(--ink-strong);
}

.hero-sub-strong {
  font-size: 1.1rem;
  color: var(--muted-ink);
}

.hero-watermark {
  position: absolute;
  right: 4%;
  bottom: 2%;
  font-size: clamp(1.6rem, 6vw, 3.2rem);
  font-weight: 900;
  color: rgba(0, 123, 255, 0.06);
}

.why-section {
  padding: 64px 0;
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.stacked.centered {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

.split.reverse .split-copy {
  order: 2;
}

.split.reverse .split-visual {
  order: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  align-items: stretch;
  justify-items: center;
}

.split-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  position: relative;
}

.split-copy h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 120px;
  height: 4px;
  background: var(--blue-accent);
  border-radius: 999px;
}

.stacked.centered .split-copy h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.stacked.centered .split-copy p {
  text-align: center;
}

.split-copy p {
  margin: 0 0 1rem;
  color: var(--muted-ink);
  line-height: 1.7;
  font-size: 1.05rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.win-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.win-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.win-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eef4ff;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--blue-accent);
  font-size: 1.1rem;
}

.win-card h3 {
  margin: 0 0 0.2rem;
}

.win-card p {
  margin: 0;
  color: var(--muted-ink);
  line-height: 1.5;
}

.benefit-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.benefit-card h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.1rem;
  color: var(--ink-strong);
}

.benefit-card p {
  margin: 0;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef4ff;
  display: grid;
  place-items: center;
}

.icon-badge img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.footnote {
  font-size: 0.95rem;
  color: #5b6678;
  margin: 0.5rem 0 1rem;
}

.footnote a {
  color: var(--blue-accent);
  text-decoration: underline;
}

.section-hook {
  font-weight: 800;
  color: var(--ink-strong);
  margin: 0.5rem 0 1.25rem;
}

.ghost-secondary + .section-hook {
  margin-top: 1.5rem;
}

.timeline-card {
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.3);
}

.timeline-label {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.timeline-label.accent {
  color: #60a5fa;
}

.timeline-bars {
  display: flex;
  gap: 0.4rem;
  margin: 0.6rem 0 1rem;
}

.timeline-bars .bar {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: #1f2937;
}

.timeline-bars .bar.muted {
  background: #1f2937;
}

.timeline-bars .bar.muted.short {
  flex: 0.6;
}

.timeline-bars .bar.muted.long {
  flex: 1.2;
}

.timeline-bars .bar.accent {
  background: linear-gradient(90deg, #60a5fa, #2563eb);
}

.timeline-bars .bar.accent.medium {
  flex: 1;
}

.timeline-bars .bar.accent.long {
  flex: 1.3;
}

.timeline-note {
  margin: 0;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.why-presence .centered-title {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 3vw, 3rem);
  text-align: center;
}

.why-presence .lead {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 900px;
  color: var(--muted-ink);
  line-height: 1.7;
}

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

.presence-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.presence-icon {
  font-size: 1.4rem;
  color: var(--blue-accent);
  margin-bottom: 0.3rem;
}

.presence-visual {
  margin: 1.5rem auto 0;
  max-width: 680px;
  text-align: center;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.before-after .label {
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: var(--muted-ink);
}

.before-after .domain {
  margin: 0;
  font-weight: 800;
  font-size: 1.1rem;
}

.before-after .domain.muted {
  color: #94a3b8;
}

.before-after .domain.accent {
  color: var(--blue-accent);
}

.why-integrate .bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.bullet-list li {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  color: var(--muted-ink);
}

.case-card {
  background: #ffffff;
  color: var(--ink-strong);
  border-radius: 16px;
  padding: 1.6rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  width: 100%;
  max-width: 520px;
}

.case-summary {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.case-summary h4 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.case-summary ul {
  margin: 0 0 0.6rem;
  padding-left: 1.1rem;
  color: var(--muted-ink);
  display: grid;
  gap: 0.3rem;
}

.path-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.path-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.path-col h3 {
  margin: 0 0 0.4rem;
}

.path-col ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--muted-ink);
}

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

.flow-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.flow-title {
  margin: 0 0 0.35rem;
  font-weight: 800;
  color: var(--ink-strong);
}

.flow-line {
  margin: 0 0 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.flow-note {
  margin: 0;
  color: var(--muted-ink);
}

.arrow {
  font-weight: 800;
  color: var(--muted-ink);
}

.inline-link {
  margin-top: 0.75rem;
  color: var(--blue-accent);
  text-decoration: underline;
}

.inline-link:hover {
  color: #1d4ed8;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-visual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-visual {
    grid-template-columns: 1fr;
  }
}
.case-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--blue-accent);
  margin: 0 0 0.4rem;
}

.case-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.case-text {
  margin: 0 0 1rem;
  line-height: 1.6;
  color: var(--muted-ink);
}

.case-flow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.case-flow .pill {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #f8fafc;
  font-weight: 700;
}

.case-flow .pill.accent {
  background: #eaf2ff;
  color: var(--blue-accent);
}

.case-flow .arrow {
  font-weight: 800;
}

.case-note {
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.98rem;
}

.why-bold h2 {
  text-align: center;
  margin: 0 0 0.5rem;
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.why-bold .lead {
  text-align: center;
  margin: 0 auto 1.5rem;
  max-width: 780px;
  color: var(--muted-ink);
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.carousel-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
  scroll-snap-align: start;
}

.carousel-label {
  margin: 0 0 0.25rem;
  font-weight: 800;
  color: var(--blue-accent);
  letter-spacing: 0.03em;
}

.carousel-card h3 {
  margin: 0 0 0.35rem;
}

.carousel-card p {
  margin: 0 0 0.35rem;
  color: var(--muted-ink);
}

.carousel-card .metric {
  font-weight: 800;
  color: #16a34a;
}

.why-wins h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
}

.comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}

.table-col {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
}

.table-col.alt {
  background: #f8fafc;
}

.table-title {
  margin: 0 0 0.5rem;
  font-weight: 800;
}

.table-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  color: var(--muted-ink);
}

.quote {
  margin: 0 0 1rem;
  font-weight: 800;
  color: var(--ink-strong);
}

.quote-card {
  background: #ffffff;
  color: var(--ink-strong);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.quote-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--blue-accent);
  margin: 0 0 0.4rem;
}

.quote-body {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.quote-note {
  margin: 0;
  color: var(--muted-ink);
}

.why-cta-final {
  text-align: center;
}

.why-cta-final h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.why-cta-final .lead {
  margin: 0 auto 1.25rem;
  max-width: 780px;
  color: var(--muted-ink);
}

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

.cta-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 1.25rem;
  color: var(--muted-ink);
}

.cta-links a {
  color: var(--blue-accent);
  text-decoration: underline;
}

.cta-links .dot {
  color: #cbd5e1;
}

.logo-row.subtle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  opacity: 0.7;
}

.logo-row.subtle .logo-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  background: #fff;
}

.logo-row.subtle img {
  height: 34px;
}

@media (min-width: 900px) {
  .hero-cta-row {
    justify-content: flex-end;
  }

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

@media (max-width: 720px) {
  .why-hero {
    min-height: 78vh;
    background-attachment: scroll;
  }

  .why-section {
    padding: 72px 0;
  }

  .split-copy h2::after {
    width: 90px;
  }
}
