@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #eef4fb;
  --ink: #172144;
  --muted: #5f6c7b;
  --line: #d9e1ec;
  --brand: #2a2e99;
  --brand-strong: #172144;
  --cyan: #4ec6f2;
  --amber: #c47a10;
  --coral: #d94f45;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(10, 110, 209, 0.16);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: grid;
  width: min(1180px, calc(100vw - 32px));
  min-height: 68px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(217, 225, 236, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(18px);
  padding: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.footer h2 {
  display: block;
  font-size: 0.92rem;
}

.brand small,
.footer-copy,
.footer-bottom {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  padding: 4px;
}

.site-nav a,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 14px;
  font-size: 0.94rem;
  font-weight: 650;
  white-space: nowrap;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
}

.site-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.button-primary {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
}

.button-primary:hover {
  background: var(--brand-strong);
}

.button-ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.button-ghost:hover {
  border-color: #b9c6d6;
}

.page {
  overflow: hidden;
  background: var(--bg);
}

.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: flex-end;
  padding: 148px 0 72px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(7, 16, 31, 0.95) 0%, rgba(7, 16, 31, 0.78) 42%, rgba(7, 16, 31, 0.28) 72%, rgba(7, 16, 31, 0.9) 100%),
    url("/assets/screenshots/dashboard-general.png");
  background-position: center;
  background-size: cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 32%;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0), var(--bg));
  content: "";
}

.container {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero-inner {
  max-width: 790px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.cta-band h2,
.page-hero h1 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 820px;
  font-size: 4.8rem;
}

.hero-lede {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.24rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  max-width: 980px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 42px;
}

.hero-proof div,
.metric-card,
.module-card,
.persona-card,
.capability-list,
.solution-card,
.product-frame,
.workflow-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
}

.hero-proof div {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 16px;
  backdrop-filter: blur(16px);
}

.hero-proof span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.hero-proof strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.cta-band h2,
.page-hero h1 {
  color: var(--ink);
  font-size: 3.2rem;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.module-card p,
.persona-card p,
.capability-list p,
.solution-card p,
.product-frame-copy p,
.workflow-step p,
.page-hero p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.metrics-grid,
.modules-grid,
.personas-grid,
.solutions-grid,
.editions-grid {
  display: grid;
  gap: 14px;
}

.metrics-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.metric-card {
  min-height: 138px;
  padding: 18px;
}

.metric-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.3;
}

.metric-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 120px;
}

.product-stack {
  display: grid;
  gap: 16px;
}

.product-frame {
  overflow: hidden;
}

.product-frame-media {
  background: #08111f;
}

.product-frame-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.product-frame-copy {
  padding: 22px;
}

.product-frame-copy h3,
.module-card h3,
.persona-card h3,
.capability-list h3,
.solution-card h3,
.workflow-step h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.25;
}

.modules-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-card,
.persona-card,
.solution-card {
  padding: 22px;
}

.module-card .eyebrow {
  color: var(--amber);
}

.benefit-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 16px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
  overflow: hidden;
}

.benefit-media {
  min-height: 420px;
  background: #08111f;
}

.benefit-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-list {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.benefit-list li,
.capability-list li,
.workflow-list li {
  position: relative;
  list-style: none;
  padding-left: 26px;
  color: var(--ink);
  line-height: 1.55;
}

.benefit-list li::before,
.capability-list li::before,
.workflow-list li::before {
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.personas-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.persona-card {
  background: #fbfcfe;
}

.editions-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capability-list {
  padding: 28px;
}

.capability-list-highlight {
  border-color: rgba(10, 110, 209, 0.36);
  background: linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%);
}

.capability-list ul,
.workflow-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.workflow-step {
  padding: 22px;
}

.workflow-step span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: var(--radius);
  background: #e9f4ff;
  color: var(--brand);
  font-weight: 800;
}

.solutions-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-card {
  display: flex;
  min-height: 246px;
  flex-direction: column;
}

.solution-card a {
  margin-top: auto;
  color: var(--brand);
  font-weight: 800;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius);
  background: #07101f;
  color: #fff;
  padding: 34px;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.page-hero {
  padding: 160px 0 64px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    url("/assets/screenshots/mapa-general.png");
  background-position: center;
  background-size: cover;
}

.page-hero p {
  max-width: 760px;
  margin-top: 20px;
  font-size: 1.16rem;
}

.solution-detail {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
}

.solution-detail aside,
.solution-detail article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 48px 0 24px;
}

.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr 0.75fr;
  gap: 34px;
}

.footer-copy {
  max-width: 390px;
  margin: 18px 0 0;
}

.footer h2 {
  margin: 0 0 14px;
}

.footer a:not(.brand) {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.4;
}

.footer a:hover {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 20px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .metrics-grid,
  .personas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modules-grid,
  .solutions-grid,
  .workflow-strip,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    top: 10px;
  }

  .site-actions .button-ghost {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-proof,
  .metrics-grid,
  .split,
  .modules-grid,
  .benefit-panel,
  .personas-grid,
  .editions-grid,
  .solutions-grid,
  .workflow-strip,
  .solution-detail,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }

  .section-heading h2,
  .split-copy h2,
  .cta-band h2,
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .benefit-media {
    min-height: auto;
  }

  .cta-band {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .site-header {
    width: min(100vw - 20px, 1180px);
  }

  .site-actions .button-primary {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }
}

.campaign {
  min-height: 100vh;
  overflow: hidden;
  background: #050914;
  color: #f8fbff;
}

.campaign-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 70;
  display: grid;
  width: min(1160px, calc(100vw - 32px));
  min-height: 58px;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 9, 20, 0.68);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(22px);
  padding: 8px 10px;
}

.campaign-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.campaign-brand span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a6ed1, #18c7bd);
  color: #fff;
}

.campaign-nav div {
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.campaign-nav a {
  color: rgba(248, 251, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 720;
}

.campaign-nav a:hover {
  color: #fff;
}

.campaign-nav-cta {
  justify-self: end;
  border-radius: 999px;
  background: #f8fbff;
  color: #061120 !important;
  padding: 12px 18px;
}

.campaign-container {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
}

.campaign-hero {
  position: relative;
  min-height: 940px;
  display: flex;
  align-items: center;
  isolation: isolate;
  padding: 132px 0 80px;
}

.campaign-hero::before {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 28% 24%, rgba(10, 110, 209, 0.42), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(24, 199, 189, 0.24), transparent 24%),
    linear-gradient(180deg, #050914 0%, #081326 100%);
  content: "";
}

.campaign-grid {
  position: absolute;
  inset: 0 0 42%;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 94%);
}

.campaign-orbit {
  position: absolute;
  top: 130px;
  right: max(28px, calc((100vw - 1160px) / 2));
  z-index: -2;
  width: 420px;
  height: 420px;
  opacity: 0.72;
}

.campaign-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(24, 199, 189, 0.22);
  border-radius: 50%;
}

.campaign-orbit span:nth-child(2) {
  inset: 56px;
  border-color: rgba(10, 110, 209, 0.24);
}

.campaign-orbit span:nth-child(3) {
  inset: 112px;
  border-color: rgba(255, 255, 255, 0.16);
}

.campaign-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: 50px;
  align-items: center;
}

.campaign-hero-copy {
  max-width: 720px;
}

.campaign-kicker {
  margin: 0 0 14px;
  color: #18c7bd;
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0;
}

.campaign h1,
.campaign h2,
.campaign h3,
.campaign p {
  margin-top: 0;
}

.campaign h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.7rem, 7vw, 7.4rem);
  font-weight: 920;
  letter-spacing: 0;
  line-height: 0.9;
}

.campaign h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.campaign-hero-copy > p:not(.campaign-kicker),
.campaign-showcase-copy > p,
.campaign-cta-panel p {
  max-width: 620px;
  color: rgba(248, 251, 255, 0.78);
  font-size: 1.18rem;
  line-height: 1.58;
}

.campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 34px;
}

.campaign-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 850;
  white-space: nowrap;
}

.campaign-button-primary {
  background: linear-gradient(135deg, #0a6ed1, #18c7bd);
  color: #fff;
  box-shadow: 0 16px 36px rgba(10, 110, 209, 0.34);
}

.campaign-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fbff;
}

.campaign-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.campaign-proof article,
.campaign-stage,
.campaign-feature-grid article,
.campaign-module-grid article,
.campaign-cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.campaign-proof article {
  padding: 16px;
}

.campaign-proof span,
.campaign-floating-card span,
.campaign-module-grid span {
  display: block;
  color: rgba(248, 251, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
}

.campaign-proof strong {
  display: block;
  margin-top: 8px;
  line-height: 1.35;
}

.campaign-stage {
  position: relative;
  overflow: visible;
  transform: perspective(1100px) rotateY(-8deg) rotateX(3deg);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
}

.campaign-stage-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.09);
  padding: 0 16px;
}

.campaign-stage-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #18c7bd;
}

.campaign-stage-bar span:nth-child(2) {
  background: #0a6ed1;
}

.campaign-stage-bar span:nth-child(3) {
  background: #c47a10;
}

.campaign-stage-bar strong {
  margin-left: 8px;
  color: rgba(248, 251, 255, 0.72);
  font-size: 0.84rem;
}

.campaign-stage img {
  width: 100%;
  border-radius: 0 0 18px 18px;
}

.campaign-floating-card {
  position: absolute;
  width: min(260px, 52%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(6, 17, 32, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  padding: 16px;
}

.campaign-floating-card strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
}

.campaign-floating-card-one {
  left: -34px;
  bottom: 36px;
}

.campaign-floating-card-two {
  right: -28px;
  top: 86px;
}

.campaign-section {
  background: #f4f7fb;
  color: #081326;
  padding: 96px 0;
}

.campaign-dark-band {
  background: #050914;
  color: #f8fbff;
}

.campaign-band-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
}

.campaign-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.campaign-feature-grid article {
  min-height: 190px;
  padding: 22px;
}

.campaign-feature-grid p,
.campaign-module-grid p,
.campaign-showcase-copy p,
.campaign-section-head p {
  color: #5d6b7d;
  line-height: 1.6;
}

.campaign-dark-band .campaign-feature-grid p {
  color: rgba(248, 251, 255, 0.68);
}

.campaign-feature-grid h3,
.campaign-module-grid h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.campaign-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 34px;
  align-items: center;
}

.campaign-showcase-copy {
  position: sticky;
  top: 112px;
}

.campaign-link {
  display: inline-flex;
  margin-top: 8px;
  color: #0a6ed1;
  font-weight: 850;
}

.campaign-screens {
  display: grid;
  gap: 16px;
}

