/* Homepage Varda — azul chumbo */
:root {
  --ink: #0b1220;
  --ink-soft: #121a2b;
  --lead: #2f4458;
  --lead-mid: #4a6580;
  --lead-soft: #7a93a8;
  --lead-glow: rgba(74, 101, 128, 0.35);
  --paper: #f2f5f8;
  --line: #d5dee6;
  --text: #0b1220;
  --muted: #475569;
  --wa: #25d366;
  --wa-dark: #1ebe57;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 18, 32, 0.96);
  color: #fff;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}

@media (min-width: 1024px) {
  .header-inner {
    min-height: 6rem;
    padding-block: 0.85rem;
  }
}

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

.brand img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .brand img {
    width: 3.75rem;
    height: 3.75rem;
  }
}

.brand span {
  font-size: 1.5rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

@media (min-width: 1024px) {
  .brand span {
    font-size: 1.75rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.nav-desktop a:hover {
  color: #c5d4e0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}

.btn-ghost {
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background: var(--lead);
  color: #fff;
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--lead-mid);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--lead-soft);
  color: #e8eef4;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.btn-dark:hover {
  background: #182235;
}

.btn-light {
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.btn-light:hover {
  background: #e8eef4;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 600;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
}

.btn-menu {
  display: inline-flex;
  padding: 0.55rem;
  color: #fff;
  border-radius: 0.5rem;
}

.btn-menu[aria-expanded="true"] .icon-menu {
  display: none;
}

.btn-menu[aria-expanded="false"] .icon-close {
  display: none;
}

.nav-mobile {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile-inner {
  display: flex;
  max-width: 80rem;
  margin-inline: auto;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.nav-mobile .btn-primary {
  width: fit-content;
  margin-top: 0.25rem;
}

.nav-mobile .link-enter {
  margin-top: 0.25rem;
  width: fit-content;
  font-weight: 600;
  color: var(--lead-soft);
}

@media (min-width: 640px) {
  .header-actions .btn-ghost,
  .header-actions .btn-primary {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .btn-menu,
  .nav-mobile {
    display: none !important;
  }
}

@media (max-width: 639px) {
  .header-actions .btn-ghost,
  .header-actions .btn-primary {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 9.5rem 0 5rem;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: -15;
  pointer-events: none;
  overflow: hidden;
}

.hero-shapes span {
  position: absolute;
  border: 1px solid rgba(122, 147, 168, 0.22);
  border-radius: 1.25rem;
}

.hero-shapes .s1 {
  width: 18rem;
  height: 18rem;
  top: 12%;
  right: 8%;
  transform: rotate(18deg);
}

.hero-shapes .s2 {
  width: 10rem;
  height: 10rem;
  bottom: 18%;
  left: 6%;
  border-radius: 9999px;
  border-color: rgba(74, 101, 128, 0.35);
}

.hero-shapes .s3 {
  width: 4rem;
  height: 4rem;
  top: 28%;
  left: 42%;
  border-radius: 0.75rem;
  background: rgba(74, 101, 128, 0.12);
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: -20;
  background:
    radial-gradient(circle at 82% 22%, rgba(74, 101, 128, 0.42), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(47, 68, 88, 0.45), transparent 32%);
}

.hero-fade {
  position: absolute;
  inset: 0;
  z-index: -10;
  background: linear-gradient(to bottom, transparent, transparent, #0f1726);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(122, 147, 168, 0.35);
  background: rgba(74, 101, 128, 0.18);
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c5d4e0;
}

.hero h1 {
  margin: 0;
  max-width: 48rem;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.hero-lead {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: #cbd5e1;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-note {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -1.25rem;
  border-radius: 2rem;
  background: var(--lead-glow);
  filter: blur(48px);
}

.hero-visual img {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
}

@media (min-width: 640px) {
  .hero {
    padding: 11rem 0 7rem;
  }

  .hero-ctas {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 0.95fr;
  }
}

/* Sections */
.section {
  scroll-margin-top: 7rem;
  padding: 4.5rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 6rem 0;
  }
}

.section-heading {
  max-width: 48rem;
}

.section-heading .label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lead);
}

.section-heading h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.section-heading p {
  margin: 1.25rem 0 0;
  font-size: 1.125rem;
  line-height: 2rem;
  color: var(--muted);
}

.section-heading.dark .label {
  color: var(--lead-soft);
}

.section-heading.dark h2 {
  color: #fff;
}

.section-heading.dark p {
  color: #cbd5e1;
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1280px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .card-grid.cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.card {
  border-radius: 0.5rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.icon-badge {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, rgba(74, 101, 128, 0.16), rgba(47, 68, 88, 0.08));
  border: 1px solid rgba(47, 68, 88, 0.12);
}

.icon-badge .icon {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--lead);
}

.card h3 {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
}

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

.card-hover {
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.card-hover:hover {
  transform: translateY(-0.25rem);
  border-color: var(--lead-mid);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.card-hover:hover .icon-badge {
  background: linear-gradient(145deg, rgba(74, 101, 128, 0.28), rgba(47, 68, 88, 0.14));
}

.section-dark {
  background: var(--ink-soft);
  color: #fff;
}

.solutions-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.solutions-frame {
  position: relative;
}

.solutions-frame::before {
  content: "";
  position: absolute;
  inset: -0.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(122, 147, 168, 0.25);
  transform: rotate(-2deg);
}

.solutions-grid img {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  padding: 1rem;
}

.solutions-copy .label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lead-soft);
}

.solutions-copy h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
}

.solutions-copy > p {
  margin: 1.25rem 0 0;
  line-height: 1.75rem;
  color: #cbd5e1;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.benefit {
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.benefit .icon-badge {
  background: rgba(122, 147, 168, 0.15);
  border-color: rgba(122, 147, 168, 0.25);
}

.benefit .icon-badge .icon {
  color: var(--lead-soft);
}

.benefit h3 {
  margin: 0.75rem 0 0;
  font-weight: 600;
}

.benefit p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #cbd5e1;
}

@media (min-width: 640px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.modules-note {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
}

.section-google {
  background: #e8eef4;
}

.google-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.google-intro .label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lead);
}

.google-intro h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.google-intro > p {
  margin: 1.25rem 0 0;
  font-size: 1.125rem;
  line-height: 2rem;
  color: var(--muted);
}

.google-note {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(47, 68, 88, 0.15);
  background: #fff;
  padding: 1.25rem;
}

.google-note .icon-badge {
  flex-shrink: 0;
}

.google-note p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: var(--muted);
}

.google-features {
  display: grid;
  gap: 1rem;
}

.google-card {
  border-radius: 0.5rem;
  border: 1px solid rgba(47, 68, 88, 0.12);
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.google-card h3 {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
}

.google-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: var(--muted);
}

.google-card .benefit-line {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--lead);
}

@media (min-width: 640px) {
  .google-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .google-grid {
    grid-template-columns: 0.88fr 1.12fr;
  }
}

.section-flow {
  background: #fff;
}

.flow-list {
  display: grid;
  gap: 1rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}

@media (min-width: 1280px) {
  .flow-list::before {
    content: "";
    position: absolute;
    top: 2.15rem;
    left: 4%;
    right: 4%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lead-soft), transparent);
    opacity: 0.45;
    z-index: 0;
  }
}

