:root {
  --dark: #0f1623;
  --dark-card: #162032;
  --dark-mid: #1e2d42;
  --cyan: #0ea5e9;
  --cyan-dark: #0284c7;
  --cyan-glow: rgba(14, 165, 233, 0.15);
  --light-bg: #f0f4f8;
  --white: #ffffff;
  --text-dark: #0f1623;
  --text-mid: #374151;
  --text-soft: #6b7280;
  --text-light: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --border-l: #e5e7eb;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --purple: #7c3aed;
  --success: #16a34a;
  --warning: #f59e0b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

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

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  background: rgba(15, 22, 35, 0.96);
  border-bottom: 2px solid var(--cyan);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  backdrop-filter: blur(14px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.nav-logo-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 1));
  border: 1px solid rgba(14, 165, 233, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo-wrap img,
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-brand-text,
.brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name,
.brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-brand-sub,
.brand-sub {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.74);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.nav-link:hover,
.footer-links a:hover {
  color: var(--white);
}

.nav-link.active {
  background: var(--cyan);
  color: var(--white);
  font-weight: 700;
}

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

.nav-mobile-contact {
  display: none;
}

.account-menu {
  position: relative;
}

.account-menu summary {
  list-style: none;
}

.account-menu summary::-webkit-details-marker {
  display: none;
}

.account-menu-trigger {
  min-height: 46px;
}

.account-menu-panel {
  position: absolute;
  top: calc(100% + 0.8rem);
  right: 0;
  width: min(320px, 88vw);
  padding: 0.75rem;
  border-radius: 18px;
  border: 1px solid rgba(14, 165, 233, 0.16);
  background: rgba(15, 22, 35, 0.98);
  box-shadow: 0 18px 40px rgba(15, 22, 35, 0.32);
}

.account-menu-copy {
  padding: 0.35rem 0.45rem 0.8rem;
}

.account-menu-copy strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
}

.account-menu-copy span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.55;
}

.account-menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.account-menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.account-menu-item:hover {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.26);
  transform: translateY(-1px);
}

.account-menu-item strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.account-menu-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  line-height: 1.55;
}

.btn-ghost-nav,
.btn-hero-secondary,
.btn-cta-outline,
.btn-subtle,
.btn-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.btn-cta-nav,
.btn-hero-primary,
.btn-popular,
.btn-top,
.btn-addon,
.btn-primary,
.btn-secondary,
.btn-free,
.btn-starter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cta-nav,
.btn-hero-primary,
.btn-popular,
.btn-primary,
.btn-addon {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 0 24px rgba(14, 165, 233, 0.25);
}

.btn-cta-nav,
.btn-primary,
.btn-secondary,
.btn-free,
.btn-starter,
.btn-popular,
.btn-top {
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
}

.btn-hero-primary {
  padding: 0.95rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
}

.btn-cta-nav:hover,
.btn-hero-primary:hover,
.btn-popular:hover,
.btn-primary:hover,
.btn-addon:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
}

.btn-secondary,
.btn-free {
  border: 2px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
}

.btn-secondary:hover,
.btn-free:hover {
  background: var(--cyan);
  color: var(--white);
}

.btn-starter {
  border: 2px solid var(--text-light);
  color: var(--text-mid);
  background: transparent;
}

.btn-starter:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-top {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-top:hover {
  background: #6d28d9;
  transform: translateY(-1px);
}

.btn-cta-outline {
  border: 1px solid rgba(14, 165, 233, 0.4);
  color: var(--cyan);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
}

.btn-cta-outline:hover,
.btn-subtle:hover,
.btn-link:hover,
.btn-hero-secondary:hover,
.btn-ghost-nav:hover {
  color: var(--white);
}

.hero,
.page-hero {
  background: var(--dark);
  padding: 7rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero::before,
.section-dark::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(14, 165, 233, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(14, 165, 233, 0.06) 0%, transparent 50%);
}

.page-hero::before {
  background:
    radial-gradient(ellipse 55% 75% at 80% 20%, rgba(14, 165, 233, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 15% 85%, rgba(124, 58, 237, 0.12) 0%, transparent 50%);
}

.hero::after,
.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
  opacity: 0.4;
}

.hero-inner,
.page-hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge,
.section-eyebrow,
.page-eyebrow,
.status-pill,
.badge-soft,
.badge-dark {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.hero-badge,
.page-eyebrow,
.badge-soft {
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: var(--cyan);
  font-size: 0.7rem;
  padding: 0.45rem 0.95rem;
}

.badge-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  padding: 0.45rem 0.9rem;
}

.hero h1,
.page-hero h1 {
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  margin: 1.2rem 0 1.3rem;
}

.hero h1 span,
.page-hero h1 span,
.highlight-quote span,
.metric-card strong,
.focus-card .accent,
.timeline-step strong,
.price-users strong,
.price-searches strong {
  color: var(--cyan);
}

.hero-sub,
.page-sub,
.section-sub.light,
.page-copy,
.cta-inner p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.8;
}