.campaign-screens img {
  width: 100%;
  border: 1px solid rgba(8, 19, 38, 0.12);
  border-radius: 18px;
  background: #081326;
  box-shadow: 0 24px 70px rgba(8, 19, 38, 0.14);
}

.campaign-section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.campaign-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.campaign-module-grid article {
  min-height: 218px;
  border-color: rgba(8, 19, 38, 0.1);
  background: #fff;
  box-shadow: 0 18px 52px rgba(8, 19, 38, 0.08);
  padding: 22px;
}

.campaign-module-grid span {
  color: #c47a10;
}

.campaign-cta {
  padding-top: 38px;
}

.campaign-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  border-color: rgba(24, 199, 189, 0.22);
  background:
    radial-gradient(circle at 12% 30%, rgba(10, 110, 209, 0.24), transparent 30%),
    linear-gradient(135deg, #050914, #081326);
  color: #f8fbff;
  padding: 38px;
}

.campaign-cta-panel p {
  color: rgba(248, 251, 255, 0.72);
}

@media (max-width: 1080px) {
  .campaign-nav {
    grid-template-columns: 1fr auto;
  }

  .campaign-nav div {
    display: none;
  }

  .campaign-hero-layout,
  .campaign-band-layout,
  .campaign-showcase,
  .campaign-cta-panel {
    grid-template-columns: 1fr;
  }

  .campaign-stage {
    transform: none;
  }

  .campaign-showcase-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .campaign-nav {
    top: 10px;
    width: min(100vw - 18px, 1160px);
  }

  .campaign-nav-cta {
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .campaign-hero {
    min-height: auto;
    padding: 112px 0 58px;
  }

  .campaign-hero-layout {
    gap: 34px;
  }

  .campaign h1 {
    font-size: 3.35rem;
  }

  .campaign-hero-copy > p:not(.campaign-kicker),
  .campaign-showcase-copy > p,
  .campaign-cta-panel p {
    font-size: 1rem;
  }

  .campaign-actions,
  .campaign-proof,
  .campaign-feature-grid,
  .campaign-module-grid {
    grid-template-columns: 1fr;
  }

  .campaign-actions {
    display: grid;
  }

  .campaign-floating-card {
    position: static;
    width: auto;
    margin: 10px;
  }

  .campaign-section {
    padding: 68px 0;
  }

  .campaign-cta {
    padding-top: 24px;
  }
}

.campaign-v3 {
  background: #f5f8fc;
  color: #0d1728;
  font-family:
    Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.campaign-v3 .campaign-kicker {
  color: #0f9f9a;
  font-size: 0.95rem;
  font-weight: 800;
}

.v3-nav {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(13, 23, 40, 0.1);
  box-shadow: 0 18px 50px rgba(13, 23, 40, 0.08);
}

.v3-nav a {
  color: rgba(13, 23, 40, 0.72);
}

.v3-nav a:hover {
  color: #0d1728;
}

.v3-nav .campaign-nav-cta {
  background: #0d1728;
  color: #fff !important;
}

.v3-hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 20%, rgba(15, 159, 154, 0.24), transparent 26%),
    radial-gradient(circle at 20% 26%, rgba(10, 110, 209, 0.16), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #eef4fb 100%);
  padding: 132px 0 84px;
}

.v3-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: 54px;
  align-items: center;
}

.v3-copy h1,
.v3-section h2,
.v3-demo-panel h2 {
  margin: 0;
  color: #0d1728;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
}

.v3-copy h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 6vw, 6.6rem);
}

.v3-copy > p:not(.campaign-kicker),
.v3-product-copy p,
.v3-enterprise-panel p {
  max-width: 650px;
  color: #536376;
  font-size: 1.22rem;
  line-height: 1.6;
}

.campaign-v3 .campaign-button-secondary {
  border-color: rgba(13, 23, 40, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: #0d1728;
}

.v3-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.v3-pills article,
.v3-cycle-grid article,
.v3-enterprise-panel,
.v3-demo-panel {
  border: 1px solid rgba(13, 23, 40, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 60px rgba(13, 23, 40, 0.08);
}

.v3-pills article {
  padding: 18px;
}

.v3-pills strong,
.v3-pills span,
.v3-console-card span,
.v3-cycle-grid span {
  display: block;
}

.v3-pills strong {
  margin-bottom: 8px;
  color: #0d1728;
  font-size: 1rem;
}

.v3-pills span {
  color: #607084;
  font-size: 0.94rem;
  line-height: 1.45;
}

.v3-console {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(13, 23, 40, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 34px 90px rgba(13, 23, 40, 0.16);
  backdrop-filter: blur(18px);
}

.v3-console img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(13, 23, 40, 0.12);
}

.v3-console-card {
  position: absolute;
  width: min(250px, 48%);
  border: 1px solid rgba(13, 23, 40, 0.1);
  border-radius: 18px;
  background: #0d1728;
  color: #fff;
  box-shadow: 0 18px 42px rgba(13, 23, 40, 0.22);
  padding: 18px;
}

.v3-console-card span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  font-weight: 750;
}

.v3-console-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.v3-console-card.one {
  left: -20px;
  bottom: 38px;
}

.v3-console-card.two {
  right: -18px;
  top: 54px;
}

.v3-section {
  padding: 94px 0;
}

.v3-cycle {
  background: #0d1728;
  color: #fff;
}

.v3-section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.v3-cycle h2 {
  color: #fff;
}

.v3-cycle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.v3-cycle-grid article {
  min-height: 260px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  padding: 24px;
}

.v3-cycle-grid span {
  margin-bottom: 44px;
  color: #18c7bd;
  font-weight: 850;
}

.v3-cycle-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.45rem;
}

.v3-cycle-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.v3-product {
  background: #f5f8fc;
}

.v3-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 40px;
  align-items: center;
}

.v3-product-copy {
  position: sticky;
  top: 112px;
}

.v3-screen-stack {
  display: grid;
  gap: 16px;
}

.v3-screen-stack img {
  width: 100%;
  border-radius: 22px;
  background: #0d1728;
  box-shadow: 0 24px 70px rgba(13, 23, 40, 0.12);
}

.v3-enterprise {
  background:
    radial-gradient(circle at 82% 20%, rgba(10, 110, 209, 0.16), transparent 22%),
    #ffffff;
}

.v3-enterprise-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: center;
  padding: 38px;
}

.v3-enterprise-list {
  display: grid;
  gap: 10px;
}

.v3-enterprise-list span {
  border: 1px solid rgba(13, 23, 40, 0.09);
  border-radius: 999px;
  background: #f5f8fc;
  color: #0d1728;
  font-weight: 760;
  padding: 14px 18px;
}

.v3-demo {
  background: #f5f8fc;
  padding-top: 0;
}

.v3-demo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(15, 159, 154, 0.25), transparent 26%),
    #0d1728;
  color: #fff;
  padding: 42px;
}

.v3-demo-panel h2 {
  color: #fff;
  max-width: 850px;
}

@media (max-width: 1080px) {
  .v3-hero-layout,
  .v3-product-layout,
  .v3-enterprise-panel,
  .v3-demo-panel {
    grid-template-columns: 1fr;
  }

  .v3-product-copy {
    position: static;
  }

  .v3-cycle-grid,
  .v3-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .v3-hero {
    min-height: auto;
    padding: 112px 0 64px;
  }

  .v3-copy h1 {
    font-size: 3.25rem;
  }

  .v3-copy > p:not(.campaign-kicker),
  .v3-product-copy p,
  .v3-enterprise-panel p {
    font-size: 1.02rem;
  }

  .v3-pills,
  .v3-cycle-grid {
    grid-template-columns: 1fr;
  }

  .v3-console-card {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .v3-section {
    padding: 70px 0;
  }

  .v3-cycle-grid article {
    min-height: auto;
  }

  .v3-cycle-grid span {
    margin-bottom: 24px;
  }

  .v3-enterprise-panel,
  .v3-demo-panel {
    padding: 26px;
  }

  .v3-demo-panel .campaign-button {
    width: 100%;
  }
}

.v4 {
  background: #f3f7fb;
  color: #0d1728;
  font-family:
    Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.v4-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 80;
  display: grid;
  width: min(1160px, calc(100vw - 32px));
  min-height: 60px;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 9, 20, 0.66);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(22px);
  padding: 8px 10px;
}

.v4-brand,
.v4-nav div,
.v4-nav-cta {
  display: inline-flex;
  align-items: center;
}

.v4-brand {
  gap: 10px;
  color: #fff;
  font-weight: 850;
}

.v4-brand span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a6ed1, #18c7bd);
}

.v4-nav div {
  justify-content: center;
  gap: 28px;
}

.v4-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.93rem;
  font-weight: 760;
}

.v4-nav a:hover {
  color: #fff;
}

.v4-nav-cta {
  justify-self: end;
  min-height: 42px;
  border-radius: 999px;
  background: #fff;
  color: #07101f !important;
  padding: 0 18px;
}

.v4-hero {
  position: relative;
  min-height: 940px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(10, 110, 209, 0.22), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(24, 199, 189, 0.22), transparent 24%),
    #07101f;
  color: #fff;
  padding: 134px 0 84px;
}

.v4-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 16, 31, 0.95), rgba(7, 16, 31, 0.58), rgba(7, 16, 31, 0.9)),
    url("/assets/screenshots/dashboard-general.png");
  background-position: center;
  background-size: cover;
  filter: blur(10px) saturate(0.95);
  opacity: 0.32;
  transform: scale(1.04);
}

.v4-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(7, 16, 31, 0), #07101f);
  content: "";
}

.v4-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.v4-hero-copy h1,
.v4-section-head h2,
.v4-copy-block h2,
.v4-enterprise-panel h2,
.v4-demo-panel h2 {
  margin: 0;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.v4-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.7rem, 6.2vw, 6.8rem);
}

.v4-hero-copy p:not(.campaign-kicker) {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
  line-height: 1.58;
}

.v4-stage {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.38);
  overflow: visible;
  backdrop-filter: blur(18px);
}

.v4-stage-top {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 16px;
}

.v4-stage-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #18c7bd;
}

.v4-stage-top span:nth-child(2) {
  background: #0a6ed1;
}

.v4-stage-top span:nth-child(3) {
  background: #c47a10;
}

.v4-stage-top strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.v4-stage img {
  width: 100%;
  border-radius: 0 0 24px 24px;
}

.v4-stage-badge {
  position: absolute;
  width: min(285px, 50%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(5, 9, 20, 0.86);
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  padding: 18px;
}

.v4-stage-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
  font-weight: 800;
}

.v4-stage-badge strong {
  display: block;
  margin-top: 8px;
}