.flow-item {
  position: relative;
  z-index: 1;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 1.25rem;
}

.flow-num {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--ink);
  font-size: 0.875rem;
  font-weight: 700;
  color: #c5d4e0;
}

.flow-item h3 {
  margin: 1.25rem 0 0;
  font-weight: 600;
}

.flow-item p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .flow-list {
    grid-template-columns: repeat(6, 1fr);
  }
}

.section-security {
  background: var(--ink);
  color: #fff;
}

.security-card {
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
}

.security-card .icon-badge {
  background: rgba(122, 147, 168, 0.15);
  border-color: rgba(122, 147, 168, 0.25);
}

.security-card .icon-badge .icon {
  color: var(--lead-soft);
}

.security-card h3 {
  margin: 1rem 0 0;
  font-weight: 600;
}

.security-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #cbd5e1;
}

.section-contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lead) 0%, var(--ink) 100%);
  color: #fff;
}

.contact-mascot {
  position: absolute;
  right: -2rem;
  bottom: -1.5rem;
  width: min(280px, 42vw);
  opacity: 0.92;
  pointer-events: none;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}

@media (max-width: 767px) {
  .contact-mascot {
    opacity: 0.18;
    width: 200px;
  }
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.contact-copy .label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c5d4e0;
}

.contact-copy h2 {
  margin: 1rem 0 0;
  max-width: 42rem;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.contact-copy p {
  margin: 1.25rem 0 0;
  max-width: 38rem;
  line-height: 1.75rem;
  color: #d7e0e8;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .contact-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr auto;
    padding-right: 12rem;
  }

  .contact-actions {
    flex-direction: column;
  }
}

.site-footer {
  background: var(--ink);
  padding: 2rem 0;
  font-size: 0.875rem;
  color: #94a3b8;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a:hover {
  color: #c5d4e0;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.icon {
  flex-shrink: 0;
}

/* FAB WhatsApp */
.wa-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 50;
  display: inline-flex;
  width: 3.75rem;
  height: 3.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s, background-color 0.15s, box-shadow 0.15s;
}

.wa-fab:hover {
  background: var(--wa-dark);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}

.wa-fab svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

/* Landing Varda 2026 — composição consultiva modular */
.landing-v2 {
  --v-bg: #f4f7fb;
  --v-surface: #ffffff;
  --v-ink: #0a1020;
  --v-navy: #0b1326;
  --v-navy-soft: #111d35;
  --v-blue: #4f7cff;
  --v-cyan: #5ce1e6;
  --v-gold: #f4bf60;
  --v-green: #4fd1a1;
  --v-border: rgba(32, 56, 91, 0.13);
  --v-shadow: 0 24px 70px rgba(20, 38, 68, 0.12);
  overflow-x: hidden;
  background: var(--v-bg);
  color: var(--v-ink);
}