.hero-sub,
.page-sub {
  font-size: 1rem;
  max-width: 560px;
}

.hero-actions,
.cta-buttons,
.action-row,
.inline-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-stats,
.metric-grid,
.tile-grid,
.focus-grid,
.prepared-grid,
.company-grid,
.vertical-grid,
.timeline-grid,
.contact-grid,
.addon-cards,
.features-grid,
.security-cards,
.pricing-grid {
  display: grid;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-card,
.panel,
.feature-card,
.contact-card,
.price-card,
.sec-card,
.feat-card,
.focus-card,
.vertical-card,
.timeline-step,
.prepared-card {
  border-radius: var(--radius);
}

.hero-card,
.sec-card,
.focus-card,
.prepared-card.dark,
.timeline-step.dark {
  background: var(--dark-card);
  border: 1px solid rgba(14, 165, 233, 0.18);
}

.hero-card,
.sec-card {
  padding: 2rem;
}

.hero-card-header,
.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-card-eyebrow,
.card-eyebrow,
.section-eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero-card-title,
.card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.35;
}

.hero-card-items,
.checklist,
.problem-list,
.price-list,
.prepared-bullets,
.contact-list,
.value-list,
.company-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.hero-card-items,
.price-list,
.contact-list,
.value-list,
.company-list {
  gap: 0.85rem;
}

.hero-card-items li,
.checklist li,
.price-list li,
.prepared-bullets li,
.contact-list li,
.value-list li,
.company-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.55;
}

.hero-card-items li,
.checklist li,
.contact-list li {
  font-size: 0.88rem;
}

.hero-card-items li,
.checklist li,
.sec-card p,
.focus-card p,
.contact-list li {
  color: rgba(255, 255, 255, 0.7);
}

.hero-card-items svg,
.check-icon svg,
.price-list li svg {
  flex-shrink: 0;
}

.section-light,
.section-dark,
.section-white,
.addon-section {
  padding: 5rem 4rem;
}

.section-light {
  background: var(--light-bg);
}

.section-white {
  background: var(--white);
}

.section-dark {
  background: var(--dark);
  position: relative;
}

.section-dark::before {
  background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(14, 165, 233, 0.07) 0%, transparent 60%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-title.light,
.page-title.light,
.cta-inner h2,
.footer-brand p {
  color: var(--white);
}

.section-title.dark,
.page-title.dark,
.vertical-card h3,
.focus-card h3,
.price-card h3,
.contact-card h3,
.prepared-card h3,
.metric-card h3,
.company-panel h3 {
  color: var(--text-dark);
}

.section-sub.dark,
.page-copy.dark,
.vertical-card p,
.focus-card p,
.metric-card p,
.company-panel p,
.contact-card p,
.prepared-card p,
.pricing-note,
.price-desc,
.addon-subtitle {
  color: var(--text-soft);
  line-height: 1.72;
}

.problem-grid,
.highlight-grid,
.company-grid,
.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.problem-list {
  gap: 0.9rem;
  margin-top: 2rem;
}

.problem-item,
.metric-card,
.vertical-card,
.company-panel,
.prepared-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-l);
}

.problem-item {
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.metric-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.metric-card {
  padding: 1.5rem;
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.company-grid,
.vertical-grid,
.focus-grid,
.prepared-grid,
.contact-grid {
  gap: 1.25rem;
}

.company-grid,
.vertical-grid,
.prepared-grid,
.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}

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

.company-panel,
.vertical-card,
.focus-card,
.prepared-card,
.contact-card {
  border-radius: var(--radius);
  padding: 1.75rem;
}

.company-panel h3,
.vertical-card h3,
.focus-card h3,
.prepared-card h3,
.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.company-list li::before,
.value-list li::before,
.prepared-bullets li::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-top: 0.45rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--cyan);
}