.v4-stage-badge.left {
  left: -24px;
  bottom: 42px;
}

.v4-stage-badge.right {
  right: -24px;
  top: 74px;
}

.v4-dark {
  background: #07101f;
  color: #fff;
  padding: 92px 0;
}

.v4-section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.v4-section-head h2 {
  font-size: clamp(2.35rem, 4vw, 4.8rem);
}

.v4-cycle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.v4-cycle-grid article {
  min-height: 255px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
}

.v4-cycle-grid span {
  display: block;
  margin-bottom: 42px;
  color: #18c7bd;
  font-weight: 850;
}

.v4-cycle-grid h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.v4-cycle-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.v4-light,
.v4-modules,
.v4-enterprise,
.v4-demo {
  background: #f3f7fb;
  color: #0d1728;
  padding: 92px 0;
}

.v4-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 40px;
  align-items: center;
}

.v4-copy-block {
  position: sticky;
  top: 112px;
}

.v4-copy-block h2 {
  max-width: 610px;
  font-size: clamp(2.4rem, 4.6vw, 5rem);
}

.v4-copy-block p:not(.campaign-kicker),
.v4-enterprise-panel p {
  max-width: 620px;
  color: #536376;
  font-size: 1.15rem;
  line-height: 1.62;
}

.v4-screen-pair {
  display: grid;
  gap: 16px;
}

.v4-screen-pair img {
  width: 100%;
  border-radius: 22px;
  background: #07101f;
  box-shadow: 0 24px 72px rgba(13, 23, 40, 0.13);
}

.v4-modules {
  padding-top: 56px;
}

.v4-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.v4-module-grid article {
  min-height: 260px;
  border: 1px solid rgba(13, 23, 40, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(13, 23, 40, 0.07);
  padding: 24px;
}

.v4-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 110, 209, 0.12), rgba(24, 199, 189, 0.16));
  color: #0a6ed1;
  margin-bottom: 18px;
}

.v4-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.v4-module-grid article > span {
  display: block;
  margin-bottom: 10px;
  color: #0f9f9a;
  font-size: 0.86rem;
  font-weight: 850;
}

.v4-module-grid h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.v4-module-grid p {
  margin: 0;
  color: #5e6e82;
  line-height: 1.58;
}

.v4-enterprise {
  padding-top: 36px;
}

.v4-enterprise-panel,
.v4-demo-panel {
  border-radius: 28px;
  box-shadow: 0 24px 72px rgba(13, 23, 40, 0.09);
}

.v4-enterprise-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 36px;
  align-items: center;
  border: 1px solid rgba(13, 23, 40, 0.1);
  background: #fff;
  padding: 40px;
}

.v4-enterprise-panel h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.4vw, 4.8rem);
}

.v4-enterprise-list {
  display: grid;
  gap: 10px;
}

.v4-enterprise-list span {
  border: 1px solid rgba(13, 23, 40, 0.1);
  border-radius: 999px;
  background: #f3f7fb;
  font-weight: 780;
  padding: 15px 18px;
}

.v4-demo {
  padding-top: 0;
}

.v4-demo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(circle at 8% 20%, rgba(24, 199, 189, 0.22), transparent 28%),
    #07101f;
  color: #fff;
  padding: 42px;
}

.v4-demo-panel h2 {
  max-width: 920px;
  color: #fff;
  font-size: clamp(2.35rem, 4.8vw, 5.2rem);
}

@media (max-width: 1080px) {
  .v4-nav {
    grid-template-columns: 1fr auto;
  }

  .v4-nav div {
    display: none;
  }

  .v4-hero-layout,
  .v4-split,
  .v4-enterprise-panel,
  .v4-demo-panel {
    grid-template-columns: 1fr;
  }

  .v4-copy-block {
    position: static;
  }

  .v4-cycle-grid,
  .v4-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .v4-nav {
    top: 10px;
    width: min(100vw - 18px, 1160px);
  }

  .v4-nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .v4-hero {
    min-height: auto;
    padding: 108px 0 62px;
  }

  .v4-hero-layout {
    gap: 32px;
  }

  .v4-hero-copy h1 {
    font-size: 3.15rem;
    line-height: 1.02;
  }

  .v4-hero-copy p:not(.campaign-kicker),
  .v4-copy-block p:not(.campaign-kicker),
  .v4-enterprise-panel p {
    font-size: 1rem;
  }

  .v4-stage-badge {
    position: static;
    width: auto;
    margin: 10px;
  }

  .v4-dark,
  .v4-light,
  .v4-modules,
  .v4-enterprise,
  .v4-demo {
    padding: 68px 0;
  }

  .v4-cycle-grid,
  .v4-module-grid {
    grid-template-columns: 1fr;
  }

  .v4-cycle-grid article,
  .v4-module-grid article {
    min-height: auto;
  }

  .v4-cycle-grid span {
    margin-bottom: 24px;
  }

  .v4-enterprise-panel,
  .v4-demo-panel {
    padding: 26px;
  }

  .v4-demo-panel .campaign-button {
    width: 100%;
  }
}

.v5 {
  background: #eef4f8;
  color: #07101f;
  font-family:
    Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.v5-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 80;
  display: grid;
  width: min(1120px, calc(100vw - 32px));
  min-height: 58px;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 9, 20, 0.74);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(22px);
  padding: 8px 10px;
}

.v5-brand,
.v5-nav div,
.v5-nav-cta {
  display: inline-flex;
  align-items: center;
}

.v5-brand {
  gap: 10px;
  color: #fff;
  font-weight: 850;
}

.v5-brand span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a6ed1, #18c7bd);
}

.v5-nav div {
  justify-content: center;
  gap: 26px;
}

.v5-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  font-weight: 760;
}

.v5-nav a:hover {
  color: #fff;
}

.v5-nav-cta {
  justify-self: end;
  min-height: 42px;
  border-radius: 999px;
  background: #fff;
  color: #07101f !important;
  padding: 0 18px;
}

.v5-hero {
  position: relative;
  min-height: 960px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 20% 22%, rgba(10, 110, 209, 0.32), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(24, 199, 189, 0.22), transparent 25%),
    #060d19;
  background-size:
    102px 102px,
    102px 102px,
    auto,
    auto,
    auto;
  color: #fff;
  padding: 136px 0 86px;
}

.v5-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(6, 13, 25, 0.95), rgba(6, 13, 25, 0.54), rgba(6, 13, 25, 0.9)),
    url("/assets/screenshots/clinic-indicators.png");
  background-position: center;
  background-size: cover;
  filter: blur(12px) saturate(0.92);
  opacity: 0.22;
  transform: scale(1.05);
}

.v5-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(180deg, rgba(6, 13, 25, 0), #060d19);
  content: "";
}

.v5-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 58px;
  align-items: center;
}

.v5-hero-copy h1,
.v5-section-head h2,
.v5-copy-block h2,
.v5-enterprise-panel h2,
.v5-demo-panel h2 {
  margin: 0;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.v5-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(4rem, 6vw, 7rem);
}

.v5-hero-copy p:not(.campaign-kicker) {
  max-width: 670px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.58;
}

.v5-proof {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.v5-proof span {
  display: grid;
  min-height: 96px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  line-height: 1.35;
  padding: 16px;
}

.v5-proof b {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.v5-stage {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.42);
  overflow: visible;
  backdrop-filter: blur(18px);
}

.v5-stage-top {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 16px;
}

.v5-stage-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #18c7bd;
}

.v5-stage-top span:nth-child(2) {
  background: #0a6ed1;
}

.v5-stage-top span:nth-child(3) {
  background: #f59e0b;
}

.v5-stage-top strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.v5-stage img {
  display: block;
  width: 100%;
  border-radius: 0 0 24px 24px;
}

.v5-stage-badge {
  position: absolute;
  width: min(300px, 52%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(5, 9, 20, 0.88);
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  padding: 18px;
}

.v5-stage-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  font-weight: 800;
}

.v5-stage-badge strong {
  display: block;
  margin-top: 8px;
}

.v5-stage-badge.left {
  left: -28px;
  bottom: 44px;
}

.v5-stage-badge.right {
  right: -26px;
  top: 78px;
}

.v5-flow {
  background: #060d19;
  color: #fff;
  padding: 94px 0;
}

.v5-section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.v5-section-head h2 {
  font-size: clamp(2.35rem, 4vw, 4.9rem);
}

.v5-section-head p:not(.campaign-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.13rem;
  line-height: 1.6;
}

.v5-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.v5-flow-grid article {
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
}

.v5-flow-grid span {
  display: block;
  margin-bottom: 36px;
  color: #18c7bd;
  font-weight: 850;
}

.v5-flow-grid h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.v5-flow-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.v5-case,
.v5-modules,
.v5-audience,
.v5-enterprise,
.v5-faq,
.v5-demo {
  background: #eef4f8;
  color: #07101f;
  padding: 92px 0;
}

.v5-case-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  align-items: center;
}

.v5-copy-block h2 {
  max-width: 640px;
  font-size: clamp(2.35rem, 4.4vw, 5rem);
}

.v5-copy-block p:not(.campaign-kicker),
.v5-enterprise-panel p,
.v5-faq-list p,
.v5-audience-grid p {
  color: #536376;
  font-size: 1.08rem;
  line-height: 1.6;
}

.v5-case-layout > img {
  width: 100%;
  border-radius: 22px;
  background: #07101f;
  box-shadow: 0 26px 74px rgba(13, 23, 40, 0.17);
}

.v5-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.v5-metrics span {
  display: grid;
  min-height: 96px;
  align-content: center;
  border: 1px solid rgba(13, 23, 40, 0.08);
  border-radius: 18px;
  background: #fff;
  color: #516174;
  padding: 16px;
}

.v5-metrics b {
  color: #07101f;
  font-size: 2.2rem;
  line-height: 1;
}

.v5-modules {
  padding-top: 56px;
}

.v5-module-grid,
.v5-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.v5-module-grid article,
.v5-audience-grid article,
.v5-faq-list article {
  border: 1px solid rgba(13, 23, 40, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(13, 23, 40, 0.07);
  padding: 24px;
}

.v5-module-grid article {
  min-height: 248px;
}

.v5-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 110, 209, 0.12), rgba(24, 199, 189, 0.16));
  color: #0a6ed1;
  margin-bottom: 18px;
}

.v5-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.v5-module-grid article > span {
  display: block;
  margin-bottom: 10px;
  color: #0f9f9a;
  font-size: 0.86rem;
  font-weight: 850;
}

.v5-module-grid h3,
.v5-audience-grid h3,
.v5-faq-list h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.v5-module-grid p {
  margin: 0;
  color: #5e6e82;
  line-height: 1.58;
}