.landing-v2,
.landing-v2 main,
.landing-v2 .container {
  max-width: 100%;
  min-width: 0;
}

.landing-v2 ::selection {
  background: rgba(79, 124, 255, 0.24);
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  background: #fff;
  color: var(--v-ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.landing-v2 :focus-visible {
  outline: 3px solid var(--v-cyan);
  outline-offset: 3px;
}

.landing-v2 .section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.landing-v2 .label {
  margin: 0 0 1rem;
  color: var(--v-blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-v2 .section-heading {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.landing-v2 .section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.landing-v2 .section-heading h2,
.landing-v2 .builder-heading h2,
.landing-v2 .google-v2-copy h2,
.landing-v2 .contact-v2-inner h2 {
  margin: 0;
  color: var(--v-ink);
  font-size: clamp(2.15rem, 4.5vw, 4.5rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.landing-v2 .section-heading > p:not(.label),
.landing-v2 .builder-heading > p,
.landing-v2 .google-v2-copy > p,
.landing-v2 .contact-v2-inner > p {
  margin: 1.35rem 0 0;
  color: #5c687b;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

/* Header */
.landing-v2 .site-header {
  background: rgba(10, 16, 32, 0.78);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.landing-v2 .site-header.is-scrolled {
  background: rgba(10, 16, 32, 0.94);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.18);
}

.landing-v2 .header-inner {
  min-height: 4.75rem;
  min-width: 0;
}

.landing-v2 .brand {
  gap: 0.7rem;
  min-width: 0;
}

.landing-v2 .brand img {
  width: 2.65rem;
  height: 2.65rem;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.brand-copy strong {
  color: #fff;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 0.26rem;
  color: #91a4bd;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-v2 .nav-desktop {
  gap: 0.25rem;
}

.landing-v2 .header-actions {
  flex-shrink: 0;
}

.landing-v2 .nav-desktop a {
  position: relative;
  padding: 0.65rem 0.7rem;
  color: #aab7c9;
  font-size: 0.79rem;
  font-weight: 650;
}

.landing-v2 .nav-desktop a::after {
  position: absolute;
  right: 0.7rem;
  bottom: 0.36rem;
  left: 0.7rem;
  height: 2px;
  border-radius: 1rem;
  background: var(--v-cyan);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.landing-v2 .nav-desktop a:hover,
.landing-v2 .nav-desktop a.is-active {
  color: #fff;
}

.landing-v2 .nav-desktop a.is-active::after {
  transform: scaleX(1);
}

.landing-v2 .btn {
  border-radius: 0.85rem;
  font-weight: 780;
}

.landing-v2 .btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, #527fff, #3f62e8);
  box-shadow: 0 12px 30px rgba(79, 124, 255, 0.26);
}

.landing-v2 .btn-primary:hover {
  background: linear-gradient(135deg, #648cff, #4a6ef0);
  box-shadow: 0 16px 36px rgba(79, 124, 255, 0.36);
  transform: translateY(-2px);
}

/* Hero */
.landing-v2 .hero-v2 {
  min-height: 49rem;
  overflow: hidden;
  padding: clamp(8.5rem, 12vw, 10.5rem) 0 clamp(5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 72% 35%, rgba(73, 108, 222, 0.2), transparent 26rem),
    radial-gradient(circle at 15% 20%, rgba(92, 225, 230, 0.08), transparent 24rem),
    linear-gradient(145deg, #0a1020 0%, #0b1428 50%, #0e1a32 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(112, 148, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: -22rem;
  right: -10rem;
  width: 60rem;
  height: 60rem;
}

.orbit-two {
  right: 11rem;
  bottom: -35rem;
  width: 50rem;
  height: 50rem;
}

.landing-v2 .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4.5rem;
  align-items: center;
}

.landing-v2 .hero-grid > * {
  min-width: 0;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 43rem;
}

.landing-v2 .eyebrow {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.52rem 0.8rem;
  border: 1px solid rgba(130, 160, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #afc2de;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: normal;
}

.pulse-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--v-green);
  box-shadow: 0 0 0 0 rgba(79, 209, 161, 0.5);
  animation: varda-pulse 2.2s infinite;
}

.landing-v2 .hero-v2 h1 {
  max-width: 50rem;
  margin: 0;
  color: #f8fbff;
  font-size: clamp(2.9rem, 6.5vw, 6rem);
  font-weight: 880;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.text-gradient {
  color: transparent;
  background: linear-gradient(105deg, #8ba9ff 8%, #5ce1e6 92%);
  -webkit-background-clip: text;
  background-clip: text;
}

.landing-v2 .hero-lead {
  max-width: 40rem;
  margin: 1.65rem 0 0;
  color: #aebdd1;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.72;
}

.landing-v2 .hero-ctas {
  margin-top: 2rem;
}

.landing-v2 .hero-v2 .btn-outline {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #e8eef8;
}

.landing-v2 .hero-v2 .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.09);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.65rem 0 0;
  padding: 0;
  color: #8798b1;
  font-size: 0.8rem;
  list-style: none;
}

.hero-trust span {
  margin-right: 0.3rem;
  color: var(--v-green);
}

/* Cockpit */
.hero-cockpit {
  position: relative;
  width: min(100%, 42rem);
  margin-inline: auto;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.cockpit-window {
  overflow: hidden;
  border: 1px solid rgba(160, 183, 227, 0.2);
  border-radius: 1.25rem;
  background: rgba(17, 29, 53, 0.88);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.43), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: rotateY(-2deg) rotateX(1.5deg);
  transition: transform 0.2s ease-out;
  backdrop-filter: blur(18px);
}

.cockpit-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 3rem;
  padding: 0 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #b8c6db;
  font-size: 0.69rem;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 0.3rem;
}

.window-dots i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #526078;
}

.window-dots i:first-child { background: #ff7d72; }
.window-dots i:nth-child(2) { background: var(--v-gold); }
.window-dots i:last-child { background: var(--v-green); }

.live-pill {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  justify-self: end;
  color: #91a5c0;
}

.live-pill i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--v-green);
  box-shadow: 0 0 12px var(--v-green);
}

.cockpit-body {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  min-height: 26rem;
}

.cockpit-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  align-items: center;
  padding-top: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 10, 22, 0.32);
}

.side-logo {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.7rem;
  place-items: center;
  border-radius: 0.5rem;
  background: linear-gradient(145deg, var(--v-blue), #6ad6e7);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}

.cockpit-sidebar i {
  width: 1rem;
  height: 0.3rem;
  border-radius: 2rem;
  background: #42506a;
}

.cockpit-sidebar i.active {
  background: var(--v-blue);
  box-shadow: 0 0 12px rgba(79, 124, 255, 0.7);
}

.cockpit-content {
  min-width: 0;
  padding: 1.1rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.mini-metric {
  position: relative;
  min-width: 0;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.035);
}

.mini-metric span,
.mini-metric strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-metric span {
  color: #7587a1;
  font-size: 0.57rem;
  text-transform: uppercase;
}

.mini-metric strong {
  margin-top: 0.4rem;
  padding-right: 1.2rem;
  color: #e5edf8;
  font-size: 0.68rem;
}

.mini-metric .trend {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  color: var(--v-green);
  font-size: 0.7rem;
  font-style: normal;
}

.cockpit-panels {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.chart-panel,
.activity-panel {
  position: relative;
  min-height: 12.5rem;
  overflow: hidden;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.025);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cfdaea;
  font-size: 0.65rem;
  font-weight: 800;
}

.panel-title small {
  color: #647691;
  font-size: 0.52rem;
  font-weight: 600;
}

.chart-bars {
  position: absolute;
  right: 0.9rem;
  bottom: 1rem;
  left: 0.9rem;
  display: flex;
  gap: 0.4rem;
  align-items: end;
  height: 7.2rem;
}

.chart-bars i {
  flex: 1;
  height: 30%;
  border-radius: 0.25rem 0.25rem 0 0;
  background: linear-gradient(to top, rgba(79, 124, 255, 0.14), rgba(79, 124, 255, 0.42));
}

.chart-bars i:nth-child(2) { height: 42%; }
.chart-bars i:nth-child(3) { height: 37%; }
.chart-bars i:nth-child(4) { height: 61%; }
.chart-bars i:nth-child(5) { height: 54%; }
.chart-bars i:nth-child(6) { height: 72%; }
.chart-bars i:nth-child(7) { height: 68%; }
.chart-bars i:nth-child(8) { height: 89%; }

.chart-line {
  position: absolute;
  right: 1rem;
  bottom: 1.4rem;
  left: 1rem;
  width: calc(100% - 2rem);
  height: 7rem;
  overflow: visible;
}

.chart-line path {
  fill: none;
  stroke: var(--v-cyan);
  stroke-width: 2;
  filter: drop-shadow(0 0 5px rgba(92, 225, 230, 0.55));
}

.chart-line circle {
  fill: #fff;
  stroke: var(--v-cyan);
  stroke-width: 2;
}

.activity-panel ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.activity-panel li {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.activity-icon {
  display: grid;
  flex: 0 0 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 0.45rem;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 900;
}

.activity-icon.blue { background: rgba(79, 124, 255, 0.17); color: #8aa7ff; }
.activity-icon.gold { background: rgba(244, 191, 96, 0.15); color: var(--v-gold); }
.activity-icon.green { background: rgba(79, 209, 161, 0.15); color: var(--v-green); }

.activity-panel li span,
.activity-panel li strong,
.activity-panel li small {
  display: block;
  min-width: 0;
}

.activity-panel li strong {
  overflow: hidden;
  color: #cbd7e7;
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-panel li small {
  margin-top: 0.15rem;
  color: #65758d;
  font-size: 0.49rem;
}

.journey-strip {
  display: flex;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.7rem;
}

.journey-strip span {
  color: #6f7f98;
  font-size: 0.48rem;
  font-weight: 800;
}

.journey-strip span.done { color: #93aaf3; }
.journey-strip span.active { color: var(--v-cyan); }

.journey-strip i {
  flex: 1;
  height: 1px;
  margin: 0 0.32rem;
  background: #324158;
}

.floating-chip {
  position: absolute;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.75rem;
  background: rgba(18, 30, 54, 0.93);
  color: #c8d5e6;
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.28);
  font-size: 0.66rem;
  font-weight: 750;
  backdrop-filter: blur(14px);
}

.floating-chip span {
  color: var(--v-cyan);
  font-size: 0.85rem;
}

.chip-one {
  top: 20%;
  right: -2.2rem;
  animation: varda-float 4.5s ease-in-out infinite;
}

.chip-two {
  bottom: 7%;
  left: -1.7rem;
  animation: varda-float 4s 0.8s ease-in-out infinite;
}

/* Benefits ribbon */
.outcome-ribbon {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid var(--v-border);
  background: #fff;
}

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

.outcome-ribbon-grid div {
  padding: 1.7rem 1rem;
  border-right: 1px solid var(--v-border);
}

.outcome-ribbon-grid div:nth-child(even) {
  border-right: 0;
}

.outcome-ribbon-grid strong,
.outcome-ribbon-grid span {
  display: block;
}

.outcome-ribbon-grid strong {
  font-size: 0.9rem;
}

.outcome-ribbon-grid span {
  margin-top: 0.25rem;
  color: #788498;
  font-size: 0.72rem;
}

/* Results */
.section-results {
  background:
    radial-gradient(circle at 90% 20%, rgba(79, 124, 255, 0.08), transparent 24rem),
    var(--v-bg);
}

.results-layout {
  display: grid;
  gap: 3rem;
}

.sticky-heading {
  align-self: start;
}

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--v-blue);
  font-size: 0.86rem;
  font-weight: 850;
}

.result-cards {
  display: grid;
  gap: 1rem;
}

.result-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border: 1px solid var(--v-border);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 35px rgba(31, 50, 80, 0.04);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.result-card:hover {
  border-color: rgba(79, 124, 255, 0.3);
  box-shadow: var(--v-shadow);
  transform: translateY(-4px);
}

.result-index {
  color: var(--v-blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.result-card h3 {
  margin: -0.15rem 0 0.6rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.035em;
}

.result-card p {
  margin: 0;
  color: #667286;
  line-height: 1.7;
}

/* Journey */
.section-flow-v2 {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 120%, rgba(79, 124, 255, 0.25), transparent 35rem),
    var(--v-navy);
  color: #fff;
}

.section-flow-v2::before {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(circle, #96a9c7 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
}

.landing-v2 .section-heading.dark h2,
.landing-v2 .section-heading.dark > p:not(.label) {
  color: #f4f8ff;
}

.landing-v2 .section-heading.dark > p:not(.label) {
  color: #9bacbf;
}

.journey-map {
  position: relative;
  display: grid;
  gap: 1rem;
  margin: 4rem 0 0;
  padding: 0;
  list-style: none;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}

.journey-icon {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid rgba(92, 225, 230, 0.3);
  border-radius: 0.8rem;
  background: rgba(92, 225, 230, 0.09);
  color: var(--v-cyan);
  font-size: 0.62rem;
  font-weight: 900;
}

.journey-step small {
  color: #71839c;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-step h3 {
  margin: 0.2rem 0 0.5rem;
  color: #f4f8ff;
  font-size: 1.25rem;
}

.journey-step p {
  margin: 0;
  color: #8fa0b6;
  font-size: 0.84rem;
  line-height: 1.6;
}

/* Plan builder */
.section-builder {
  background: #fff;
}

.builder-heading {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 3rem;
}

.builder-heading > p {
  max-width: 32rem;
}

.plan-builder {
  display: grid;
  gap: 1.5rem;
}

.module-options {
  display: grid;
  gap: 0.75rem;
}

.module-option {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.9rem;
  align-items: center;
  min-height: 5rem;
  padding: 1rem 1.1rem;
  overflow: hidden;
  border: 1px solid var(--v-border);
  border-radius: 1rem;
  background: #fbfcff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.module-option:hover {
  border-color: rgba(79, 124, 255, 0.4);
  transform: translateY(-2px);
}

.module-option:has(input:checked) {
  border-color: rgba(79, 124, 255, 0.45);
  background: linear-gradient(105deg, rgba(79, 124, 255, 0.08), rgba(92, 225, 230, 0.045));
  box-shadow: 0 12px 30px rgba(79, 124, 255, 0.07);
}

.module-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.module-option:has(input:focus-visible) {
  outline: 3px solid var(--v-cyan);
  outline-offset: 3px;
}

.module-check {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border: 1px solid #bac5d4;
  border-radius: 0.38rem;
  color: transparent;
  font-size: 0.65rem;
  font-weight: 900;
  transition: all 0.2s ease;
}

.module-option:has(input:checked) .module-check {
  border-color: var(--v-blue);
  background: var(--v-blue);
  color: #fff;
}

.module-symbol {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border-radius: 0.75rem;
  background: #edf2fa;
  color: #50627c;
  font-size: 0.9rem;
  font-weight: 900;
  transition: color 0.2s ease, background 0.2s ease;
}

.module-option:has(input:checked) .module-symbol {
  background: rgba(79, 124, 255, 0.13);
  color: var(--v-blue);
}

.module-option strong,
.module-option small {
  display: block;
}

.module-option strong {
  font-size: 0.94rem;
  letter-spacing: -0.015em;
}

.module-option small {
  margin-top: 0.25rem;
  color: #7a8799;
  font-size: 0.73rem;
}

.module-option em {
  grid-column: 2 / -1;
  justify-self: start;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  background: rgba(79, 124, 255, 0.11);
  color: var(--v-blue);
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-option.is-core {
  cursor: default;
}

.plan-summary {
  position: relative;
  align-self: start;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 124, 255, 0.28), transparent 18rem),
    var(--v-navy);
  box-shadow: 0 30px 70px rgba(11, 19, 38, 0.2);
  color: #fff;
}

.summary-orbit {
  position: absolute;
  top: -8rem;
  right: -7rem;
  width: 17rem;
  height: 17rem;
  border: 1px solid rgba(92, 225, 230, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 2rem rgba(92, 225, 230, 0.025), 0 0 0 5rem rgba(92, 225, 230, 0.02);
}

.summary-kicker {
  position: relative;
  margin: 0 0 0.6rem;
  color: #879ab5;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-summary h3 {
  position: relative;
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.summary-count {
  position: relative;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin: 1.5rem 0;
}

.summary-count strong {
  color: var(--v-cyan);
  font-size: 3rem;
  line-height: 1;
}

.summary-count span {
  max-width: 7rem;
  color: #93a4ba;
  font-size: 0.77rem;
  line-height: 1.35;
}

.plan-summary ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-height: 4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-summary li {
  height: fit-content;
  padding: 0.4rem 0.58rem;
  border: 1px solid rgba(151, 175, 212, 0.15);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.055);
  color: #becce0;
  font-size: 0.65rem;
}

.summary-divider {
  height: 1px;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.1);
}

.summary-note {
  position: relative;
  margin: 0 0 1.2rem;
  color: #8e9db2;
  font-size: 0.75rem;
  line-height: 1.6;
}

.btn-block {
  position: relative;
  width: 100%;
}

.clear-selection {
  display: block;
  width: 100%;
  margin-top: 0.8rem;
  padding: 0.6rem;
  color: #73849c;
  font-size: 0.7rem;
  font-weight: 750;
}

.clear-selection:hover {
  color: #c1ccdb;
}

/* Feature bento */
.section-features {
  background: var(--v-bg);
}

.bento-grid {
  display: grid;
  gap: 1rem;
}

.bento-card {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--v-border);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 12px 40px rgba(29, 48, 76, 0.055);
}

.bento-card h3 {
  max-width: 28rem;
  margin: 1rem 0 0.75rem;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.bento-card p {
  max-width: 32rem;
  margin: 0;
  color: #667286;
  line-height: 1.7;
}

.feature-tag {
  display: inline-flex;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(79, 124, 255, 0.1);
  color: var(--v-blue);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-kanban {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.65rem;
  align-items: center;
  margin-top: 2rem;
}

.mini-kanban > div {
  min-width: 0;
  padding: 0.75rem;
  border-radius: 0.7rem;
  background: #f2f5fb;
}

.mini-kanban small {
  color: #67758a;
  font-size: 0.57rem;
  font-weight: 800;
}

.mini-kanban i {
  display: block;
  height: 0.45rem;
  margin-top: 0.5rem;
  border-radius: 1rem;
  background: #dbe4f0;
}

.mini-kanban i:nth-of-type(2) { width: 75%; }
.mini-kanban i:nth-of-type(3) { width: 52%; }
.mini-kanban > span { color: var(--v-blue); }

.finance-visual {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin-top: 2rem;
  font-size: 0.65rem;
}

.finance-visual span {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: #f0f3f8;
  color: #647188;
  font-weight: 800;
}

.finance-visual .success {
  background: rgba(79, 209, 161, 0.14);
  color: #218564;
}

.finance-visual i {
  color: #a1adbd;
  font-style: normal;
}

.chat-visual {
  display: grid;
  gap: 0.6rem;
  margin-top: 2rem;
}

.chat-visual i {
  display: block;
  width: 75%;
  height: 2rem;
  border-radius: 0.75rem 0.75rem 0.75rem 0.2rem;
  background: #edf2f9;
}

.chat-visual i.right {
  justify-self: end;
  border-radius: 0.75rem 0.75rem 0.2rem;
  background: rgba(79, 124, 255, 0.14);
}

.chat-visual i.short {
  width: 48%;
}

.progress-visual {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.progress-visual i {
  flex: 1;
  height: 0.55rem;
  border-radius: 1rem;
  background: #e0e6ef;
}

.progress-visual i.done { background: var(--v-blue); }
.progress-visual i.active { background: var(--v-cyan); box-shadow: 0 0 12px rgba(92, 225, 230, 0.45); }

.portal-visual {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  min-height: 10rem;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid #e4eaf2;
  border-radius: 0.8rem;
  background: #f8faff;
}

.portal-nav {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1rem 0.7rem;
  background: var(--v-navy);
}

.portal-nav i {
  height: 0.35rem;
  border-radius: 1rem;
  background: #42516a;
}

.portal-nav i:first-child { background: var(--v-blue); }

.portal-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  padding: 1rem;
}

.portal-body span {
  border-radius: 0.6rem;
  background: #e9eff7;
}

/* Google */
.section-google-v2 {
  overflow: hidden;
  background: #fff;
}

.google-v2-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.google-v2-visual {
  position: relative;
  min-height: 28rem;
}

.google-core,
.google-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--v-border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(31, 54, 88, 0.12);
}

.google-core {
  top: 50%;
  left: 50%;
  width: 8.5rem;
  height: 8.5rem;
  border-color: rgba(79, 124, 255, 0.3);
  border-radius: 2rem;
  transform: translate(-50%, -50%) rotate(3deg);
}

.google-core::before {
  position: absolute;
  inset: -1.2rem;
  z-index: -1;
  border: 1px dashed rgba(79, 124, 255, 0.22);
  border-radius: 2.6rem;
  content: "";
}

.google-core span {
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  place-items: center;
  border-radius: 1.15rem;
  background: linear-gradient(145deg, var(--v-blue), var(--v-cyan));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
}

.google-core small {
  margin-top: -1.5rem;
  color: #647189;
  font-weight: 850;
}

.google-node {
  min-width: 7rem;
  min-height: 3.2rem;
  padding: 0.6rem 0.8rem;
  border-radius: 0.9rem;
  color: #536177;
  font-size: 0.73rem;
  font-weight: 850;
}

.node-contacts { top: 8%; left: 8%; }
.node-calendar { top: 12%; right: 3%; }
.node-meet { right: 8%; bottom: 8%; }
.node-drive { bottom: 12%; left: 5%; }

.google-v2-visual .connector {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 30%;
  height: 1px;
  border-top: 1px dashed rgba(79, 124, 255, 0.35);
  transform-origin: 0 0;
}

.google-v2-visual .c1 { transform: rotate(-145deg); }
.google-v2-visual .c2 { transform: rotate(-40deg); }
.google-v2-visual .c3 { transform: rotate(35deg); }
.google-v2-visual .c4 { transform: rotate(145deg); }

.google-v2-copy h2 {
  max-width: 39rem;
}

.check-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.9rem;
}

.check-list > li > span {
  display: grid;
  flex: 0 0 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(79, 209, 161, 0.14);
  color: #248b69;
  font-size: 0.7rem;
  font-weight: 900;
}

.check-list strong,
.check-list small {
  display: block;
}

.check-list strong {
  font-size: 0.95rem;
}

.check-list small {
  margin-top: 0.25rem;
  color: #738096;
  font-size: 0.78rem;
  line-height: 1.55;
}

.conditional-note {
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--v-gold);
  background: rgba(244, 191, 96, 0.09);
  color: #6f654f !important;
  font-size: 0.72rem !important;
}

/* Security */
.section-security-v2 {
  overflow: hidden;
  background:
    linear-gradient(rgba(11, 19, 38, 0.94), rgba(11, 19, 38, 0.97)),
    radial-gradient(circle at 20% 20%, #243967, #0b1326);
}

.security-layout {
  display: grid;
  gap: 3rem;
}

.security-grid {
  display: grid;
  gap: 0.75rem;
}

.security-grid article {
  position: relative;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.035);
}

.security-grid article > span {
  color: var(--v-cyan);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.security-grid h3 {
  margin: 0.8rem 0 0.5rem;
  color: #ecf3fc;
  font-size: 1.12rem;
}

.security-grid p {
  margin: 0;
  color: #8c9db4;
  font-size: 0.82rem;
  line-height: 1.65;
}

/* FAQ */
.section-faq {
  background: var(--v-bg);
}

.faq-layout {
  display: grid;
  gap: 3rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--v-border);
  border-radius: 1rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
  border-color: rgba(79, 124, 255, 0.3);
  box-shadow: 0 12px 35px rgba(36, 56, 87, 0.07);
}

.faq-list summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  flex: 0 0 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: #edf2fa;
  color: var(--v-blue);
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 1.25rem 1.35rem;
  color: #667387;
  line-height: 1.7;
}

/* Final CTA */
.section-contact-v2 {
  overflow: hidden;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  background:
    radial-gradient(circle at 15% 100%, rgba(92, 225, 230, 0.18), transparent 25rem),
    radial-gradient(circle at 90% 0%, rgba(79, 124, 255, 0.34), transparent 30rem),
    var(--v-navy);
  color: #fff;
}

.contact-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.section-contact-v2 .contact-mascot {
  right: -3rem;
  bottom: -5.2rem;
  width: clamp(13rem, 25vw, 23rem);
  opacity: 0.17;
  filter: grayscale(0.2);
}

.contact-v2-inner {
  position: relative;
  z-index: 2;
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
}

.contact-v2-inner h2 {
  color: #fff;
}

.contact-v2-inner > p {
  max-width: 44rem;
  margin-inline: auto !important;
  color: #9cacc1 !important;
}

.contact-v2-inner .contact-actions {
  justify-content: center;
  margin-top: 2rem;
}

.contact-v2-inner > small {
  display: block;
  margin-top: 1.2rem;
  color: #6f819a;
  font-size: 0.7rem;
}

.landing-v2 .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #080e1b;
}

.landing-v2 .footer-inner > p {
  margin: 0;
  color: #5f7089;
  font-size: 0.7rem;
}

/* Scroll entrance */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.journey-step:nth-child(2),
.security-grid article:nth-child(2) { transition-delay: 0.08s; }
.journey-step:nth-child(3),
.security-grid article:nth-child(3) { transition-delay: 0.16s; }
.journey-step:nth-child(4),
.security-grid article:nth-child(4) { transition-delay: 0.24s; }
.journey-step:nth-child(5) { transition-delay: 0.32s; }

@keyframes varda-pulse {
  0% { box-shadow: 0 0 0 0 rgba(79, 209, 161, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(79, 209, 161, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 209, 161, 0); }
}

@keyframes varda-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (min-width: 640px) {
  .outcome-ribbon-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .outcome-ribbon-grid div {
    padding: 1.8rem 1.4rem;
  }

  .outcome-ribbon-grid div:nth-child(even) {
    border-right: 1px solid var(--v-border);
  }

  .outcome-ribbon-grid div:last-child {
    border-right: 0;
  }

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

  .module-option em {
    grid-column: auto;
    justify-self: end;
  }

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

  .bento-wide {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .landing-v2 .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(28rem, 1.05fr);
  }

  .landing-v2 .hero-v2 h1 {
    font-size: clamp(3.4rem, 5.1vw, 5.8rem);
  }

  .results-layout,
  .faq-layout {
    grid-template-columns: minmax(19rem, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(4rem, 8vw, 8rem);
  }

  .sticky-heading {
    position: sticky;
    top: 8rem;
  }

  .journey-map {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .journey-map::before {
    position: absolute;
    top: 2.55rem;
    right: 9%;
    left: 9%;
    z-index: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(92, 225, 230, 0.45), transparent);
    content: "";
  }

  .journey-step {
    z-index: 1;
    display: block;
    min-height: 19rem;
    padding: 1rem;
    border-color: transparent;
    background: transparent;
    text-align: center;
  }

  .journey-icon {
    margin: 0 auto 1.4rem;
    border-radius: 50%;
    background: var(--v-navy);
    box-shadow: 0 0 0 0.5rem var(--v-navy);
  }

  .journey-step:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
  }

  .builder-heading {
    grid-template-columns: 1fr 0.65fr;
  }

  .plan-builder {
    grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.55fr);
    align-items: start;
  }

  .plan-summary {
    position: sticky;
    top: 7rem;
  }

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

  .bento-wide {
    grid-column: span 2;
  }

  .google-v2-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .security-layout {
    grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
    align-items: center;
    gap: clamp(4rem, 8vw, 8rem);
  }
}

@media (max-width: 899px) {
  .hero-cockpit {
    max-width: 39rem;
  }

  .chip-one {
    right: -0.5rem;
  }

  .chip-two {
    left: -0.5rem;
  }
}

@media (max-width: 639px) {
  .landing-v2 .section {
    padding: 4.6rem 0;
  }

  .landing-v2 .hero-v2 {
    padding-top: 7.4rem;
  }

  .landing-v2 .hero-v2 h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 12.5vw, 3.25rem);
    overflow-wrap: normal;
  }

  .landing-v2 .eyebrow {
    max-width: 100%;
    font-size: 0.65rem;
  }

  .hero-trust {
    display: grid;
  }

  .cockpit-topbar {
    grid-template-columns: 1fr 1fr;
  }

  .cockpit-topbar > span:nth-child(2) {
    display: none;
  }

  .cockpit-body {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .cockpit-sidebar {
    gap: 1.1rem;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .mini-metric:nth-child(n+2) {
    display: none;
  }

  .cockpit-panels {
    grid-template-columns: 1fr;
  }

  .activity-panel {
    display: none;
  }

  .cockpit-body {
    min-height: 21rem;
  }

  .journey-strip span {
    font-size: 0.4rem;
  }

  .floating-chip {
    display: none;
  }

  .module-option {
    grid-template-columns: auto auto minmax(0, 1fr);
  }

  .module-option em {
    grid-column: 3;
  }

  .mini-kanban {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .mini-kanban > span {
    display: none;
  }

  .portal-body {
    grid-template-columns: 1fr;
  }

  .portal-body span:nth-child(n+2) {
    display: none;
  }

  .google-v2-visual {
    min-height: 22rem;
    transform: scale(0.86);
  }

  .contact-v2-inner .contact-actions {
    display: grid;
  }

  .landing-v2 .footer-inner {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .landing-v2 *,
  .landing-v2 *::before,
  .landing-v2 *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .cockpit-window {
    transform: none !important;
  }
}