.vertical-card {
  position: relative;
  overflow: hidden;
}

.vertical-card::before,
.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.vertical-card:hover::before,
.feat-card:hover::before {
  transform: scaleX(1);
}

.vertical-card:hover,
.feat-card:hover,
.contact-card:hover,
.prepared-card:hover,
.metric-card:hover {
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 12px 42px rgba(14, 165, 233, 0.08);
  transform: translateY(-2px);
}

.status-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1rem 0 1.5rem;
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.18);
  color: #166534;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-strip.warn {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.24);
  color: #9a6700;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.feat-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-l);
  padding: 1.75rem;
  transition: all 0.25s ease;
}

.feat-icon {
  width: 44px;
  height: 44px;
  background: var(--cyan-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feat-card p,
.sec-card p {
  font-size: 0.86rem;
  line-height: 1.65;
}

.feat-card p {
  color: var(--text-soft);
}

.feat-tag,
.plan-tag,
.section-tag {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.highlight-grid {
  position: relative;
  z-index: 1;
  gap: 4rem;
}

.highlight-quote {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--white);
  padding-left: 1.5rem;
  border-left: 3px solid var(--cyan);
}

.checklist {
  gap: 1rem;
  margin-top: 1.5rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.security-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.sec-card .sec-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.sec-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 3rem auto 0;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  transition: box-shadow 0.2s ease;
}

.price-card.popular {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 12px 40px rgba(14, 165, 233, 0.15);
}

.price-card.top {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple), 0 12px 40px rgba(124, 58, 237, 0.12);
}

.price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  white-space: nowrap;
}

.price-badge.purple {
  background: var(--purple);
}

.price-plan {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.price-free {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-style: italic;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}

.price-currency {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-mid);
}

.price-value {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.price-period {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.price-users,
.price-searches {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-soft);
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.price-list {
  margin-bottom: 1.5rem;
  flex: 1;
}

.price-list li {
  font-size: 0.78rem;
  color: var(--text-mid);
}

.price-list li.off {
  color: var(--text-light);
  opacity: 0.45;
}

.price-list .grp {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-l);
}

.addon-section {
  background: var(--white);
  padding: 3rem 4rem;
  border-top: 1px solid var(--border-l);
}

.addon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.addon-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.addon-tag {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}

.addon-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.addon-card {
  background: var(--light-bg);
  border: 1px solid var(--border-l);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.addon-volume {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.addon-label,
.addon-desc,
.pricing-note {
  font-size: 0.75rem;
}

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

footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 2.5rem 4rem;
}

.footer-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

footer p,
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-row p {
  max-width: 480px;
  line-height: 1.6;
}

.footer-row .footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 1rem;
}

.footer-row .footer-links a {
  white-space: nowrap;
}

.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.page-hero-copy {
  max-width: 620px;
}

.hero-logo {
  width: min(100%, 280px);
  margin-bottom: 1.35rem;
}

.lead-panel,
.company-panel.dark,
.prepared-card.dark,
.contact-card.dark {
  color: var(--white);
}

.lead-panel {
  background: linear-gradient(180deg, rgba(22, 32, 50, 0.98), rgba(15, 22, 35, 0.98));
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 20px;
  padding: 2rem;
}

.lead-panel h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.lead-panel p,
.prepared-card.dark p,
.contact-card.dark p,
.company-panel.dark p {
  color: rgba(255, 255, 255, 0.7);
}

.prepared-card.dark,
.contact-card.dark,
.company-panel.dark {
  background: var(--dark-card);
  border: 1px solid rgba(14, 165, 233, 0.16);
}

.prepared-bullets {
  gap: 0.7rem;
  margin-top: 1rem;
}

.prepared-bullets li,
.value-list li,
.company-list li {
  color: var(--text-mid);
  font-size: 0.92rem;
}

.prepared-card.dark .prepared-bullets li,
.contact-card.dark .contact-list li,
.company-panel.dark .company-list li {
  color: rgba(255, 255, 255, 0.74);
}

.contact-list strong {
  color: var(--white);
}

.note-box {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.18);
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.65;
}