.v5-audience {
  padding-top: 52px;
}

.v5-audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v5-audience-grid article {
  min-height: 175px;
}

.v5-enterprise {
  padding-top: 36px;
}

.v5-enterprise-panel,
.v5-demo-panel {
  border-radius: 28px;
  box-shadow: 0 24px 72px rgba(13, 23, 40, 0.09);
}

.v5-enterprise-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 36px;
  align-items: center;
  border: 1px solid rgba(13, 23, 40, 0.1);
  background: #fff;
  padding: 40px;
}

.v5-enterprise-panel h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.4vw, 4.8rem);
}

.v5-enterprise-list {
  display: grid;
  gap: 10px;
}

.v5-enterprise-list span {
  border: 1px solid rgba(13, 23, 40, 0.1);
  border-radius: 999px;
  background: #eef4f8;
  font-weight: 780;
  padding: 15px 18px;
}

.v5-faq {
  padding-top: 48px;
}

.v5-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 36px;
}

.v5-faq-layout .v5-section-head {
  margin-bottom: 0;
}

.v5-faq-list {
  display: grid;
  gap: 12px;
}

.v5-demo {
  padding-top: 0;
}

.v5-demo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(circle at 8% 20%, rgba(24, 199, 189, 0.22), transparent 28%),
    #07101f;
  color: #fff;
  padding: 42px;
}

.v5-demo-panel h2 {
  max-width: 940px;
  color: #fff;
  font-size: clamp(2.35rem, 4.8vw, 5.2rem);
}

@media (max-width: 1120px) {
  .v5-nav {
    grid-template-columns: 1fr auto;
  }

  .v5-nav div {
    display: none;
  }

  .v5-hero-layout,
  .v5-case-layout,
  .v5-enterprise-panel,
  .v5-faq-layout,
  .v5-demo-panel {
    grid-template-columns: 1fr;
  }

  .v5-flow-grid,
  .v5-module-grid,
  .v5-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .v5-nav {
    top: 10px;
    width: min(100vw - 18px, 1120px);
  }

  .v5-nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .v5-hero {
    min-height: auto;
    padding: 108px 0 64px;
  }

  .v5-hero-layout {
    gap: 32px;
  }

  .v5-hero-copy h1 {
    font-size: 3.05rem;
    line-height: 1.02;
  }

  .v5-hero-copy p:not(.campaign-kicker),
  .v5-copy-block p:not(.campaign-kicker),
  .v5-enterprise-panel p,
  .v5-faq-list p,
  .v5-audience-grid p {
    font-size: 1rem;
  }

  .v5-proof,
  .v5-metrics,
  .v5-flow-grid,
  .v5-module-grid,
  .v5-audience-grid {
    grid-template-columns: 1fr;
  }

  .v5-stage-badge {
    position: static;
    width: auto;
    margin: 10px;
  }

  .v5-flow,
  .v5-case,
  .v5-modules,
  .v5-audience,
  .v5-enterprise,
  .v5-faq,
  .v5-demo {
    padding: 68px 0;
  }

  .v5-flow-grid article,
  .v5-module-grid article,
  .v5-audience-grid article {
    min-height: auto;
  }

  .v5-flow-grid span {
    margin-bottom: 24px;
  }

  .v5-enterprise-panel,
  .v5-demo-panel {
    padding: 26px;
  }

  .v5-demo-panel .campaign-button {
    width: 100%;
  }
}

.v6 {
  background: #eef4f8;
  color: #07101f;
  font-family:
    Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.v6-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 90;
  display: grid;
  width: min(1180px, calc(100vw - 32px));
  min-height: 58px;
  grid-template-columns: minmax(250px, 1fr) auto auto auto;
  gap: 14px;
  align-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 9, 20, 0.78);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px);
  padding: 8px 10px;
}

.v6-brand,
.v6-nav div,
.v6-nav-link,
.v6-nav-cta {
  display: inline-flex;
  align-items: center;
}

.v6-brand {
  gap: 10px;
  color: #fff;
  font-weight: 850;
}

.v6-brand span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a6ed1, #18c7bd);
}

.v6-brand em {
  color: rgba(248, 251, 255, 0.58);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 760;
}

.v6-nav div {
  justify-content: center;
  gap: 24px;
}

.v6-nav a {
  color: rgba(248, 251, 255, 0.76);
  font-size: 0.91rem;
  font-weight: 760;
}

.v6-nav a:hover {
  color: #fff;
}

.v6-nav-link {
  justify-self: end;
}

.v6-nav-cta {
  min-height: 42px;
  border-radius: 999px;
  background: #f8fbff;
  color: #061120 !important;
  padding: 0 18px;
}

.v6-hero {
  position: relative;
  min-height: 940px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 24%, rgba(10, 110, 209, 0.42), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(24, 199, 189, 0.24), transparent 24%),
    linear-gradient(180deg, #050914 0%, #081326 100%);
  color: #fff;
  padding: 132px 0 82px;
}

.v6-grid {
  position: absolute;
  inset: 0 0 42%;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 94%);
}

.v6-orbit {
  position: absolute;
  top: 130px;
  right: max(28px, calc((100vw - 1160px) / 2));
  z-index: -2;
  width: 420px;
  height: 420px;
  opacity: 0.72;
}

.v6-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(24, 199, 189, 0.22);
  border-radius: 50%;
}

.v6-orbit span:nth-child(2) {
  inset: 56px;
  border-color: rgba(10, 110, 209, 0.24);
}

.v6-orbit span:nth-child(3) {
  inset: 112px;
  border-color: rgba(255, 255, 255, 0.16);
}

.v6-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.v6-hero-copy h1,
.v6-section-head h2,
.v6-final-panel h2 {
  margin: 0;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.v6-hero-copy h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(3.35rem, 5vw, 5.8rem);
}

.v6-hero-copy > p:not(.campaign-kicker) {
  max-width: 680px;
  color: rgba(248, 251, 255, 0.78);
  font-size: 1.16rem;
  line-height: 1.58;
}

.v6-short {
  margin-top: 14px;
  color: rgba(248, 251, 255, 0.9) !important;
  font-weight: 760;
}

.v6-microcopy {
  margin: 18px 0 0;
  color: rgba(248, 251, 255, 0.58) !important;
  font-size: 0.95rem !important;
}

.v6-cockpit {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  transform: perspective(1100px) rotateY(-8deg) rotateX(3deg);
}

.v6-cockpit-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px 22px 0 0;
  background: rgba(255, 255, 255, 0.09);
  padding: 0 16px;
}

.v6-cockpit-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #18c7bd;
}

.v6-cockpit-bar span:nth-child(2) {
  background: #0a6ed1;
}

.v6-cockpit-bar span:nth-child(3) {
  background: #c47a10;
}

.v6-cockpit-bar strong {
  margin-left: 8px;
  color: rgba(248, 251, 255, 0.72);
  font-size: 0.84rem;
}

.v6-cockpit-body {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.v6-cockpit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.v6-cockpit-header span,
.v6-cockpit-metrics span,
.v6-floating-card span {
  display: block;
  color: rgba(248, 251, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 820;
}

.v6-cockpit-header strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1.5rem;
}

.v6-cockpit-header b {
  border-radius: 999px;
  background: rgba(24, 199, 189, 0.14);
  color: #72fff4;
  padding: 9px 12px;
}

.v6-cockpit-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.v6-cockpit-metrics article {
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(5, 9, 20, 0.44);
  padding: 14px;
}

.v6-cockpit-metrics strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
}

.v6-cockpit-map {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  align-items: center;
  gap: 8px;
}

.v6-cockpit-map div {
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(5, 9, 20, 0.5);
  padding: 14px;
}

.v6-cockpit-map span {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a6ed1, #18c7bd);
}

.v6-cockpit-map b {
  display: block;
  color: #fff;
  font-size: 0.94rem;
}

.v6-cockpit-map i {
  height: 2px;
  border-radius: 999px;
  background: rgba(24, 199, 189, 0.5);
}

.v6-cockpit-body > p {
  margin: 0;
  color: rgba(248, 251, 255, 0.78);
  font-size: 1.06rem;
  font-weight: 760;
}

.v6-floating-card {
  position: absolute;
  width: min(285px, 52%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(5, 9, 20, 0.88);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
  padding: 18px;
}

.v6-floating-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  line-height: 1.35;
}

.v6-floating-card-one {
  left: -28px;
  bottom: 72px;
}

.v6-floating-card-two {
  right: -28px;
  top: 110px;
}

.v6-section {
  padding: 92px 0;
}

.v6-problem,
.v6-how,
.v6-diff,
.v6-trust,
.v6-footer {
  background: #07101f;
  color: #fff;
}

.v6-thesis,
.v6-benefits,
.v6-capabilities,
.v6-use-cases,
.v6-contact,
.v6-faq,
.v6-final {
  background: #eef4f8;
  color: #07101f;
}

.v6-section-head {
  max-width: 890px;
  margin-bottom: 34px;
}

.v6-section-head h2 {
  font-size: clamp(2.35rem, 4.2vw, 5rem);
}

.v6-section-head p:not(.campaign-kicker) {
  max-width: 760px;
  color: #536376;
  font-size: 1.12rem;
  line-height: 1.62;
}

.v6-problem .v6-section-head p,
.v6-how .v6-section-head p,
.v6-diff .v6-section-head p,
.v6-trust .v6-section-head p,
.v6-footer p {
  color: rgba(248, 251, 255, 0.72);
}

.v6-card-grid,
.v6-benefit-grid,
.v6-capability-grid,
.v6-use-grid,
.v6-trust-grid {
  display: grid;
  gap: 14px;
}

.v6-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v6-card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.v6-card-grid article,
.v6-timeline article,
.v6-trust-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
}

.v6-card-grid article {
  min-height: 260px;
}

.v6-line-icon,
.v6-dot {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(24, 199, 189, 0.4);
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 45%, rgba(24, 199, 189, 0.65) 45% 55%, transparent 55%),
    linear-gradient(transparent 45%, rgba(10, 110, 209, 0.7) 45% 55%, transparent 55%),
    rgba(24, 199, 189, 0.08);
}

.v6-card-grid h3,
.v6-pillar-grid h3,
.v6-timeline h3,
.v6-benefit-grid h3,
.v6-capability-grid h3,
.v6-use-grid h3,
.v6-trust-grid h3,
.v6-faq-list summary {
  margin: 0 0 10px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.v6-card-grid p,
.v6-pillar-grid p,
.v6-timeline p,
.v6-benefit-grid p,
.v6-capability-grid p,
.v6-use-grid p,
.v6-trust-grid p,
.v6-faq-list p,
.v6-contact-panel p,
.v6-final-panel p {
  margin: 0;
  color: #5e6e82;
  line-height: 1.6;
}

.v6-card-grid p,
.v6-timeline p,
.v6-trust-grid p {
  color: rgba(248, 251, 255, 0.72);
}

.v6-thesis-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 42px;
  align-items: start;
}

.v6-pillar-grid {
  display: grid;
  gap: 14px;
}

.v6-pillar-grid article,
.v6-benefit-grid article,
.v6-capability-grid article,
.v6-use-grid article,
.v6-faq-list details {
  border: 1px solid rgba(13, 23, 40, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(13, 23, 40, 0.07);
  padding: 24px;
}

.v6-pillar-grid article {
  min-height: 164px;
}

.v6-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #0a6ed1;
  font-weight: 850;
}

.v6-text-link::after {
  content: "->";
}

.v6-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.v6-timeline article {
  min-height: 260px;
}

.v6-timeline span {
  display: block;
  margin-bottom: 36px;
  color: #18c7bd;
  font-weight: 850;
}

.v6-inline-cta {
  margin-top: 26px;
}

.v6-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v6-benefit-grid article {
  min-height: 200px;
}

.v6-diff .v6-card-grid article {
  min-height: 236px;
}

.v6-capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v6-capability-grid article {
  min-height: 230px;
}

.v6-product-preview {
  margin: 26px 0 0;
  overflow: hidden;
  border: 1px solid rgba(13, 23, 40, 0.1);
  border-radius: 24px;
  background: #07101f;
  box-shadow: 0 26px 74px rgba(13, 23, 40, 0.15);
}

.v6-product-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.v6-capability-grid .v6-dot {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 12px;
}

.v6-use-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.v6-use-grid article {
  min-height: 225px;
}

.v6-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
}

.v6-trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v6-trust-grid article {
  min-height: 178px;
}

.v6-contact-panel,
.v6-final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: 28px;
  box-shadow: 0 24px 72px rgba(13, 23, 40, 0.09);
  padding: 42px;
}

.v6-contact-panel {
  border: 1px solid rgba(13, 23, 40, 0.1);
  background: #fff;
}

.v6-contact-panel h2,
.v6-final-panel h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  line-height: 1;
}

.v6-contact-panel p,
.v6-final-panel p {
  max-width: 760px;
  margin-top: 16px;
  font-size: 1.08rem;
}

.v6-contact-mail {
  color: #0a6ed1 !important;
  font-weight: 850;
}

.v6-contact-panel small {
  display: block;
  max-width: 720px;
  margin-top: 12px;
  color: #6a798b;
}

.v6-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 38px;
}

.v6-faq-list {
  display: grid;
  gap: 12px;
}

.v6-faq-list details {
  padding: 0;
  overflow: hidden;
}

.v6-faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
}

.v6-faq-list summary::-webkit-details-marker {
  display: none;
}

.v6-faq-list p {
  padding: 0 24px 22px;
}

.v6-final {
  padding: 0 0 92px;
}

.v6-final-panel {
  background:
    radial-gradient(circle at 8% 20%, rgba(24, 199, 189, 0.22), transparent 28%),
    #07101f;
  color: #fff;
}

.v6-final-panel p {
  color: rgba(248, 251, 255, 0.72);
}

.v6-final-actions {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.v6-footer {
  padding: 64px 0 28px;
}

.v6-footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.v6-footer-brand {
  display: inline-block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.v6-footer a {
  color: #18c7bd;
  font-weight: 800;
}

.v6-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.96rem;
}

.v6-footer span {
  display: block;
  margin-top: 9px;
  color: rgba(248, 251, 255, 0.68);
}

.v6-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
}

.v6-footer-bottom span {
  margin: 0;
  color: rgba(248, 251, 255, 0.62);
}

@media (max-width: 1180px) {
  .v6-nav {
    grid-template-columns: 1fr auto auto;
  }

  .v6-nav div {
    display: none;
  }

  .v6-hero-layout,
  .v6-thesis-layout,
  .v6-trust-layout,
  .v6-contact-panel,
  .v6-faq-layout,
  .v6-final-panel {
    grid-template-columns: 1fr;
  }

  .v6-cockpit {
    transform: none;
  }

  .v6-card-grid.four,
  .v6-card-grid.five,
  .v6-timeline,
  .v6-benefit-grid,
  .v6-capability-grid,
  .v6-use-grid,
  .v6-footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .v6-nav {
    top: 10px;
    width: min(100vw - 18px, 1180px);
    grid-template-columns: 1fr auto;
  }

  .v6-brand em,
  .v6-nav-link {
    display: none;
  }

  .v6-nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .v6-hero {
    min-height: auto;
    padding: 112px 0 62px;
  }

  .v6-hero-layout {
    gap: 34px;
  }

  .v6-hero-copy h1 {
    font-size: 2.85rem;
    line-height: 1.02;
  }

  .v6-hero-copy > p:not(.campaign-kicker),
  .v6-section-head p:not(.campaign-kicker),
  .v6-contact-panel p,
  .v6-final-panel p {
    font-size: 1rem;
  }

  .v6-cockpit-metrics,
  .v6-cockpit-map,
  .v6-card-grid.four,
  .v6-card-grid.five,
  .v6-timeline,
  .v6-benefit-grid,
  .v6-capability-grid,
  .v6-use-grid,
  .v6-trust-grid,
  .v6-footer-layout {
    grid-template-columns: 1fr;
  }

  .v6-cockpit-map i {
    width: 2px;
    height: 22px;
    justify-self: center;
  }

  .v6-floating-card {
    position: static;
    width: auto;
    margin: 10px;
  }

  .v6-section {
    padding: 68px 0;
  }

  .v6-card-grid article,
  .v6-timeline article,
  .v6-benefit-grid article,
  .v6-capability-grid article,
  .v6-use-grid article,
  .v6-trust-grid article {
    min-height: auto;
  }

  .v6-timeline span {
    margin-bottom: 24px;
  }

  .v6-contact-panel,
  .v6-final-panel {
    padding: 26px;
  }

  .v6-contact-panel .campaign-button,
  .v6-final-actions,
  .v6-final-actions .campaign-button {
    width: 100%;
  }

  .v6-footer-bottom {
    display: grid;
  }
}

.v7 {
  min-height: 100vh;
  background: #eef4f8;
  color: #07101f;
  font-family:
    Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.v7-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 90;
  display: grid;
  width: min(1180px, calc(100vw - 32px));
  min-height: 58px;
  grid-template-columns: minmax(250px, 1fr) auto auto auto;
  gap: 14px;
  align-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 9, 20, 0.78);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px);
  padding: 8px 10px;
}

.v7-brand,
.v7-nav-links,
.v7-nav-link,
.v7-nav-cta {
  display: inline-flex;
  align-items: center;
}

.v7-brand {
  gap: 10px;
  color: #fff;
  font-weight: 850;
}

.v7-brand span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a6ed1, #18c7bd);
}

.v7-brand em {
  color: rgba(248, 251, 255, 0.58);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 760;
}

.v7-nav-links {
  justify-content: center;
  gap: 22px;
}

.v7-nav a {
  color: rgba(248, 251, 255, 0.76);
  font-size: 0.91rem;
  font-weight: 760;
}

.v7-nav a:hover,
.v7-nav a.is-active {
  color: #fff;
}

.v7-nav-cta {
  min-height: 42px;
  border-radius: 999px;
  background: #f8fbff;
  color: #061120 !important;
  padding: 0 18px;
}

.v7-hero,
.v7-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 24%, rgba(10, 110, 209, 0.42), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(24, 199, 189, 0.24), transparent 24%),
    linear-gradient(180deg, #050914 0%, #081326 100%);
  color: #fff;
}

.v7-hero {
  min-height: 940px;
  display: flex;
  align-items: center;
  padding: 132px 0 82px;
}

.v7-page-hero {
  padding: 146px 0 82px;
}

.v7-grid {
  position: absolute;
  inset: 0 0 42%;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 94%);
}

.v7-orbit {
  position: absolute;
  top: 130px;
  right: max(28px, calc((100vw - 1160px) / 2));
  z-index: -2;
  width: 420px;
  height: 420px;
  opacity: 0.72;
}

.v7-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(24, 199, 189, 0.22);
  border-radius: 50%;
}

.v7-orbit span:nth-child(2) {
  inset: 56px;
  border-color: rgba(10, 110, 209, 0.24);
}

.v7-orbit span:nth-child(3) {
  inset: 112px;
  border-color: rgba(255, 255, 255, 0.16);
}

.v7-hero-layout,
.v7-page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 54px;
  align-items: center;
}

.v7-page-hero-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
}

.v7-hero-copy h1,
.v7-page-hero h1,
.v7-section-head h2,
.v7-product-scene h2,
.v7-sector-grid h2,
.v7-final-panel h2 {
  margin: 0;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.v7-hero-copy h1 {
  max-width: 800px;
  color: #fff;
  font-size: clamp(3.35rem, 5.2vw, 6rem);
}

.v7-page-hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(2.8rem, 4.8vw, 5.6rem);
}

.v7-hero-copy > p:not(.campaign-kicker),
.v7-page-hero p,
.v7-product-scene p,
.v7-final-panel p {
  max-width: 720px;
  color: rgba(248, 251, 255, 0.78);
  font-size: 1.14rem;
  line-height: 1.6;
}

.v7-microcopy {
  margin-top: 18px;
  color: rgba(248, 251, 255, 0.58) !important;
  font-size: 0.95rem !important;
}

.v7-product-window,
.v7-page-shot,
.v7-product-scene figure {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.v7-product-window {
  position: relative;
  transform: perspective(1100px) rotateY(-7deg) rotateX(3deg);
}

.v7-window-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px 22px 0 0;
  background: rgba(255, 255, 255, 0.09);
  padding: 0 16px;
}

.v7-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #18c7bd;
}

.v7-window-bar span:nth-child(2) {
  background: #0a6ed1;
}

.v7-window-bar span:nth-child(3) {
  background: #c47a10;
}

.v7-window-bar strong {
  margin-left: 8px;
  color: rgba(248, 251, 255, 0.72);
  font-size: 0.84rem;
}

.v7-window-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.v7-window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.v7-window-head span,
.v7-metric-grid span,
.v7-float-card span {
  display: block;
  color: rgba(248, 251, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 820;
}

.v7-window-head strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1.35rem;
}

.v7-window-head b {
  border-radius: 999px;
  background: rgba(24, 199, 189, 0.14);
  color: #72fff4;
  padding: 9px 12px;
}