.redirect-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, rgba(14, 165, 233, 0.12), transparent 30%), var(--dark);
  padding: 2rem;
}

.redirect-card {
  max-width: 560px;
  background: var(--dark-card);
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 22px;
  padding: 2rem;
  color: var(--white);
  text-align: center;
}

.redirect-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
}

@media (max-width: 1180px) {
  nav {
    padding: 0 1rem;
    gap: 0.65rem;
  }

  .nav-links {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    gap: 0.15rem;
  }

  .nav-link {
    padding: 0.46rem 0.68rem;
    font-size: 0.8rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .btn-ghost-nav,
  .btn-cta-nav {
    font-size: 0.8rem;
  }

  .btn-cta-nav {
    padding: 0.52rem 1rem;
  }

  .nav-brand.logo-lockup .brand-lockup {
    width: 196px;
  }
}

@media (max-width: 1100px) {
  .hero-inner,
  .page-hero-inner,
  .problem-grid,
  .highlight-grid,
  .company-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }

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

  .features-grid,
  .security-cards,
  .focus-grid,
  .addon-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  nav {
    padding: 0 1.25rem;
  }

  .nav-brand.logo-lockup .brand-lockup {
    width: 176px;
  }

  .nav-actions {
    margin-left: auto;
    gap: 0.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .page-hero,
  .section-light,
  .section-dark,
  .section-white,
  .addon-section {
    padding: 4rem 1.5rem;
  }

  .hero {
    padding-top: 6rem;
    min-height: auto;
  }

  .footer-row {
    flex-direction: column;
    text-align: center;
  }

  .metric-grid,
  .features-grid,
  .security-cards,
  .pricing-grid,
  .addon-cards,
  .company-grid,
  .vertical-grid,
  .focus-grid,
  .prepared-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 0 0.85rem;
  }

  .nav-brand.logo-lockup .brand-lockup {
    width: 146px;
  }

  .nav-actions {
    gap: 0.35rem;
  }

  .nav-actions .btn-ghost-nav,
  .nav-actions .btn-cta-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    white-space: nowrap;
    font-size: 0.76rem;
    padding: 0.48rem 0.72rem;
  }

  .nav-actions .btn-ghost-nav {
    border: 1px solid rgba(14, 165, 233, 0.28);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.04);
  }

  .btn-primary,
  .btn-secondary,
  .btn-hero-primary,
  .btn-cta-outline,
  .btn-top,
  .btn-starter,
  .btn-free,
  .btn-popular {
    width: 100%;
  }

  .hero-actions,
  .cta-buttons,
  .action-row,
  .inline-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.nav-brand.logo-lockup {
  gap: 0;
  min-width: 0;
}

.nav-brand.logo-lockup .brand-lockup {
  display: block;
  width: 220px;
  height: auto;
}

.footer-row .nav-brand.logo-lockup .brand-lockup {
  width: 210px;
}

.modal-open {
  overflow: hidden;
}

.signup-shell {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.signup-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: start;
}

.signup-card,
.signup-summary,
.terms-dialog {
  background: var(--white);
  border: 1px solid rgba(14, 165, 233, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15, 22, 35, 0.08);
}

.signup-card {
  padding: 2rem;
}

.signup-summary {
  padding: 1.75rem;
  position: sticky;
  top: 92px;
}

.signup-summary h3,
.signup-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.signup-summary p,
.signup-card p,
.security-list li,
.form-helper,
.terms-help,
.trust-note {
  color: var(--text-soft);
  line-height: 1.7;
}

.field-label-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.signup-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.selected-plan-card {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0.02));
}

.selected-plan-card[hidden] {
  display: none;
}

.selected-plan-card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.selected-plan-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  width: fit-content;
  padding: 0.28rem 0.72rem;
  border-radius: var(--radius-pill);
  background: rgba(14, 165, 233, 0.14);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-plan-card-copy strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.selected-plan-card-copy span:last-child {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.selected-plan-card-billing {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  text-align: right;
}

.plan-option {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--border-l);
  background: #f8fbff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.plan-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-option:hover,
.plan-option.is-active {
  border-color: rgba(14, 165, 233, 0.38);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.12);
  transform: translateY(-1px);
}

.plan-option-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.plan-option-top strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(14, 165, 233, 0.12);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-option-headline {
  color: var(--text-dark);
  font-size: 0.94rem;
  font-weight: 700;
}

.plan-option-meta {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.form-field label,
.field-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.input-with-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.form-field input,
.form-field textarea {
  min-height: 50px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 22, 35, 0.12);
  background: var(--white);
  color: var(--text-dark);
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 112px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(14, 165, 233, 0.42);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: rgba(220, 38, 38, 0.42);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.field-error {
  color: #b91c1c;
  font-size: 0.78rem;
  font-weight: 600;
}

.field-error[hidden] {
  display: none;
}

.field-action-button {
  min-height: 50px;
  border: 1px solid rgba(14, 165, 233, 0.24);
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.08);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.field-action-button:hover:not(:disabled) {
  background: rgba(14, 165, 233, 0.14);
  border-color: rgba(14, 165, 233, 0.36);
}

.field-action-button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-helper,
.terms-help {
  font-size: 0.82rem;
}

.zip-lookup-status.is-info {
  color: #075985;
}

.zip-lookup-status.is-success {
  color: #166534;
}

.zip-lookup-status.is-error {
  color: #b91c1c;
}

.form-trap {
  position: absolute;
  inset-inline-start: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-wrap {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(14, 165, 233, 0.22);
  background: #f8fbff;
}

.terms-row {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.terms-check input {
  margin-top: 0.22rem;
}

.btn-link {
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.summary-block,
.security-block {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(15, 22, 35, 0.08);
}

.summary-copy {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1rem;
}

.summary-copy strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.summary-copy span {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.security-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
}

.security-list li {
  position: relative;
  padding-left: 1.15rem;
}

.security-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.form-feedback {
  display: block;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  line-height: 1.6;
  background: rgba(15, 22, 35, 0.04);
  color: var(--text-mid);
}

.form-feedback[hidden] {
  display: none;
}

.form-feedback.is-info {
  background: rgba(14, 165, 233, 0.08);
  color: #075985;
}

.form-feedback.is-success {
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
}

.form-feedback.is-error {
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
}

.terms-modal[hidden] {
  display: none;
}

.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 450;
}

.terms-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 35, 0.66);
}

.terms-dialog {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 2rem));
  max-height: calc(100vh - 3rem);
  margin: 1.5rem auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.terms-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.terms-dialog-head h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-dark);
}

.terms-dialog-body {
  overflow: auto;
  padding: 1rem;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(15, 22, 35, 0.08);
}

.terms-dialog-body pre {
  white-space: pre-wrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--text-mid);
}

@media (max-width: 960px) {
  .nav-brand.logo-lockup .brand-lockup {
    width: 188px;
  }

  .footer-row .nav-brand.logo-lockup .brand-lockup {
    width: 188px;
  }

  .signup-grid,
  .field-grid,
  .signup-plan-grid {
    grid-template-columns: 1fr;
  }

  .field-label-row,
  .selected-plan-card {
    flex-direction: column;
    align-items: stretch;
  }

  .input-with-action {
    grid-template-columns: 1fr;
  }

  .signup-summary {
    position: static;
    top: auto;
  }

  .nav-mobile-contact {
    display: inline-flex;
  }
}

.home-refresh-page {
  background: #0b1220;
  color: var(--white);
}

.home-refresh-page nav.nav-scrolled {
  background: rgba(15, 22, 35, 0.99);
  box-shadow: 0 10px 30px rgba(15, 22, 35, 0.24);
}

.home-refresh-page main {
  display: block;
}

.home-hero,
.home-section,
.home-cta-section {
  position: relative;
  overflow: hidden;
}

.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 3rem 6rem;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.98), rgba(11, 18, 32, 1));
}

.home-grid-pattern,
.home-blob {
  position: absolute;
  pointer-events: none;
}

.home-grid-pattern {
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 12%, transparent 78%);
}

.home-blob {
  border-radius: 999px;
  filter: blur(88px);
}

.home-blob-cyan {
  width: 720px;
  height: 720px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.14), transparent 65%);
}