.v7-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.v7-metric-grid article {
  min-height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(5, 9, 20, 0.44);
  padding: 14px;
}

.v7-metric-grid strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
}

.v7-window-body img,
.v7-page-shot img,
.v7-product-scene img,
.v7-screenshot-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.v7-float-card {
  position: absolute;
  width: min(250px, 52%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(5, 9, 20, 0.9);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
  padding: 18px;
}

.v7-float-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  line-height: 1.35;
}

.v7-float-card.one {
  left: -26px;
  bottom: 86px;
}

.v7-float-card.two {
  right: -26px;
  top: 112px;
}

.v7-section {
  padding: 92px 0;
}

.v7-dark,
.v7-showcase,
.v7-footer {
  background: #07101f;
  color: #fff;
}

.v7-light,
.v7-use-strip,
.v7-final-cta {
  background: #eef4f8;
  color: #07101f;
}

.v7-section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.v7-section-head h2 {
  font-size: clamp(2.25rem, 4.2vw, 5rem);
}

.v7-section-head p:not(.campaign-kicker) {
  max-width: 760px;
  color: #536376;
  font-size: 1.1rem;
  line-height: 1.62;
}

.v7-dark .v7-section-head p,
.v7-showcase .v7-section-head p,
.v7-dark p {
  color: rgba(248, 251, 255, 0.72);
}

.v7-card-grid,
.v7-screenshot-grid,
.v7-step-row,
.v7-sector-grid {
  display: grid;
  gap: 14px;
}

.v7-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v7-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v7-card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.v7-card-grid article,
.v7-step-row article,
.v7-step-list article,
.v7-sector-grid article,
.v7-contact-box,
.v7-faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
}

.v7-card-grid.light article,
.v7-sector-grid article,
.v7-contact-box,
.v7-faq-list details {
  border-color: rgba(13, 23, 40, 0.1);
  background: #fff;
  box-shadow: 0 20px 58px rgba(13, 23, 40, 0.07);
}

.v7-card-grid article {
  min-height: 205px;
}

.v7-card-grid.five article {
  min-height: 225px;
}

.v7-icon-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border: 1px solid rgba(24, 199, 189, 0.4);
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 45%, rgba(24, 199, 189, 0.65) 45% 55%, transparent 55%),
    linear-gradient(transparent 45%, rgba(10, 110, 209, 0.7) 45% 55%, transparent 55%),
    rgba(24, 199, 189, 0.08);
}

.v7-card-grid h3,
.v7-step-row h3,
.v7-step-list h3,
.v7-sector-grid h2,
.v7-faq-list summary {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.v7-card-grid p,
.v7-step-row p,
.v7-step-list p,
.v7-sector-grid p,
.v7-faq-list p,
.v7-contact-box p {
  margin: 0;
  color: #5e6e82;
  line-height: 1.6;
}

.v7-dark .v7-card-grid p,
.v7-dark .v7-step-row p,
.v7-dark .v7-step-list p {
  color: rgba(248, 251, 255, 0.72);
}

.v7-split,
.v7-product-scene,
.v7-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: center;
}

.v7-step-list {
  display: grid;
  gap: 12px;
}

.v7-step-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  border-color: rgba(13, 23, 40, 0.1);
  background: #fff;
  box-shadow: 0 20px 58px rgba(13, 23, 40, 0.07);
}

.v7-step-list span,
.v7-step-row span {
  color: #0f9f9a;
  font-weight: 900;
}

.v7-proof-section {
  padding-top: 44px;
}

.v7-screenshot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v7-screenshot-grid a,
.v7-screenshot-grid figure {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding: 14px;
}

.v7-screenshot-grid span,
.v7-screenshot-grid figcaption {
  color: rgba(248, 251, 255, 0.78);
  font-weight: 800;
}

.v7-inline-cta {
  margin-top: 26px;
}

.v7-final-cta {
  padding: 0 0 92px;
}

.v7-final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 20%, rgba(24, 199, 189, 0.22), transparent 28%),
    #07101f;
  color: #fff;
  box-shadow: 0 24px 72px rgba(13, 23, 40, 0.12);
  padding: 42px;
}

.v7-final-panel h2 {
  color: #fff;
  font-size: clamp(2.25rem, 4.2vw, 4.8rem);
}

.v7-final-actions {
  display: grid;
  gap: 12px;
}

.v7-page-shot,
.v7-product-scene figure {
  overflow: hidden;
  padding: 12px;
}

.v7-page-shot {
  background: rgba(255, 255, 255, 0.08);
}

.v7-step-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.v7-step-row article {
  min-height: 235px;
  border-color: rgba(13, 23, 40, 0.1);
  background: #fff;
  box-shadow: 0 20px 58px rgba(13, 23, 40, 0.07);
}

.v7-product-scene h2 {
  color: inherit;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
}

.v7-light .v7-product-scene p {
  color: #536376;
}

.v7-sector-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v7-sector-grid article {
  min-height: 290px;
}

.v7-sector-grid h2 {
  font-size: 1.6rem;
}

.v7-sector-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.v7-sector-grid span {
  border-radius: 999px;
  background: #eef4f8;
  color: #0d1728;
  font-size: 0.86rem;
  font-weight: 820;
  padding: 9px 12px;
}

.v7-contact-box {
  display: grid;
  align-content: center;
  min-height: 260px;
}

.v7-contact-box span {
  color: #0f9f9a;
  font-weight: 850;
}

.v7-contact-box strong {
  display: block;
  margin: 12px 0;
  color: #07101f;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.v7-faq-list {
  display: grid;
  gap: 12px;
}

.v7-faq-list details {
  padding: 0;
  overflow: hidden;
}

.v7-faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
}

.v7-faq-list summary::-webkit-details-marker {
  display: none;
}

.v7-faq-list p {
  padding: 0 24px 22px;
}

.v7-footer {
  padding: 64px 0 28px;
}

.v7-footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.v7-footer-brand {
  display: inline-block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.v7-footer a {
  color: #18c7bd;
  font-weight: 800;
}

.v7-footer p {
  color: rgba(248, 251, 255, 0.72);
}

.v7-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.96rem;
}

.v7-footer span {
  display: block;
  margin-top: 9px;
  color: rgba(248, 251, 255, 0.68);
}

.v7-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
}

.v7-footer-bottom span {
  margin: 0;
  color: rgba(248, 251, 255, 0.62);
}

@media (max-width: 1180px) {
  .v7-nav {
    grid-template-columns: 1fr auto auto;
  }

  .v7-nav-links {
    display: none;
  }

  .v7-hero-layout,
  .v7-page-hero-layout,
  .v7-split,
  .v7-product-scene,
  .v7-faq-layout,
  .v7-final-panel {
    grid-template-columns: 1fr;
  }

  .v7-product-window {
    transform: none;
  }

  .v7-card-grid.three,
  .v7-card-grid.four,
  .v7-card-grid.five,
  .v7-screenshot-grid,
  .v7-step-row,
  .v7-sector-grid,
  .v7-footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .v7-nav {
    top: 10px;
    width: min(100vw - 18px, 1180px);
    grid-template-columns: 1fr auto;
  }

  .v7-brand em,
  .v7-nav-link {
    display: none;
  }

  .v7-nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .v7-hero {
    min-height: auto;
    padding: 112px 0 64px;
  }

  .v7-page-hero {
    padding: 112px 0 64px;
  }

  .v7-hero-copy h1,
  .v7-page-hero h1 {
    font-size: 2.65rem;
    line-height: 1.02;
  }

  .v7-hero-copy > p:not(.campaign-kicker),
  .v7-page-hero p,
  .v7-section-head p:not(.campaign-kicker),
  .v7-product-scene p,
  .v7-final-panel p {
    font-size: 1rem;
  }

  .v7-metric-grid,
  .v7-card-grid.three,
  .v7-card-grid.four,
  .v7-card-grid.five,
  .v7-screenshot-grid,
  .v7-step-row,
  .v7-sector-grid,
  .v7-footer-layout {
    grid-template-columns: 1fr;
  }

  .v7-float-card {
    position: static;
    width: auto;
    margin: 10px;
  }

  .v7-section {
    padding: 68px 0;
  }

  .v7-card-grid article,
  .v7-card-grid.five article,
  .v7-step-row article,
  .v7-sector-grid article {
    min-height: auto;
  }

  .v7-final-panel {
    padding: 26px;
  }

  .v7-final-actions,
  .v7-final-actions .campaign-button {
    width: 100%;
  }

  .v7-footer-bottom {
    display: grid;
  }
}

/* ORQIA commercial V8 */
.v8 {
  --v8-ink: #172144;
  --v8-muted: #5d6b7c;
  --v8-dark: #07101f;
  --v8-deep: #0a1628;
  --v8-line: rgba(16, 24, 40, 0.11);
  --v8-blue: #2a2e99;
  --v8-cyan: #4ec6f2;
  --v8-aqua: #38fffc;
  --v8-green: #48d884;
  --v8-amber: #f4a340;
  --v8-red: #ff6470;
  min-height: 100vh;
  overflow-x: hidden;
  background: #f6f9fc;
  color: var(--v8-ink);
  font-family: Inter, Aptos, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.v8 h1,
.v8 h2,
.v8 h3 {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.v8-container {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.v8-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 60;
  display: grid;
  width: min(1120px, calc(100vw - 32px));
  min-height: 62px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 16, 31, 0.82);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  padding: 8px;
}

.v8-brand,
.v8-nav,
.v8-nav-actions,
.v8-actions {
  display: flex;
  align-items: center;
}

.v8-brand {
  min-width: 0;
  padding-left: 10px;
  color: #fff;
  font-weight: 900;
}

.v8-brand img {
  display: block;
  width: 150px;
  height: auto;
}

.v8-brand span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--v8-blue), var(--v8-cyan));
  color: #fff;
}

.v8-nav {
  justify-content: center;
  gap: 2px;
}

.v8-nav a,
.v8-text-link,
.v8-mobile-link,
.v8-menu-toggle {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 760;
  padding: 0 11px;
}

.v8-nav a:hover,
.v8-nav a.is-active,
.v8-text-link:hover,
.v8-mobile-link:hover,
.v8-menu-toggle:hover,
.v8-menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.v8-mobile-link,
.v8-menu-toggle {
  display: none;
}

.v8-menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  gap: 8px;
}

.v8-menu-toggle i,
.v8-menu-toggle i::before,
.v8-menu-toggle i::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.v8-menu-toggle i {
  position: relative;
}

.v8-menu-toggle i::before,
.v8-menu-toggle i::after {
  position: absolute;
  left: 0;
}