.home-blob-indigo {
  width: 520px;
  height: 520px;
  left: -80px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent 65%);
}

.home-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 5rem;
  align-items: center;
}

.home-hero-copy {
  max-width: 620px;
}

.home-kicker,
.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.92rem;
  border-radius: var(--radius-pill);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.22);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-kicker::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: homeBlink 2s ease-in-out infinite;
}

@keyframes homeBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.home-title {
  margin: 1.85rem 0 1.6rem;
  font-size: clamp(2.9rem, 5.5vw, 4.9rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.home-title-line {
  display: block;
  color: var(--white);
}

.home-title-line.accent {
  color: var(--cyan);
}

.home-title-line.soft {
  color: rgba(255, 255, 255, 0.28);
  font-weight: 300;
  font-style: italic;
}

.home-text,
.home-section-sub,
.story-body p,
.story-stat-card p,
.story-insight-card p,
.infra-card p,
.product-card-top p,
.custom-card p,
.difference-card p {
  line-height: 1.85;
}

.home-text {
  max-width: 560px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.home-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 2.2rem 0 3rem;
}

.home-pillars {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-pillar {
  border-radius: var(--radius-pill);
  padding: 0.34rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 600;
}

.home-quick-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-quick-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background: rgba(17, 29, 46, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  overflow: hidden;
}

.home-quick-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.home-quick-card:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.16);
}

.home-quick-card:hover::before {
  opacity: 1;
}

.home-quick-card.cyan::before { background: var(--cyan); }
.home-quick-card.indigo::before { background: #6366f1; }
.home-quick-card.amber::before { background: #f59e0b; }
.home-quick-card.green::before { background: #22c55e; }

.home-quick-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  flex-shrink: 0;
}

.home-quick-card.cyan .home-quick-icon {
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.22);
}

.home-quick-card.indigo .home-quick-icon {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.22);
}

.home-quick-card.amber .home-quick-icon {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.home-quick-card.green .home-quick-icon {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.home-quick-copy {
  min-width: 0;
}

.home-quick-copy strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.home-quick-copy span {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.55;
}

.home-quick-meta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.home-quick-badge {
  border-radius: var(--radius-pill);
  padding: 0.22rem 0.62rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-quick-badge.live {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.home-quick-badge.dev {
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
}

.home-quick-arrow {
  color: rgba(255, 255, 255, 0.24);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.home-quick-card:hover .home-quick-arrow {
  color: rgba(255, 255, 255, 0.52);
}

.home-section {
  padding: 7rem 3rem;
}

.home-section-dark {
  background: #0b1220;
}

.home-section-panel {
  background: #111d2e;
}

.home-section-light {
  background: var(--light-bg);
}

.home-section-header {
  max-width: 760px;
  margin-bottom: 3.6rem;
}

.home-section-header.align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-eyebrow.center {
  justify-content: center;
}

.home-section-title {
  margin: 1rem 0 1.1rem;
  font-size: clamp(1.95rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
}

.home-section-title span,
.story-title span,
.home-cta-card h2 span {
  color: var(--cyan);
}

.home-section-title.dark {
  color: var(--text-dark);
}

.home-section-sub {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.95rem;
}

.home-section-sub.dark {
  color: var(--text-soft);
}

.story-rows {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.story-row.reverse {
  direction: rtl;
}

.story-row.reverse > * {
  direction: ltr;
}

.story-title {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
}

.story-body p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.58);
}

.story-body p:last-child {
  margin-bottom: 0;
}

.story-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-stat-card,
.story-insight-card,
.infra-card,
.custom-card {
  border-radius: var(--radius);
}

.story-stat-card,
.story-insight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.55rem 1.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.story-stat-card:hover,
.story-insight-card:hover,
.infra-card:hover,
.custom-card:hover,
.difference-card:hover {
  border-color: rgba(14, 165, 233, 0.24);
}

.story-stat-card strong {
  display: block;
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
  color: var(--cyan);
  margin-bottom: 0.3rem;
}

.story-stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.story-stat-card p,
.story-insight-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.47);
}

.story-insight-card h3,
.infra-card h3,
.custom-card h3,
.difference-card h3,
.product-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.story-insight-card h3,
.infra-card h3,
.custom-card h3,
.difference-card h3 {
  color: var(--white);
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.infra-card {
  position: relative;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.infra-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.infra-card:hover {
  background: rgba(14, 165, 233, 0.03);
  transform: translateY(-2px);
}

.infra-card:hover::before {
  transform: scaleX(1);
}

.infra-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.infra-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
}

.provider-block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.65rem 1.9rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.provider-block.accent {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.16);
}

.provider-label {
  min-width: 74px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.provider-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.provider-pill {
  padding: 0.34rem 0.84rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border-l);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(15, 22, 35, 0.08);
}

.product-card-top {
  position: relative;
  overflow: hidden;
  padding: 2.35rem 2.35rem 1.9rem;
  color: var(--white);
}

.product-card-top::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  opacity: 0.12;
}

.product-card.cyan .product-card-top {
  background: linear-gradient(135deg, #071e34, #0a2d4e);
}

.product-card.cyan .product-card-top::after {
  background: var(--cyan);
}

.product-card.indigo .product-card-top {
  background: linear-gradient(135deg, #0e0d2c, #18174a);
}

.product-card.indigo .product-card-top::after {
  background: #6366f1;
}

.product-card.amber .product-card-top {
  background: linear-gradient(135deg, #180f00, #2a1c00);
}

.product-card.amber .product-card-top::after {
  background: #f59e0b;
}

.product-card.green .product-card-top {
  background: linear-gradient(135deg, #011a06, #02300c);
}

.product-card.green .product-card-top::after {
  background: #22c55e;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.78rem;
  margin-bottom: 1.2rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card.cyan .product-badge {
  background: rgba(14, 165, 233, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(14, 165, 233, 0.28);
}

.product-card.indigo .product-badge {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.28);
}

.product-card.amber .product-badge {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.28);
}

.product-card.green .product-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.product-card h3 {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}

.product-card-top p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.56);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2rem 2.35rem;
  background: var(--white);
}

.product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.product-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-mid);
  font-size: 0.84rem;
  line-height: 1.6;
}

.product-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.product-card-cta {
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border-l);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-price {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.product-price strong {
  color: var(--text-dark);
  font-size: 0.96rem;
  font-weight: 800;
}

.home-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.25rem;
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.home-card-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.home-card-button.cyan { background: var(--cyan); }
.home-card-button.indigo { background: #6366f1; }
.home-card-button.amber { background: #f59e0b; color: #451a03; }
.home-card-button.green { background: #16a34a; }

.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.75rem;
  align-items: start;
}

.custom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 2rem 0;
}

.custom-tag {
  padding: 0.34rem 0.82rem;
  border-radius: var(--radius-pill);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.22);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
}

.custom-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.custom-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.18);
}

.custom-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.47);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.difference-card {
  background: #0b1220;
  padding: 2.4rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.difference-card strong {
  display: block;
  margin-bottom: 1.2rem;
  color: rgba(14, 165, 233, 0.18);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.difference-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.44);
}

.home-cta-section {
  padding: 8.5rem 3rem 6.5rem;
  background: #0b1220;
}

.home-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 920px;
  height: 920px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.1), transparent 65%);
  pointer-events: none;
}

.home-cta-card {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 29, 46, 0.98), rgba(11, 18, 32, 0.98));
  border: 1px solid rgba(14, 165, 233, 0.16);
  box-shadow: 0 20px 54px rgba(15, 22, 35, 0.24);
}

.home-cta-card h2 {
  margin: 1.15rem 0 1rem;
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.home-cta-card p {
  max-width: 620px;
  margin: 0 auto 2.2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 1180px) {
  .home-hero-grid,
  .story-row,
  .custom-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-row.reverse {
    direction: ltr;
  }

  .infra-grid,
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .home-hero,
  .home-section,
  .home-cta-section {
    padding: 4.5rem 1.5rem;
  }

  .home-hero {
    min-height: auto;
    padding-top: 6.75rem;
  }

  .product-grid,
  .infra-grid,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .provider-block {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .home-title {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .home-pillars {
    gap: 0.45rem;
  }

  .home-quick-card {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .home-quick-meta {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .product-card-top,
  .product-card-body,
  .home-cta-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .product-card-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .home-card-button {
    width: 100%;
  }

  .difference-card {
    padding: 2rem 1.5rem;
  }
}