.v8-menu-toggle i::before {
  top: -5px;
}

.v8-menu-toggle i::after {
  top: 5px;
}

.v8-mobile-menu {
  position: fixed;
  top: 86px;
  left: 50%;
  z-index: 59;
  display: grid;
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  overscroll-behavior: contain;
  gap: 4px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 16, 31, 0.94);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  padding: 12px;
}

.v8-mobile-menu[hidden] {
  display: none;
}

.v8-mobile-menu a {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 820;
  padding: 0 14px;
}

.v8-mobile-menu a:hover,
.v8-mobile-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.v8-nav-actions {
  justify-content: flex-end;
  gap: 8px;
}

.v8-studio-link {
  gap: 7px;
}

.v8-login-icon {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
}

.v8-login-icon .v8-card-icon {
  width: 18px;
  height: 18px;
  margin: 0;
  stroke-width: 2;
}

.v8-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1;
  padding: 0 18px;
  white-space: nowrap;
}

.v8-button-primary {
  background: linear-gradient(135deg, var(--v8-blue), #0a6ed1);
  color: #fff;
  box-shadow: 0 14px 34px rgba(10, 110, 209, 0.25);
}

.v8-menu-open {
  overflow: hidden;
}

.admin-bar .v8-mobile-menu {
  top: 118px;
  max-height: calc(100vh - 136px);
}

@media (max-width: 782px) {
  .admin-bar .v8-mobile-menu {
    top: 132px;
    max-height: calc(100vh - 144px);
  }
}

.v8-button-secondary {
  border-color: rgba(16, 24, 40, 0.16);
  background: #fff;
  color: var(--v8-ink);
}

.v8-button-light {
  background: #fff;
  color: var(--v8-ink);
}

.v8-button:hover,
.v8-inline-link:hover,
.v8-footer a:hover {
  transform: translateY(-1px);
}

.v8-hero,
.v8-page-hero {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(110deg, #07101f 0%, #081b33 48%, #06312f 100%);
  color: #fff;
}

.v8-hero {
  min-height: 930px;
  display: flex;
  align-items: center;
  padding: 132px 0 86px;
}

.v8-page-hero {
  padding: 138px 0 76px;
}

.v8-bg-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.2) 82%, transparent 100%);
}

.v8-ring {
  position: absolute;
  top: 18%;
  right: 11%;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(24, 199, 189, 0.15);
  border-radius: 50%;
}

.v8-ring::before,
.v8-ring::after {
  position: absolute;
  border: 1px solid rgba(10, 110, 209, 0.17);
  border-radius: 50%;
  content: "";
}

.v8-ring::before {
  inset: 52px;
}

.v8-ring::after {
  inset: 104px;
}

.v8-hero-grid,
.v8-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.v8-hero-copy h1,
.v8-page-hero h1 {
  max-width: 790px;
  margin: 0;
  color: #fff;
  font-size: 4.8rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.v8-page-hero h1 {
  font-size: 3.95rem;
}

.v8-hero-copy > p:not(.v8-kicker),
.v8-page-hero p,
.v8-section-head p,
.v8-feature-grid > div > p,
.v8-final-box p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.16rem;
  line-height: 1.6;
}

.v8-section-head p,
.v8-feature-grid > div > p,
.v8-final-box p {
  color: var(--v8-muted);
}

.v8-hero-support {
  max-width: 620px;
}

.v8-kicker {
  margin: 0 0 14px;
  color: var(--v8-cyan);
  font-size: 0.82rem;
  font-weight: 920;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.v8-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.v8-actions.vertical {
  display: grid;
  min-width: 210px;
}

.v8-microcopy {
  display: block;
  max-width: 570px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  line-height: 1.5;
}

.v8-hero-visual {
  position: relative;
  min-width: 0;
}

.v8-window,
.v8-shot-card,
.v8-wide-shot,
.v8-collage figure,
.v8-shot-row figure,
.v8-page-sequence figure {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.v8-window {
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
}

.v8-window-top {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  background: #2d3745;
  padding: 0 14px;
}

.v8-window-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.v8-window-top span:nth-child(1) {
  background: var(--v8-cyan);
}

.v8-window-top span:nth-child(2) {
  background: var(--v8-blue);
}

.v8-window-top span:nth-child(3) {
  background: var(--v8-amber);
}

.v8-window-top strong {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.v8-window img,
.v8-shot-card img,
.v8-wide-shot img,
.v8-collage img,
.v8-shot-row img,
.v8-page-sequence img {
  width: 100%;
  height: auto;
}

.v8-window picture,
.v8-shot-card picture,
.v8-wide-shot picture,
.v8-collage picture,
.v8-shot-row picture,
.v8-page-sequence picture {
  display: block;
}

.v8-lightbox-target {
  cursor: zoom-in;
}

.v8-lightbox-target:focus-visible {
  outline: 3px solid var(--v8-cyan);
  outline-offset: 4px;
}

.v8-lightbox-open {
  overflow: hidden;
}

.v8-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(3, 9, 18, 0.64);
  backdrop-filter: blur(18px);
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
  padding: 28px;
}

.v8-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.v8-lightbox-frame {
  display: grid;
  width: min(1180px, calc(100vw - 56px));
  max-height: calc(100vh - 56px);
  gap: 12px;
  margin: 0;
}

.v8-lightbox-frame img {
  width: 100%;
  max-height: calc(100vh - 110px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.42);
  object-fit: contain;
}

.v8-lightbox-frame figcaption {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 760;
  text-align: center;
}

.v8-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #07101f;
  cursor: pointer;
  font-weight: 880;
  padding: 0 14px;
}

.v8-signal-card {
  position: absolute;
  width: 210px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 16, 31, 0.78);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  padding: 16px;
}

.v8-signal-card.one {
  left: -22px;
  bottom: 18%;
}

.v8-signal-card.two {
  right: -10px;
  top: 18%;
}

.v8-signal-card small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 850;
}

.v8-signal-card strong {
  display: block;
  line-height: 1.25;
}

.v8-section {
  padding: 92px 0;
}

.v8-soft {
  background: #eef5fb;
}

.v8-dark-panel {
  background: var(--v8-dark);
  color: #fff;
}

.v8-section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.v8-section-head.narrow {
  max-width: 850px;
}

.v8-section h2,
.v8-feature-grid h2,
.v8-final-box h2,
.v8-page-sequence h2 {
  margin: 0;
  color: var(--v8-ink);
  font-size: 2.8rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.v8-dark-panel h2,
.v8-dark-panel .v8-section-head p,
.v8-dark-panel .v8-feature-grid > div > p {
  color: #fff;
}

.v8-dark-panel .v8-section-head p,
.v8-dark-panel .v8-feature-grid > div > p {
  color: rgba(255, 255, 255, 0.72);
}

.v8-card-grid {
  display: grid;
  gap: 16px;
}

.v8-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v8-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v8-card {
  min-height: 208px;
  border: 1px solid var(--v8-line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.v8-card.dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.v8-card h2,
.v8-card h3,
.v8-mini-grid h3,
.v8-list-grid h2,
.v8-list-grid h3,
.v8-process-track h3,
.v8-page-sequence h2 {
  margin: 0 0 10px;
  color: var(--v8-ink);
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.v8-card.dark h3,
.v8-dark-panel .v8-card h2,
.v8-dark-panel .v8-card h3,
.v8-dark-panel .v8-feature-grid h2 {
  color: #fff;
}

.v8-card p,
.v8-mini-grid p,
.v8-list-grid p,
.v8-process-track p,
.v8-page-sequence p {
  margin: 0;
  color: var(--v8-muted);
  line-height: 1.58;
}

.v8-card.dark p,
.v8-dark-panel .v8-card p,
.v8-dark-panel .v8-page-sequence p {
  color: rgba(255, 255, 255, 0.68);
}

.v8-card-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--v8-cyan);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v8-card:not(.dark) .v8-card-icon,
.v8-mini-grid .v8-card-icon,
.v8-list-grid .v8-card-icon {
  color: var(--v8-blue);
}

.v8-feature-grid,
.v8-faq-grid,
.v8-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.v8-feature-grid.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.v8-shot-card {
  padding: 12px;
  background: #0b1728;
}

.v8-shot-card figcaption,
.v8-wide-shot figcaption {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 760;
  padding: 12px 4px 2px;
}

.v8-mini-grid,
.v8-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.v8-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v8-mini-grid article,
.v8-list-grid article {
  border: 1px solid var(--v8-line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.v8-process-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.v8-process-track article {
  min-height: 206px;
  border: 1px solid var(--v8-line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.v8-process-track span,
.v8-page-sequence span {
  display: block;
  margin-bottom: 16px;
  color: var(--v8-blue);
  font-weight: 940;
}

.v8-shot-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.v8-shot-row figure {
  background: #0b1728;
  padding: 8px;
}

.v8-inline-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--v8-blue);
  font-weight: 880;
}

.v8-card-grid.compact {
  margin-top: 16px;
}

.v8-edition-preview,
.v8-editions-grid,
.v8-pricing-grid {
  display: grid;
  gap: 16px;
}

.v8-edition-preview,
.v8-pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v8-editions-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.v8-edition-card,
.v8-edition-detail,
.v8-pricing-card {
  border: 1px solid var(--v8-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(13, 23, 40, 0.07);
  padding: 28px;
}

.v8-edition-card span,
.v8-edition-detail span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--v8-blue);
  font-size: 0.8rem;
  font-weight: 920;
  text-transform: uppercase;
}

.v8-edition-card h3,
.v8-edition-detail h2,
.v8-pricing-card h3 {
  margin: 0 0 12px;
  color: var(--v8-ink);
  font-size: 1.55rem;
  line-height: 1.14;
}

.v8-edition-card p,
.v8-edition-detail p,
.v8-pricing-card p {
  margin: 0;
  color: var(--v8-muted);
  line-height: 1.6;
}

.v8-edition-card strong,
.v8-pricing-card strong {
  display: block;
  margin-top: 20px;
  color: var(--v8-ink);
  line-height: 1.35;
}

.v8-edition-detail.highlight {
  border-color: rgba(10, 110, 209, 0.24);
  background:
    linear-gradient(180deg, rgba(10, 110, 209, 0.08), rgba(24, 199, 189, 0.04)),
    #fff;
}

.v8-edition-detail ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
}

.v8-edition-detail li {
  list-style: none;
  color: var(--v8-muted);
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}

.v8-edition-detail li::before {
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v8-blue), var(--v8-cyan));
  content: "";
}

.v8-pricing-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.v8-pricing-card span {
  color: var(--v8-blue);
  font-size: 0.8rem;
  font-weight: 920;
  text-transform: uppercase;
}

.v8-pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.v8-pricing-card li {
  list-style: none;
  color: var(--v8-muted);
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}

.v8-pricing-card li::before {
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v8-blue), var(--v8-cyan));
  content: "";
}

.v8-pricing-card-large,
.v8-pricing-card-home {
  min-height: 100%;
}

.v8-price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 6px;
}

.v8-price-line strong {
  margin: 0;
  color: var(--v8-ink);
  font-size: 2.1rem;
  line-height: 1.18;
}

.v8-price-line small,
.v8-plan-note,
.v8-commercial-note {
  color: var(--v8-muted);
  line-height: 1.5;
}

.v8-plan-note {
  margin: -6px 0 0;
  font-weight: 760;
}

.v8-volume-table {
  overflow: hidden;
  border: 1px solid var(--v8-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(13, 23, 40, 0.06);
}

.v8-volume-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--v8-line);
  color: var(--v8-muted);
  padding: 18px 22px;
}

.v8-volume-row:first-child {
  border-top: 0;
}

.v8-volume-row.is-head {
  background: #0c1b2c;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.v8-volume-row strong {
  color: var(--v8-ink);
}

.v8-volume-row.is-head strong {
  color: #fff;
}

.v8-commercial-note {
  max-width: 820px;
  margin: 18px 0 0;
  font-weight: 760;
}

.v8-control-shots {
  display: grid;
  gap: 16px;
}

.v8-wide-shot {
  margin: 28px 0 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.v8-faq-list {
  display: grid;
  gap: 10px;
}

.v8-faq-list details {
  overflow: hidden;
  border: 1px solid var(--v8-line);
  border-radius: 8px;
  background: #fff;
}

.v8-faq-list summary {
  cursor: pointer;
  list-style: none;
  color: var(--v8-ink);
  font-size: 1.04rem;
  font-weight: 850;
  padding: 20px 22px;
}

.v8-faq-list summary::-webkit-details-marker {
  display: none;
}

.v8-faq-list p {
  margin: 0;
  color: var(--v8-muted);
  line-height: 1.62;
  padding: 0 22px 20px;
}

.v8-final {
  padding: 0 0 92px;
  background: #f6f9fc;
}

.v8-final-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(10, 110, 209, 0.24), rgba(24, 199, 189, 0.18)),
    #07101f;
  color: #fff;
  padding: 42px;
}

.v8-final-box h2 {
  color: #fff;
}

.v8-final-box p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.v8-page-sequence {
  display: grid;
  gap: 24px;
}

.v8-sequence-item {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid var(--v8-line);
  padding-bottom: 24px;
}

.v8-sequence-item.reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
}

.v8-sequence-item.reverse > div {
  order: 2;
}

.v8-sequence-item figure {
  position: relative;
  margin: 0;
  background: #0b1728;
  padding: 10px;
}

.v8-sequence-item figure.has-notice {
  overflow: visible;
}

.v8-toast-card {
  position: absolute;
  right: 18px;
  top: 18px;
  width: min(270px, calc(100% - 36px));
  border: 1px solid rgba(72, 216, 132, 0.34);
  border-radius: 8px;
  background: rgba(7, 16, 31, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  color: #fff;
  padding: 16px;
}

.v8-toast-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--v8-green);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.v8-toast-card strong {
  display: block;
  line-height: 1.2;
}

.v8-toast-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.v8-collage {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  grid-template-rows: repeat(2, minmax(180px, auto));
  gap: 14px;
}

.v8-collage figure {
  margin: 0;
  background: #0b1728;
  padding: 10px;
}

.v8-collage figure:first-child {
  grid-row: span 2;
}

.v8-contact-card,
.v8-contact-form {
  border: 1px solid var(--v8-line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
}

.v8-contact-card span {
  color: var(--v8-blue);
  font-weight: 900;
}

.v8-contact-card a {
  display: block;
  margin: 14px 0;
  color: var(--v8-ink);
  font-size: 2.2rem;
  font-weight: 920;
  line-height: 1.05;
}

.v8-contact-card p {
  color: var(--v8-muted);
  line-height: 1.6;
}

.v8-legal-hero {
  min-height: auto;
}

.v8-legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 44px;
  align-items: center;
}

.v8-legal-summary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 16, 31, 0.58);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.22);
  padding: 28px;
}

.v8-legal-summary span {
  color: var(--v8-cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.v8-legal-summary p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.v8-legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.v8-legal-index {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--v8-line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.v8-legal-index strong {
  color: var(--v8-ink);
  font-size: 0.88rem;
  font-weight: 920;
  text-transform: uppercase;
}

.v8-legal-index a {
  color: var(--v8-muted);
  font-size: 0.92rem;
  line-height: 1.35;
  text-decoration: none;
}

.v8-legal-index a:hover {
  color: var(--v8-blue);
}

.v8-legal-body {
  display: grid;
  gap: 24px;
}

.v8-legal-body > section {
  border: 1px solid var(--v8-line);
  border-radius: 8px;
  background: #fff;
  padding: 30px;
}

.v8-legal-body h2 {
  margin: 0 0 14px;
  color: var(--v8-ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.14;
}

.v8-legal-body p {
  margin: 12px 0 0;
  color: var(--v8-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.v8-legal-references div {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.v8-legal-references a {
  color: var(--v8-blue);
  font-weight: 800;
  text-decoration: none;
}

.v8-contact-form {
  display: grid;
  gap: 14px;
}

.v8-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--v8-ink);
  font-weight: 820;
}

.v8-contact-form input,
.v8-contact-form textarea {
  width: 100%;
  border: 1px solid #cfd9e6;
  border-radius: 8px;
  background: #f9fbfd;
  color: var(--v8-ink);
  padding: 12px 14px;
}

.v8-footer {
  background: #07101f;
  color: #fff;
  padding: 58px 0 26px;
}

.v8-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.v8-footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 940;
}

.v8-footer-brand img {
  display: block;
  width: 170px;
  height: auto;
}

.v8-footer p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.56;
}

.v8-footer-line {
  color: rgba(255, 255, 255, 0.5);
}

.v8-footer-column h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.96rem;
}

.v8-footer-column a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.v8-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  padding-top: 20px;
}

.v8-footer-bottom a {
  color: var(--v8-cyan);
  font-weight: 850;
}

@media (max-width: 1180px) {
  .v8-header {
    left: 16px;
    right: 16px;
    width: auto;
    grid-template-columns: 1fr auto;
    transform: none;
  }

  .v8-nav {
    display: none;
  }

  .v8-nav-actions > .v8-button,
  .v8-text-link {
    display: none;
  }

  .v8-mobile-link,
  .v8-menu-toggle {
    display: inline-flex;
  }

  .v8-nav-actions {
    min-width: 0;
    justify-content: flex-end;
  }

  .v8-hero-grid,
  .v8-page-hero-grid,
  .v8-feature-grid,
  .v8-feature-grid.reverse,
  .v8-faq-grid,
  .v8-contact-grid,
  .v8-legal-hero-grid,
  .v8-legal-layout,
  .v8-final-box,
  .v8-sequence-item,
  .v8-sequence-item.reverse {
    grid-template-columns: 1fr;
  }

  .v8-sequence-item.reverse > div {
    order: 0;
  }

  .v8-window {
    transform: none;
  }

  .v8-card-grid.four,
  .v8-card-grid.three,
  .v8-edition-preview,
  .v8-editions-grid,
  .v8-pricing-grid,
  .v8-process-track,
  .v8-shot-row,
  .v8-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .v8-header {
    top: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    min-height: 58px;
    grid-template-columns: 1fr auto;
    gap: 8px;
    transform: none;
  }

  .v8-text-link {
    display: none;
  }

  .v8-brand img {
    width: 122px;
  }

  .v8-mobile-link,
  .v8-menu-toggle {
    display: inline-flex;
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.84rem;
  }

  .v8-nav-actions > .v8-button {
    display: none;
  }

  .v8-mobile-menu {
    left: 10px;
    right: 10px;
    top: 76px;
    width: auto;
    max-height: calc(100vh - 88px);
    transform: none;
  }

  .v8-button {
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.88rem;
  }

  .v8-hero {
    min-height: auto;
    padding: 116px 0 64px;
  }

  .v8-page-hero {
    padding: 112px 0 64px;
  }

  .v8-hero-grid,
  .v8-page-hero-grid {
    gap: 32px;
  }

  .v8-hero-copy h1,
  .v8-page-hero h1 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .v8-page-hero h1 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .v8-page-hero h1 + p {
    margin-top: 18px;
  }

  .v8-section h2,
  .v8-feature-grid h2,
  .v8-final-box h2 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .v8-edition-detail h2,
  .v8-pricing-card h3 {
    font-size: 1.55rem;
    line-height: 1.16;
  }

  .v8-hero-copy > p:not(.v8-kicker),
  .v8-page-hero p,
  .v8-section-head p,
  .v8-feature-grid > div > p,
  .v8-final-box p {
    font-size: 1rem;
  }

  .v8-section {
    padding: 68px 0;
  }

  .v8-card-grid.four,
  .v8-card-grid.three,
  .v8-edition-preview,
  .v8-editions-grid,
  .v8-pricing-grid,
  .v8-process-track,
  .v8-shot-row,
  .v8-mini-grid,
  .v8-list-grid,
  .v8-footer-grid,
  .v8-collage {
    grid-template-columns: 1fr;
  }

  .v8-card,
  .v8-process-track article {
    min-height: auto;
  }

  .v8-signal-card {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .v8-final-box,
  .v8-contact-card,
  .v8-contact-form {
    padding: 24px;
  }

  .v8-contact-card a {
    font-size: 1.75rem;
  }

  .v8-legal-index {
    position: static;
  }

  .v8-legal-body > section,
  .v8-legal-summary {
    padding: 22px;
  }

  .v8-actions.vertical,
  .v8-actions.vertical .v8-button,
  .v8-final-box .v8-button {
    width: 100%;
  }

  .v8-footer-bottom {
    display: grid;
  }

  .v8-footer-brand img {
    width: 150px;
  }

  .v8-price-line {
    display: grid;
    gap: 4px;
  }

  .v8-volume-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .v8-header {
    left: 10px;
    right: 10px;
    width: auto;
    grid-template-columns: 1fr auto;
    transform: none;
  }

  .v8-nav-actions {
    min-width: 0;
    justify-content: flex-end;
  }

  .v8-mobile-link {
    display: none;
  }

  .v8-nav-actions > .v8-button {
    display: none;
  }

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

  .v8-mobile-menu {
    left: 10px;
    right: 10px;
    width: auto;
    transform: none;
  }
}
