@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --navy: #001a28;
  --navy-dark: #000f19;
  --teal: #00c3f3;
  --gold: #0183d1;
  --ink: #001a28;
  --muted: #385468;
  --soft: #f1f6fa;
  --white: #ffffff;
  --page-bg: #f3f8fb;
  --page-grad-start: #f7fbff;
  --page-grad-end: #eef4fa;
  --soft-border: #d9e6f1;
  --surface-gradient: #eef6fb;
  --section-gradient-start: #f1f7fc;
  --section-gradient-end: #e6eff6;
  --cta-blue: #013b5c;
  --footer-bg: #00131f;
  --white-72: rgba(255, 255, 255, 0.72);
  --white-80: rgba(255, 255, 255, 0.8);
  --white-04: rgba(255, 255, 255, 0.04);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-12: rgba(255, 255, 255, 0.12);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-06: rgba(255, 255, 255, 0.06);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-70: rgba(255, 255, 255, 0.7);
  --navy-92: rgba(0, 26, 40, 0.92);
  --navy-85: rgba(0, 26, 40, 0.85);
  --navy-70: rgba(0, 26, 40, 0.7);
  --navy-50: rgba(0, 26, 40, 0.5);
  --navy-30: rgba(0, 26, 40, 0.3);
  --navy-08: rgba(0, 26, 40, 0.08);
  --navy-14: rgba(0, 26, 40, 0.14);
  --navy-06: rgba(0, 26, 40, 0.06);
  --navy-22: rgba(0, 26, 40, 0.22);
  --teal-35: rgba(1, 131, 209, 0.35);
  --teal-65: rgba(1, 131, 209, 0.65);
  --teal-20: rgba(1, 131, 209, 0.2);
  --teal-85: rgba(1, 131, 209, 0.85);
  --teal-12: rgba(1, 131, 209, 0.12);
  --teal-18: rgba(1, 131, 209, 0.18);
  --teal-08: rgba(1, 131, 209, 0.08);
  --gold-12: rgba(1, 131, 209, 0.12);
  --blue-15: rgba(1, 131, 209, 0.15);
  --blue-35: rgba(1, 131, 209, 0.35);
  --blue-55: rgba(1, 131, 209, 0.55);
  --transparent: rgba(0, 0, 0, 0);
  --shadow: 0 18px 42px var(--navy-14);
  --shadow-soft: 0 10px 24px var(--navy-08);
  --shadow-strong: 0 24px 64px var(--navy-22);
  --shadow-card: 0 16px 34px var(--navy-08);
}

body {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--page-grad-start), var(--page-grad-end));
  line-height: 1.55;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
}

main {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
  z-index: 100;
}

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

.display-4 {
  font-size: clamp(2.05rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.display-6 {
  font-size: clamp(1.75rem, 2.7vw, 2.2rem);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--navy-85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--white-10);
  box-shadow: 0 12px 30px var(--navy-14);
}

.navbar {
  padding: 14px 0;
}

.navbar .nav-link {
  color: var(--white-72);
  font-weight: 500;
  position: relative;
  padding: 0.35rem 0;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--white);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.2s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after {
  width: 100%;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: var(--navy);
  font-weight: 700;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.brand-text {
  color: var(--white);
  font-weight: 600;
}

.btn-brand {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: var(--navy);
  border: none;
  font-weight: 600;
  box-shadow: 0 12px 26px var(--teal-35);
}

.site-header .btn-brand {
  box-shadow: none;
}

.btn {
  border-radius: 999px;
  padding: 0.68rem 1.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-lg {
  padding: 0.82rem 1.7rem;
}

.btn-outline-light {
  border-color: var(--white-40);
  color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-dark {
  border-color: var(--navy-14);
  color: var(--navy);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background: var(--navy);
  color: var(--white);
}

.btn-brand:hover,
.btn-brand:focus {
  color: var(--navy);
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px var(--teal-35);
}

.hero-section {
  position: relative;
  padding: 108px 0 96px;
  color: var(--white);
  background-image: radial-gradient(circle at 15% 10%, var(--blue-35), var(--transparent) 48%),
    radial-gradient(circle at 85% 20%, var(--teal-35), var(--transparent) 40%),
    linear-gradient(135deg, var(--navy), var(--navy-dark));
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-section::before {
  inset: 0;
  background-image: linear-gradient(var(--white-08) 1px, var(--transparent) 1px),
    linear-gradient(90deg, var(--white-08) 1px, var(--transparent) 1px);
  background-size: 160px 160px;
  opacity: 0.12;
}

.hero-section::after {
  width: 520px;
  height: 520px;
  right: -180px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-55), var(--transparent) 60%);
  opacity: 0.35;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--white-12);
  border: 1px solid var(--white-15);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white-80);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 14px;
  background: var(--white-08);
  border: 1px solid var(--white-15);
  color: var(--white);
  backdrop-filter: blur(14px);
  font-size: 0.95rem;
}

.hero-point i {
  color: var(--teal);
}

.hero-section .lead {
  color: var(--white-80);
  max-width: 580px;
  font-size: 1.05rem;
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, var(--white-15), var(--white-08));
  border: 1px solid var(--white-20);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.status-pill {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--teal-20);
  color: var(--teal);
  font-weight: 600;
  font-size: 0.82rem;
}

.hero-card-body {
  position: relative;
}

.scan-line {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--transparent), var(--teal-85), var(--transparent));
  animation: scan 3.5s linear infinite;
  margin-bottom: 18px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--white-10);
  gap: 16px;
  font-size: 0.95rem;
}

.metric-row:last-of-type {
  border-bottom: none;
}

.hero-card-summary {
  margin: 18px 0 0;
  padding-top: 18px;
  color: var(--white-80);
  border-top: 1px solid var(--white-10);
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.trust-section {
  padding: 60px 0;
  background: var(--white);
}

.trust-card {
  border: 1px solid var(--soft-border);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
}

.section-padding {
  padding: 88px 0;
}

.section-title {
  font-size: clamp(1.7rem, 2.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
}

.feature-card,
.step-card,
.surface-card,
.highlight-card,
.testimonial-card,
.stat-highlight {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.feature-card {
  border: 1px solid var(--soft-border);
  background: linear-gradient(180deg, var(--white), var(--section-gradient-start));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card p {
  color: var(--muted);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px var(--navy-14);
}

.screen-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.screen-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px var(--navy-14);
}

.screen-trigger {
  border: none;
  padding: 0;
  background: var(--white);
  width: 100%;
  display: block;
  text-align: left;
  cursor: zoom-in;
}

.screen-trigger:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.screen-image {
  width: 100%;
  height: clamp(220px, 26vw, 300px);
  object-fit: contain;
  object-position: center;
  display: block;
}

.screen-body {
  padding: 18px 20px 22px;
}

.screen-body h3 {
  font-weight: 700;
}

.screen-body p {
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: var(--navy-85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1055;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-dialog {
  position: relative;
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  max-width: min(1000px, 92vw);
  max-height: 90vh;
  box-shadow: var(--shadow-strong);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-dialog {
  max-width: min(900px, 92vw);
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: 1px solid var(--soft-border);
  background: var(--navy);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px var(--navy-22);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--soft-border);
}

.lightbox-caption {
  margin: 0;
  color: var(--muted);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
}

.lightbox-close:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--teal-12);
  color: var(--gold);
  font-size: 1.3rem;
}

.bg-soft {
  background: linear-gradient(180deg, var(--soft), var(--page-bg));
}

.step-card {
  border-top: 3px solid var(--gold);
  background: linear-gradient(180deg, var(--white), var(--surface-gradient));
}

.importance-section {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  padding-bottom: 26px;
}

.importance-shell {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--soft-border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.importance-title {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.importance-card {
  height: 100%;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--white), var(--surface-gradient));
  border: 1px solid var(--soft-border);
}

.importance-card h3 {
  margin: 12px 0 8px;
  font-weight: 700;
}

.importance-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.importance-label {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold-12);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.step-number {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.surface-card {
  background: linear-gradient(135deg, var(--white), var(--surface-gradient));
}

.surface-card .bi {
  color: var(--gold);
  font-size: 1.2rem;
}

.pricing-card {
  position: relative;
}

.pricing-card ul li {
  display: flex;
  align-items: center;
}

.pricing-featured {
  background: linear-gradient(160deg, #072032, #10374a);
  color: var(--white);
  border: 1px solid var(--white-08);
  box-shadow: 0 24px 56px var(--navy-22);
  transform: translateY(-4px);
}

.pricing-featured .text-muted {
  color: var(--white-70) !important;
}

.pricing-featured p,
.pricing-featured li {
  color: var(--white-80);
}

.pricing-featured h3 {
  color: var(--white);
}

.pricing-featured .btn-brand {
  box-shadow: 0 18px 40px var(--teal-35);
}

.app-landing .section-title {
  max-width: 480px;
}

.app-header {
  background: var(--navy-85);
}

.app-hero {
  position: relative;
  padding: 150px 0 120px;
  color: var(--white);
  background-image: radial-gradient(circle at 12% 8%, var(--blue-35), var(--transparent) 45%),
    radial-gradient(circle at 85% 18%, var(--teal-35), var(--transparent) 40%),
    linear-gradient(135deg, var(--navy), var(--navy-dark));
  overflow: hidden;
}

.app-hero::before,
.app-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.app-hero::before {
  inset: 0;
  background-image: linear-gradient(var(--white-04) 1px, var(--transparent) 1px),
    linear-gradient(90deg, var(--white-04) 1px, var(--transparent) 1px);
  background-size: 160px 160px;
  opacity: 0.4;
}

.app-hero::after {
  width: 520px;
  height: 520px;
  right: -200px;
  bottom: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-65), var(--transparent) 62%);
  opacity: 0.6;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--white-12);
  border: 1px solid var(--white-15);
  font-size: 0.9rem;
}

.app-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.app-stat {
  background: var(--white-08);
  border: 1px solid var(--white-15);
  border-radius: 16px;
  padding: 12px 16px;
  display: grid;
  gap: 4px;
  min-width: 140px;
}

.app-stat strong {
  font-size: 1.2rem;
}

.app-stat span {
  color: var(--white-80);
  font-size: 0.9rem;
}

.app-screen-stack {
  display: grid;
  gap: 18px;
}

.app-hero-carousel .carousel {
  border-radius: 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-strong);
}

.app-carousel-trigger {
  border: none;
  padding: 0;
  background: var(--white);
  width: 100%;
  display: block;
  cursor: zoom-in;
}

.app-carousel-trigger:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.app-carousel-image {
  width: 100%;
  height: clamp(260px, 30vw, 360px);
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--white);
}

.app-carousel-caption {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--soft-border);
  background: var(--white);
}

.app-carousel-caption h3 {
  margin-bottom: 6px;
}

.app-carousel-caption p {
  color: var(--muted);
  margin-bottom: 0;
}

.app-hero-carousel .carousel-indicators [data-bs-target] {
  background-color: var(--white);
  opacity: 0.5;
}

.app-hero-carousel .carousel-indicators .active {
  opacity: 1;
}

.app-screen-card {
  background: var(--white);
  border-radius: 24px;
  padding: 16px;
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-screen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px var(--navy-14);
}

.app-screen-card.is-primary {
  transform: translateY(-10px);
}

.app-screen-card.is-secondary {
  transform: translateY(6px);
}

.app-screen-trigger {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
}

.app-screen-image {
  width: 100%;
  height: clamp(190px, 18vw, 230px);
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--soft-border);
}

.app-screen-meta {
  padding: 16px 6px 6px;
}

.app-screen-meta p {
  color: var(--muted);
  margin-bottom: 0;
}

.app-feature-card {
  background: linear-gradient(180deg, var(--white), var(--section-gradient-start));
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-card);
  height: 100%;
}

.app-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal-12), var(--gold-12));
  color: var(--gold);
  font-size: 1.3rem;
}

.app-flow-card {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-card);
  height: 100%;
}

.app-flow-number {
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.app-cta .lead {
  color: var(--white-80);
}

.tech-header {
  background: transparent;
}

.tech-landing .site-header {
  position: absolute;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--white-10);
  box-shadow: none;
}

.tech-hero {
  position: relative;
  padding: 170px 0 130px;
  color: var(--white);
  background-image: radial-gradient(circle at 18% 12%, var(--blue-35), var(--transparent) 50%),
    radial-gradient(circle at 78% 18%, var(--teal-35), var(--transparent) 45%),
    linear-gradient(135deg, var(--navy), var(--navy-dark));
  overflow: hidden;
}

.tech-hero::before,
.tech-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tech-hero::before {
  inset: 0;
  background-image: linear-gradient(var(--white-04) 1px, var(--transparent) 1px),
    linear-gradient(90deg, var(--white-04) 1px, var(--transparent) 1px);
  background-size: 160px 160px;
  opacity: 0.4;
}

.tech-hero::after {
  width: 520px;
  height: 520px;
  right: -200px;
  bottom: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-65), var(--transparent) 62%);
  opacity: 0.6;
}

.tech-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--white-70);
  margin-bottom: 0;
}

.tech-hero .lead {
  color: var(--white-80);
}

.tech-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tech-kpi {
  background: var(--white-08);
  border: 1px solid var(--white-15);
  border-radius: 16px;
  padding: 12px 16px;
  min-width: 140px;
}

.tech-kpi strong {
  display: block;
  font-size: 1.2rem;
}

.tech-kpi span {
  color: var(--white-80);
  font-size: 0.9rem;
}

.tech-hero-panel {
  background: var(--white);
  border-radius: 26px;
  padding: 18px;
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-strong);
}

.tech-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.tech-panel-tag {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.tech-panel-status {
  background: var(--teal-12);
  color: var(--gold);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 600;
  font-size: 0.75rem;
}

.tech-panel-trigger {
  border: none;
  padding: 0;
  width: 100%;
  background: var(--white);
  display: block;
  cursor: zoom-in;
}

.tech-panel-trigger:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.tech-hero-image {
  width: 100%;
  height: clamp(260px, 32vw, 420px);
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--soft-border);
  background: var(--white);
}

.tech-panel-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tech-panel-footer span {
  background: var(--section-gradient-start);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
}

.tech-strip {
  margin-top: -40px;
  padding: 20px 0 40px;
  position: relative;
  z-index: 2;
}

.tech-strip-card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--soft-border);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.tech-strip-card i {
  font-size: 1.3rem;
  color: var(--gold);
}

.tech-strip-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.tech-section {
  background: linear-gradient(180deg, var(--white), var(--section-gradient-start));
}

.tech-feature-card {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-card);
  height: 100%;
}

.tech-feature-card p {
  color: var(--muted);
}

.tech-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal-12), var(--gold-12));
  color: var(--gold);
  font-size: 1.35rem;
}

.tech-split {
  background: var(--soft);
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.tech-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.tech-list i {
  color: var(--gold);
}

.tech-visual {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--soft-border);
  padding: 16px;
  box-shadow: var(--shadow-card);
}

.tech-visual-image {
  width: 100%;
  height: clamp(260px, 28vw, 360px);
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  border: 1px solid var(--soft-border);
  background: var(--white);
}

.tech-timeline {
  position: relative;
  padding-left: 24px;
  display: grid;
  gap: 24px;
}

.tech-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--soft-border);
}

.tech-timeline-item {
  position: relative;
  padding-left: 16px;
}

.tech-timeline-item::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px var(--gold-12);
}

.tech-timeline-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.tech-cta .lead {
  color: var(--white-80);
}

.stat-card {
  padding: 16px;
  border-radius: 14px;
  background: var(--teal-18);
  text-align: left;
}

.stat-card strong {
  display: block;
  font-size: 1.3rem;
}

.stat-card span {
  color: var(--white-70);
  font-size: 0.9rem;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--section-gradient-start) 0%, var(--section-gradient-end) 100%);
}

.stat-highlight h3 {
  font-size: 2.4rem;
}

.stat-highlight-text h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

.stat-highlight-text p {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonial-card {
  background: var(--white);
}

.testimonial-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-pill {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--soft-border);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}

.cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--navy), var(--cta-blue));
  color: var(--white);
}

.cta-section .row {
  padding: 12px 0;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-point {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--white-08);
  border: 1px solid var(--white-15);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}

.site-footer {
  padding: 60px 0 30px;
  background: var(--footer-bg);
  color: var(--white-70);
}

.site-footer .brand-text {
  color: var(--white);
}

.footer-link {
  color: var(--white-70);
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--white-10);
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0ms;
}

[data-animate].delay-100 {
  transition-delay: 100ms;
}

[data-animate].delay-120 {
  transition-delay: 120ms;
}

[data-animate].delay-150 {
  transition-delay: 150ms;
}

[data-animate].delay-200 {
  transition-delay: 200ms;
}

[data-animate].delay-220 {
  transition-delay: 220ms;
}

[data-animate].delay-250 {
  transition-delay: 250ms;
}

[data-animate].delay-300 {
  transition-delay: 300ms;
}

[data-animate].delay-320 {
  transition-delay: 320ms;
}

[data-animate].delay-350 {
  transition-delay: 350ms;
}

[data-animate].delay-400 {
  transition-delay: 400ms;
}

[data-animate].delay-450 {
  transition-delay: 450ms;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scan {
  0% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(12px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
}

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

@media (max-width: 991px) {
  .site-header {
    position: relative;
  }

  .pricing-featured {
    transform: none;
  }

  .navbar .d-flex {
    flex-direction: column;
    align-items: stretch;
    margin-top: 12px;
    gap: 8px;
  }

  .navbar .btn-link {
    text-align: left;
    padding-left: 0;
  }

  .hero-section {
    padding-top: 90px;
  }

  .app-screen-card.is-primary,
  .app-screen-card.is-secondary {
    transform: none;
  }

  .tech-landing .site-header {
    position: relative;
  }

  .tech-strip {
    margin-top: 0;
  }

  .importance-section {
    margin-top: -26px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 64px 0;
  }

  .hero-section {
    padding: 88px 0 76px;
  }

  .hero-section .btn-lg {
    width: 100%;
  }

  .hero-card {
    margin-top: 16px;
  }

  .importance-shell {
    padding: 22px;
  }

  .lightbox-dialog {
    padding: 18px;
  }

  .app-hero {
    padding: 120px 0 90px;
  }

  .app-stat {
    min-width: 100%;
  }

  .tech-hero {
    padding: 130px 0 90px;
  }

  .tech-kpi {
    min-width: 100%;
  }

  .hero-points,
  .cta-points {
    gap: 10px;
  }

  .hero-point,
  .cta-point {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 12px;
    transform: none;
  }
}

/* GTM landing page */
.lp-homepage {
  background: #f4f6f8;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(0, 26, 40, 0.9);
  border-bottom: 1px solid var(--white-10);
  backdrop-filter: blur(16px);
}

.lp-nav {
  min-height: 84px;
  display: flex;
  align-items: center;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
}

.lp-nav-toggle {
  margin-left: auto;
}

.lp-nav-collapse {
  align-items: center;
}

.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 56px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(1, 131, 209, 0.2), rgba(0, 0, 0, 0) 40%),
    radial-gradient(circle at 85% 16%, rgba(1, 131, 209, 0.22), rgba(0, 0, 0, 0) 36%),
    linear-gradient(135deg, #001a28 0%, #01263a 55%, #00131f 100%);
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.18;
  pointer-events: none;
}

.lp-eyebrow,
.lp-section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-section-kicker {
  background: rgba(1, 131, 209, 0.08);
  border-color: rgba(1, 131, 209, 0.12);
  color: var(--gold);
}

.lp-hero-title {
  max-width: 11ch;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin: 0;
}

.lp-hero-subtitle {
  max-width: 620px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.lp-hero-form-shell,
.lp-final-cta .public-scan-form {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.lp-hero-actions .btn {
  white-space: normal;
}

.lp-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lp-proof-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.lp-proof-item span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.lp-hero-preview {
  display: grid;
  gap: 16px;
}

.lp-preview-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lp-preview-card span,
.lp-preview-card small {
  display: block;
}

.lp-preview-card span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.lp-preview-card strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 2rem;
  line-height: 1;
}

.lp-preview-card small {
  color: var(--muted);
  font-size: 0.94rem;
}

.lp-preview-score {
  background: linear-gradient(145deg, #ffffff, #eaf5fb);
}

.lp-result {
  padding: 0 0 20px;
}

.lp-section {
  padding: 84px 0;
}

.lp-section-soft {
  background: linear-gradient(180deg, #f7fbfe 0%, #eef5fa 100%);
}

.lp-section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.lp-section-heading h2 {
  margin: 16px 0 12px;
  font-size: clamp(1.95rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--ink);
}

.lp-section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.lp-steps,
.lp-feature-grid,
.lp-segment-grid,
.lp-plan-grid {
  display: grid;
  gap: 18px;
}

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

.lp-step-card,
.lp-feature-card,
.lp-segment-card,
.lp-plan-card {
  height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-card);
}

.lp-step-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(1, 131, 209, 0.12);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}

.lp-step-card h3,
.lp-feature-card h3,
.lp-segment-card h3,
.lp-plan-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.lp-step-card p,
.lp-feature-card p,
.lp-segment-card p,
.lp-plan-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.lp-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(1, 131, 209, 0.12), rgba(1, 131, 209, 0.12));
  color: var(--gold);
  font-size: 1.35rem;
}

.lp-feature-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(1, 131, 209, 0.08);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.lp-feature-badge-locked {
  background: rgba(0, 26, 40, 0.06);
  color: var(--muted);
}

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

.lp-segment-card strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 0.95rem;
}

.lp-compare-table {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--soft-border);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.lp-compare-row {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--soft-border);
  align-items: center;
}

.lp-compare-row:last-child {
  border-bottom: none;
}

.lp-compare-head {
  background: #edf6fb;
  font-weight: 700;
}

.lp-compare-row span,
.lp-compare-row strong {
  font-size: 0.95rem;
}

.lp-compare-row strong {
  color: var(--gold);
}

.lp-plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-plan-grid-extended {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lp-plan-card {
  display: flex;
  flex-direction: column;
}

.lp-plan-card h3 {
  font-size: 2rem;
  line-height: 1;
}

.lp-plan-card h3 span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.lp-plan-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(1, 131, 209, 0.08);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-plan-card ul {
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.lp-plan-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.lp-plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.lp-plan-card .btn {
  margin-top: auto;
}

.lp-plan-recommended {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--navy-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-plan-card-featured {
  background: linear-gradient(155deg, #001a28, #013b5c);
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transform: translateY(-6px);
}

.lp-plan-card-featured h3,
.lp-plan-card-featured strong {
  color: var(--white);
}

.lp-plan-card-featured h3 span,
.lp-plan-card-featured p,
.lp-plan-card-featured li {
  color: rgba(255, 255, 255, 0.78);
}

.lp-plan-card-featured .lp-plan-label {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.lp-rescan-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(1, 131, 209, 0.1), rgba(1, 131, 209, 0.08));
  border: 1px solid rgba(1, 131, 209, 0.18);
}

.lp-rescan-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--white);
  color: var(--gold);
  font-size: 1.3rem;
  box-shadow: var(--shadow-soft);
}

.lp-rescan-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
  color: var(--ink);
}

.lp-rescan-note p {
  margin: 0;
  color: var(--muted);
}

.lp-plan-compare {
  margin-top: 28px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.lp-plan-compare-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid var(--soft-border);
  background: linear-gradient(135deg, #f7fbfe, #eef7fb);
}

.lp-plan-compare-heading h3 {
  margin: 10px 0 0;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lp-plan-compare-heading p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.lp-plan-compare-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lp-plan-compare-scroll:focus {
  outline: 3px solid var(--teal-35);
  outline-offset: -3px;
}

.lp-plan-table {
  min-width: 1080px;
}

.lp-plan-row {
  display: grid;
  grid-template-columns: minmax(230px, 1.45fr) repeat(5, minmax(140px, 1fr));
  gap: 14px;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--soft-border);
}

.lp-plan-row:last-child {
  border-bottom: none;
}

.lp-plan-row-head {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #edf6fb;
  font-weight: 800;
  color: var(--ink);
}

.lp-plan-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.lp-plan-row span:first-child {
  color: var(--ink);
  font-weight: 700;
}

.lp-plan-row-highlight {
  background: rgba(1, 131, 209, 0.07);
}

.lp-check,
.lp-dash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 34px;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  font-weight: 800;
}

.lp-check {
  color: #006f8d !important;
  background: rgba(1, 131, 209, 0.12);
}

.lp-check::before {
  content: "✓";
  margin-right: 6px;
}

.lp-dash {
  color: #758996 !important;
  background: rgba(0, 26, 40, 0.05);
}

.lp-faq-list {
  display: grid;
  gap: 14px;
}

.lp-faq-item {
  padding: 0 22px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-card);
}

.lp-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}

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

.lp-faq-item p {
  padding: 0 0 20px;
  margin: 0;
  color: var(--muted);
}

.lp-final-cta {
  padding: 84px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(1, 131, 209, 0.18), rgba(0, 0, 0, 0) 36%),
    linear-gradient(135deg, #001a28, #012c42);
}

.lp-final-cta h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.lp-final-cta p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.lp-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-footer {
  padding: 56px 0 28px;
  background: #00131f;
  color: var(--white-70);
}

.public-scan-form {
  display: grid;
  gap: 14px;
}

.public-scan-input-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.public-scan-input-wrap .form-control {
  min-height: 58px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(0, 26, 40, 0.12);
  font-size: 1rem;
  box-shadow: none;
}

.public-scan-input-wrap .form-control:focus {
  border-color: rgba(1, 131, 209, 0.7);
  box-shadow: 0 0 0 4px rgba(1, 131, 209, 0.12);
}

.public-scan-input-wrap .btn {
  min-height: 58px;
  padding-inline: 22px;
}

.public-scan-support,
.public-scan-feedback {
  font-size: 0.92rem;
}

.public-scan-support {
  color: rgba(255, 255, 255, 0.72);
}

.public-scan-feedback {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.public-scan-feedback.is-danger {
  background: rgba(229, 62, 62, 0.14);
  color: #ffd0d0;
}

.public-scan-feedback.is-success {
  background: rgba(56, 161, 105, 0.14);
  color: #d9ffe7;
}

.public-scan-progress {
  display: grid;
  gap: 12px;
}

.public-scan-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.public-scan-progress-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.public-scan-progress-track span {
  display: block;
  height: 100%;
  width: 12%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00c3f3, #0183d1);
  transition: width 0.35s ease;
}

.public-scan-progress-track span[data-progress-step="1"] {
  width: 28%;
}

.public-scan-progress-track span[data-progress-step="2"] {
  width: 46%;
}

.public-scan-progress-track span[data-progress-step="3"] {
  width: 64%;
}

.public-scan-progress-track span[data-progress-step="4"] {
  width: 82%;
}

.public-scan-progress-track span[data-progress-step="done"] {
  width: 100%;
}

.public-result-section {
  display: grid;
  gap: 18px;
}

.public-scan-result-card {
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.public-scan-result-hero,
.public-scan-locked {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.public-scan-result-hero {
  align-items: flex-start;
  background: linear-gradient(145deg, #f7fbfe, #edf5fb);
}

.public-scan-result-hero h2,
.public-scan-locked h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.public-scan-result-hero p,
.public-scan-locked p,
.public-scan-header-item p {
  margin: 0;
  color: var(--muted);
}

.public-scan-kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(1, 131, 209, 0.08);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.public-scan-score {
  min-width: 168px;
  padding: 20px 22px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.public-scan-score span,
.public-scan-score small {
  display: block;
}

.public-scan-score strong {
  display: block;
  margin: 6px 0;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.public-scan-score.is-good strong {
  color: #38a169;
}

.public-scan-score.is-warning strong {
  color: #ed8936;
}

.public-scan-score.is-danger strong {
  color: #e53e3e;
}

.public-scan-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 28px 28px;
}

.public-scan-panel,
.public-scan-locked {
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--soft-border);
  padding: 24px;
}

.public-scan-panel h3,
.public-scan-locked h3 {
  margin-bottom: 16px;
  font-size: 1.12rem;
  font-weight: 700;
}

.public-scan-panel-wide {
  grid-column: 1 / -1;
}

.public-scan-status-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--soft-border);
}

.public-scan-status-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.public-scan-pill,
.public-scan-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.public-scan-pill {
  padding: 7px 12px;
}

.public-scan-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.public-scan-pill.is-good,
.public-scan-check.is-good {
  background: rgba(56, 161, 105, 0.12);
  color: #2f855a;
}

.public-scan-pill.is-danger,
.public-scan-check.is-danger {
  background: rgba(229, 62, 62, 0.12);
  color: #c53030;
}

.public-scan-header-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.public-scan-header-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: #f8fbfd;
  border: 1px solid #e5eff6;
}

.public-scan-header-item strong {
  display: block;
  margin-bottom: 4px;
}

.public-scan-locked {
  grid-column: 1 / -1;
  align-items: center;
  background: linear-gradient(145deg, #f5fbff, #eef6fc);
}

.public-scan-locked .btn {
  flex-shrink: 0;
}

.public-scan-partial-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(236, 201, 75, 0.15);
  color: #8f6800;
  font-size: 0.92rem;
  font-weight: 600;
}

.public-scan-sticky {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0, 26, 40, 0.94);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.public-scan-sticky strong {
  font-size: 1rem;
}

@media (max-width: 1199px) {
  .lp-proof-list,
  .lp-feature-grid,
  .lp-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 991px) {
  .lp-header {
    position: relative;
  }

  .lp-nav {
    min-height: 76px;
  }

  .lp-nav-collapse {
    padding: 16px 0 8px;
  }

  .lp-proof-list,
  .lp-steps,
  .lp-feature-grid,
  .lp-plan-grid,
  .lp-segment-grid,
  .public-scan-result-grid,
  .public-scan-header-list,
  .lp-compare-row {
    grid-template-columns: 1fr;
  }

  .lp-plan-card-featured {
    transform: none;
  }

  .public-scan-result-hero,
  .public-scan-locked {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .lp-hero {
    padding: 86px 0 42px;
  }

  .lp-section,
  .lp-final-cta {
    padding: 68px 0;
  }

  .lp-plan-compare-heading,
  .lp-rescan-note {
    grid-template-columns: 1fr;
  }

  .lp-plan-compare-heading {
    flex-direction: column;
  }

  .lp-hero-title {
    max-width: 100%;
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .lp-section-heading h2,
  .lp-final-cta h2 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .public-scan-input-wrap {
    grid-template-columns: 1fr;
  }

  .public-scan-input-wrap .btn {
    width: 100%;
  }

  .public-scan-result-hero,
  .public-scan-panel,
  .public-scan-locked,
  .public-scan-result-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .public-scan-result-grid {
    padding-bottom: 18px;
  }
}

@media (max-width: 575px) {
  .lp-proof-list {
    grid-template-columns: 1fr;
  }

  .public-scan-sticky {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Teaser landing page */
.teaser-page {
  background: linear-gradient(180deg, #f7fcff 0%, #e8fbff 48%, #f4fbf7 100%);
  color: #13222a;
  --teaser-primary-500: #00c3f3;
  --teaser-primary-soft: #e4faff;
  --teaser-blue-600: #0183d1;
  --teaser-blue-700: #013b5c;
  --teaser-danger-600: #d64f45;
  --teaser-success-600: #268f46;
}

.teaser-page .btn {
  border-radius: 10px;
  letter-spacing: 0;
}

.teaser-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px 0;
}

.teaser-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.teaser-brand {
  display: inline-flex;
  align-items: center;
}

.teaser-nav-links {
  display: none;
}

.teaser-nav-cta {
  display: none;
}

.teaser-hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
}

.teaser-hero-media,
.teaser-hero-overlay {
  position: absolute;
  inset: 0;
}

.teaser-hero-media {
  background-image: url("../../img/report01.png");
  background-position: center right;
  background-size: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.02);
}

.teaser-hero-overlay {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 195, 243, 0.42), transparent 26%),
    radial-gradient(circle at 82% 70%, rgba(1, 131, 209, 0.48), transparent 34%),
    linear-gradient(90deg, rgba(7, 21, 29, 0.98) 0%, rgba(7, 21, 29, 0.9) 48%, rgba(7, 21, 29, 0.5) 100%),
    linear-gradient(180deg, rgba(7, 21, 29, 0.08) 0%, rgba(7, 21, 29, 0.9) 100%);
}

.teaser-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: 56px;
  align-items: center;
  padding: 136px 12px 72px;
}

.teaser-hero-copy {
  max-width: 720px;
}

.teaser-release,
.teaser-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 195, 243, 0.28);
  border-radius: 8px;
  color: var(--teaser-blue-700);
  background: var(--teaser-primary-soft);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.teaser-release {
  color: #07151d;
  border-color: rgba(0, 195, 243, 0.58);
  background: linear-gradient(135deg, var(--teaser-primary-500), var(--teaser-primary-soft));
  box-shadow: 0 14px 32px rgba(0, 195, 243, 0.22);
}

.teaser-intro .teaser-kicker {
  color: var(--teaser-blue-700);
  border-color: rgba(1, 131, 209, 0.3);
  background: rgba(1, 131, 209, 0.12);
}

.teaser-reality .teaser-kicker {
  color: #8f322b;
  border-color: rgba(214, 79, 69, 0.28);
  background: rgba(214, 79, 69, 0.12);
}

.teaser-split .teaser-kicker {
  color: #075f43;
  border-color: rgba(38, 143, 70, 0.3);
  background: rgba(38, 143, 70, 0.14);
}

.teaser-audience .teaser-kicker {
  color: #07151d;
  border-color: rgba(0, 195, 243, 0.5);
  background: var(--teaser-primary-500);
}

.teaser-final .teaser-kicker {
  color: var(--teaser-blue-700);
  border-color: rgba(1, 131, 209, 0.32);
  background: rgba(1, 131, 209, 0.13);
}

.teaser-hero h1 {
  margin: 18px 0 16px;
  max-width: 760px;
  font-size: clamp(2.85rem, 5.4vw, 5rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.teaser-lead {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
  line-height: 1.65;
}

.teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.teaser-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
  margin-top: 42px;
}

.teaser-hero-proof span,
.teaser-audience-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.teaser-hero-proof span {
  color: var(--white);
  background: var(--teaser-blue-600);
  border: 1px solid rgba(1, 131, 209, 0.4);
  box-shadow: 0 12px 28px rgba(1, 131, 209, 0.16);
}

.teaser-hero-proof span:nth-child(2) {
  color: #07151d;
  background: var(--teaser-primary-500);
  border-color: rgba(0, 195, 243, 0.42);
  box-shadow: 0 12px 28px rgba(0, 195, 243, 0.16);
}

.teaser-hero-proof span:nth-child(3) {
  color: var(--white);
  background: var(--teaser-success-600);
  border-color: rgba(38, 143, 70, 0.4);
  box-shadow: 0 12px 28px rgba(38, 143, 70, 0.14);
}

.teaser-hero-visual {
  position: relative;
  min-height: 470px;
}

.teaser-pulse-ring {
  position: absolute;
  inset: 62px 38px 52px;
  border: 1px solid rgba(1, 131, 209, 0.22);
  border-radius: 999px;
  animation: teaserPulse 4.8s ease-in-out infinite;
}

.teaser-signal-panel {
  position: absolute;
  inset: 86px 28px auto;
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 195, 243, 0.3), transparent 28%),
    linear-gradient(145deg, #0d3b4b, #07151d);
  box-shadow: 0 32px 90px rgba(1, 131, 209, 0.28);
  backdrop-filter: blur(16px);
}

.teaser-panel-top,
.teaser-alert-list,
.teaser-care-row {
  display: flex;
  align-items: center;
}

.teaser-panel-top {
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.teaser-panel-top strong {
  color: #07151d;
  background: var(--teaser-primary-500);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
}

.teaser-score-orb {
  width: 158px;
  height: 158px;
  display: grid;
  place-items: center;
  margin: 34px auto 30px;
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 42% 32%, rgba(255, 255, 255, 0.36), transparent 24%),
    conic-gradient(from 210deg, var(--teaser-blue-600), var(--teaser-blue-700), var(--teaser-primary-500), var(--teaser-blue-600));
  box-shadow: 0 18px 50px rgba(1, 131, 209, 0.28);
  animation: teaserFloat 5.8s ease-in-out infinite;
}

.teaser-score-orb span,
.teaser-score-orb small {
  display: block;
  text-align: center;
}

.teaser-score-orb span {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 0.9;
}

.teaser-score-orb small {
  margin-top: -24px;
  font-weight: 800;
  text-transform: uppercase;
}

.teaser-alert-list {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.teaser-alert-list span,
.teaser-care-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
  font-size: 0.9rem;
}

.teaser-alert-list span:nth-child(1),
.teaser-care-row span:nth-child(1) {
  color: var(--white);
  background: var(--teaser-blue-600);
  border-color: rgba(1, 131, 209, 0.55);
}

.teaser-alert-list span:nth-child(2),
.teaser-care-row span:nth-child(2) {
  color: #07151d;
  background: var(--teaser-primary-500);
  border-color: rgba(0, 195, 243, 0.55);
}

.teaser-alert-list span:nth-child(3),
.teaser-care-row span:nth-child(3) {
  color: var(--white);
  background: var(--teaser-success-600);
  border-color: rgba(38, 143, 70, 0.5);
}

.teaser-floating-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 230px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #07151d;
  background: var(--white);
  border: 1px solid rgba(1, 131, 209, 0.22);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  font-weight: 800;
  animation: teaserFloat 6.4s ease-in-out infinite;
}

.teaser-floating-card i {
  color: var(--teaser-blue-600);
  font-size: 1.25rem;
}

.teaser-floating-card-one {
  top: 44px;
  left: 2px;
  border-left: 7px solid var(--teaser-blue-600);
}

.teaser-floating-card-two {
  right: 0;
  bottom: 42px;
  border-left: 7px solid var(--teaser-primary-500);
  animation-delay: 1.2s;
}

.teaser-intro,
.teaser-section,
.teaser-split,
.teaser-audience,
.teaser-final {
  padding: 96px 0;
}

.teaser-intro {
  background: #ffffff;
}

.teaser-intro-grid,
.teaser-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.teaser-intro h2,
.teaser-section-heading h2,
.teaser-split-copy h2,
.teaser-final-box h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.teaser-intro p,
.teaser-split-copy p,
.teaser-final-box p {
  margin: 0;
  color: #586871;
  font-size: 1.08rem;
  line-height: 1.75;
}

.teaser-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(0, 195, 243, 0.3), transparent 28%),
    linear-gradient(180deg, #f0fbff 0%, #e9fbff 100%);
}

.teaser-section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.teaser-section-heading p {
  max-width: 650px;
  margin: 16px 0 0;
  color: #586871;
  font-size: 1.08rem;
  line-height: 1.75;
}

.teaser-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.teaser-signal {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(1, 131, 209, 0.16);
  border-top: 6px solid var(--teaser-blue-600);
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff 0%, #eaf6ff 100%);
  box-shadow: 0 20px 46px rgba(1, 131, 209, 0.11);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.teaser-signal:nth-child(2) {
  border-top-color: var(--teaser-danger-600);
  background: linear-gradient(145deg, #ffffff 0%, #fff0ee 100%);
}

.teaser-signal:nth-child(3) {
  border-top-color: var(--teaser-primary-500);
  background: linear-gradient(145deg, #ffffff 0%, #e4faff 100%);
}

.teaser-signal:nth-child(4) {
  border-top-color: var(--teaser-success-600);
  background: linear-gradient(145deg, #ffffff 0%, #e8f8f1 100%);
}

.teaser-signal::before {
  content: "";
  position: absolute;
  inset: auto -20px -56px auto;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: rgba(1, 131, 209, 0.12);
}

.teaser-signal:nth-child(2)::before {
  background: rgba(214, 79, 69, 0.14);
}

.teaser-signal:nth-child(3)::before {
  background: rgba(0, 195, 243, 0.2);
}

.teaser-signal:nth-child(4)::before {
  background: rgba(38, 143, 70, 0.18);
}

.teaser-signal:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(19, 34, 42, 0.11);
}

.teaser-signal span {
  display: block;
  color: var(--teaser-blue-700);
  font-weight: 800;
  margin-bottom: 24px;
}

.teaser-signal-icon {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--white);
  background: var(--teaser-blue-600);
  font-size: 1.45rem;
  box-shadow: 0 12px 26px rgba(1, 131, 209, 0.24);
}

.teaser-signal:nth-child(2) .teaser-signal-icon {
  background: var(--teaser-danger-600);
  box-shadow: 0 12px 26px rgba(214, 79, 69, 0.24);
}

.teaser-signal:nth-child(3) .teaser-signal-icon {
  color: #07151d;
  background: var(--teaser-primary-500);
  box-shadow: 0 12px 26px rgba(0, 195, 243, 0.26);
}

.teaser-signal:nth-child(4) .teaser-signal-icon {
  background: var(--teaser-success-600);
  box-shadow: 0 12px 26px rgba(38, 143, 70, 0.22);
}

.teaser-signal h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.2;
  font-weight: 800;
}

.teaser-signal p {
  margin: 0;
  color: #65737b;
  line-height: 1.65;
}

.teaser-split {
  background:
    radial-gradient(circle at 18% 22%, rgba(1, 131, 209, 0.22), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(0, 195, 243, 0.24), transparent 28%),
    #ffffff;
}

.teaser-preview,
.teaser-care-visual {
  border: 1px solid rgba(19, 34, 42, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background: #eef3f2;
  box-shadow: 0 24px 60px rgba(19, 34, 42, 0.13);
}

.teaser-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.teaser-care-visual {
  position: relative;
  min-height: 430px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 70% 18%, rgba(0, 195, 243, 0.46), transparent 18%),
    radial-gradient(circle at 20% 20%, rgba(1, 131, 209, 0.28), transparent 28%),
    linear-gradient(145deg, #07151d, #0d3b4b);
  color: var(--white);
}

.teaser-care-visual::before,
.teaser-care-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.teaser-care-visual::before {
  width: 240px;
  height: 240px;
  top: 34px;
  right: 44px;
  animation: teaserPulse 5.6s ease-in-out infinite;
}

.teaser-care-visual::after {
  width: 96px;
  height: 96px;
  top: 84px;
  left: 46px;
  background: rgba(1, 131, 209, 0.18);
}

.teaser-care-card {
  position: relative;
  z-index: 2;
  max-width: 390px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(1, 131, 209, 0.42), rgba(7, 21, 29, 0.72));
  backdrop-filter: blur(14px);
}

.teaser-care-label {
  color: var(--teaser-primary-500);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.teaser-care-card h3 {
  margin: 12px 0 10px;
  font-size: 2rem;
  font-weight: 800;
}

.teaser-care-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.teaser-care-row {
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.teaser-split-copy {
  max-width: 570px;
}

.teaser-split-copy p {
  margin-top: 18px;
}

.teaser-checklist {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.teaser-checklist li {
  position: relative;
  padding-left: 24px;
  color: #263640;
  font-weight: 700;
}

.teaser-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teaser-primary-500);
}

.teaser-audience {
  background:
    radial-gradient(circle at 76% 8%, rgba(1, 131, 209, 0.46), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(0, 195, 243, 0.26), transparent 28%),
    #07151d;
  color: var(--white);
}

.teaser-audience .teaser-section-heading h2 {
  color: var(--white);
}

.teaser-audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.teaser-audience-list span {
  color: var(--white);
  background: var(--teaser-blue-600);
  border: 1px solid rgba(1, 131, 209, 0.35);
}

.teaser-audience-list span:nth-child(2),
.teaser-audience-list span:nth-child(4) {
  border-color: rgba(0, 195, 243, 0.36);
  color: #07151d;
  background: var(--teaser-primary-500);
}

.teaser-audience-list span:nth-child(3) {
  border-color: rgba(214, 79, 69, 0.36);
  color: var(--white);
  background: var(--teaser-danger-600);
}

.teaser-audience-list span:nth-child(5) {
  border-color: rgba(38, 143, 70, 0.36);
  color: var(--white);
  background: var(--teaser-success-600);
}

.teaser-final {
  background:
    radial-gradient(circle at 14% 24%, rgba(1, 131, 209, 0.18), transparent 26%),
    radial-gradient(circle at 84% 72%, rgba(38, 143, 70, 0.18), transparent 28%),
    #e8fbff;
}

.teaser-final-box {
  max-width: 980px;
  border: 1px solid rgba(1, 131, 209, 0.18);
  border-radius: 18px;
  padding: 54px;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 195, 243, 0.34), transparent 22%),
    linear-gradient(135deg, #ffffff, #eaf6ff 48%, #e4faff);
  box-shadow: 0 24px 64px rgba(1, 131, 209, 0.13);
}

.teaser-final-box p {
  max-width: 660px;
  margin-top: 18px;
}

.teaser-countdown {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 14px;
  max-width: 620px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(19, 34, 42, 0.1);
}

.teaser-countdown span {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #07151d;
  background: var(--teaser-primary-500);
  font-weight: 800;
}

.teaser-countdown span:nth-of-type(2) {
  color: var(--white);
  background: var(--teaser-blue-600);
}

.teaser-countdown span:nth-of-type(3) {
  color: var(--white);
  background: var(--teaser-success-600);
}

.teaser-countdown strong {
  align-self: center;
  color: #1c2c35;
  font-size: 1.02rem;
}

.teaser-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #07151d;
}

.teaser-footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.teaser-footer-content span:first-child {
  color: var(--white);
  font-weight: 800;
}

@keyframes teaserFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes teaserPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@media (min-width: 1400px) {
  .teaser-reality-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .teaser-hero-content {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.48fr);
    gap: 34px;
  }
}

@media (max-width: 991px) {
  .teaser-header {
    position: absolute;
  }

  .teaser-hero {
    min-height: 84vh;
  }

  .teaser-intro-grid,
  .teaser-split-grid,
  .teaser-signal-grid,
  .teaser-hero-content {
    grid-template-columns: 1fr;
  }

  .teaser-hero-visual {
    display: none;
  }
}

@media (max-width: 767px) {
  .teaser-nav-cta {
    display: none;
  }

  .teaser-hero {
    min-height: 82vh;
  }

  .teaser-hero-content {
    padding-top: 128px;
    padding-bottom: 36px;
  }

  .teaser-lead {
    font-size: 1.05rem;
  }

  .teaser-intro,
  .teaser-section,
  .teaser-split,
  .teaser-audience,
  .teaser-final {
    padding: 64px 0;
  }

  .teaser-final-box {
    padding: 30px;
  }

  .teaser-signal {
    min-height: auto;
  }

  .teaser-footer-content {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .teaser-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .teaser-pulse-ring,
  .teaser-score-orb,
  .teaser-floating-card,
  .teaser-care-visual::before {
    animation: none;
  }

  .teaser-signal {
    transition: none;
  }
}

/* Teaser campaign layout inspired by Blueicon social templates */
.teaser-campaign-hero {
  min-height: 100vh;
  background: #07151d;
  isolation: isolate;
}

.teaser-campaign-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 195, 243, 0.34), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(38, 143, 70, 0.24), transparent 26%),
    linear-gradient(135deg, #07151d 0%, #073149 52%, #011e2f 100%);
}

.teaser-campaign-bg::before,
.teaser-campaign-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.teaser-campaign-bg::before {
  width: min(58vw, 760px);
  height: min(58vw, 760px);
  right: -18vw;
  top: 8vh;
  border: 1px solid rgba(0, 195, 243, 0.2);
  box-shadow: inset 0 0 0 34px rgba(0, 195, 243, 0.04);
}

.teaser-campaign-bg::after {
  width: 320px;
  height: 320px;
  left: 7vw;
  bottom: -140px;
  background: rgba(0, 195, 243, 0.12);
  filter: blur(8px);
}

.teaser-campaign-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  width: 100%;
  padding: 136px 12px 86px;
}

.teaser-campaign-copy {
  max-width: 760px;
}

.teaser-campaign-copy h1 {
  margin: 22px 0 18px;
  max-width: 820px;
  color: var(--white);
  font-size: clamp(3.15rem, 7.2vw, 6.7rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.teaser-campaign-copy .teaser-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.7;
}

.teaser-campaign-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 34px;
}

.teaser-campaign-tags span,
.teaser-strip-track span,
.teaser-focus-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 12px;
  font-weight: 800;
}

.teaser-campaign-tags span {
  padding: 9px 13px;
  color: #07151d;
  background: var(--teaser-primary-500);
  box-shadow: 0 16px 34px rgba(0, 195, 243, 0.16);
}

.teaser-campaign-tags span:nth-child(2) {
  color: var(--white);
  background: var(--teaser-blue-600);
  box-shadow: 0 16px 34px rgba(1, 131, 209, 0.2);
}

.teaser-campaign-tags span:nth-child(3) {
  color: var(--white);
  background: var(--teaser-success-600);
  box-shadow: 0 16px 34px rgba(38, 143, 70, 0.18);
}

.teaser-poster {
  position: relative;
  min-height: 570px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 195, 243, 0.54), transparent 26%),
    radial-gradient(circle at 22% 78%, rgba(38, 143, 70, 0.3), transparent 30%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: 0 46px 120px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.teaser-poster::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  pointer-events: none;
}

.teaser-poster-orbit {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -96px;
  top: 78px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: teaserPulse 5.2s ease-in-out infinite;
}

.teaser-poster-orbit::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 46px;
  top: 62px;
  border-radius: 50%;
  background: var(--teaser-primary-500);
  box-shadow: 0 0 30px rgba(0, 195, 243, 0.72);
}

.teaser-poster-top,
.teaser-poster-alerts {
  position: relative;
  z-index: 1;
  display: flex;
}

.teaser-poster-top {
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.teaser-poster-top strong {
  padding: 8px 12px;
  border-radius: 12px;
  color: #07151d;
  background: var(--teaser-primary-500);
}

.teaser-poster-score {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 320px;
  padding-top: 44px;
  text-align: center;
}

.teaser-poster-score span {
  display: grid;
  place-items: center;
  width: 178px;
  height: 178px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.42), transparent 24%),
    conic-gradient(from 230deg, var(--teaser-primary-500), var(--teaser-blue-600), var(--teaser-success-600), var(--teaser-primary-500));
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 22px 64px rgba(0, 195, 243, 0.26);
  animation: teaserFloat 6s ease-in-out infinite;
}

.teaser-poster-score small {
  max-width: 270px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  font-weight: 800;
}

.teaser-poster-alerts {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.teaser-poster-alerts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.teaser-strip {
  padding: 22px 0;
  background: var(--teaser-primary-500);
}

.teaser-strip-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.teaser-strip-track span {
  padding: 8px 14px;
  color: #07151d;
  background: rgba(255, 255, 255, 0.72);
}

.teaser-scenarios {
  padding: 98px 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 195, 243, 0.24), transparent 24%),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.teaser-campaign-heading {
  max-width: 760px;
}

.teaser-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.teaser-scenario-card {
  position: relative;
  min-height: 330px;
  padding: 26px;
  border: 1px solid rgba(1, 131, 209, 0.16);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(1, 31, 48, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.teaser-scenario-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -58px;
  bottom: -58px;
  border-radius: 50%;
  background: rgba(0, 195, 243, 0.16);
}

.teaser-scenario-card:nth-child(2)::before {
  background: rgba(214, 79, 69, 0.14);
}

.teaser-scenario-card:nth-child(3)::before {
  background: rgba(1, 131, 209, 0.14);
}

.teaser-scenario-card:nth-child(4)::before {
  background: rgba(38, 143, 70, 0.16);
}

.teaser-scenario-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 72px rgba(1, 31, 48, 0.12);
}

.teaser-scenario-number {
  color: var(--teaser-blue-700);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.teaser-scenario-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 34px 0 24px;
  border-radius: 18px;
  color: #07151d;
  background: var(--teaser-primary-500);
  font-size: 1.55rem;
  box-shadow: 0 16px 34px rgba(0, 195, 243, 0.2);
}

.teaser-scenario-card:nth-child(2) .teaser-scenario-icon {
  color: var(--white);
  background: var(--teaser-danger-600);
  box-shadow: 0 16px 34px rgba(214, 79, 69, 0.18);
}

.teaser-scenario-card:nth-child(3) .teaser-scenario-icon {
  color: var(--white);
  background: var(--teaser-blue-600);
  box-shadow: 0 16px 34px rgba(1, 131, 209, 0.2);
}

.teaser-scenario-card:nth-child(4) .teaser-scenario-icon {
  color: var(--white);
  background: var(--teaser-success-600);
  box-shadow: 0 16px 34px rgba(38, 143, 70, 0.2);
}

.teaser-scenario-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #13222a;
  font-size: 1.35rem;
  line-height: 1.18;
  font-weight: 800;
}

.teaser-scenario-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5f6e76;
  line-height: 1.65;
}

.teaser-focus {
  padding: 104px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 195, 243, 0.28), transparent 28%),
    linear-gradient(135deg, #07151d, #013b5c);
}

.teaser-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.teaser-focus-panel {
  position: relative;
  min-height: 470px;
}

.teaser-focus-panel::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.teaser-focus-card {
  position: absolute;
  width: min(310px, 78%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.teaser-focus-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teaser-primary-500);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.teaser-focus-card strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.2;
}

.teaser-focus-card-main {
  left: 0;
  top: 34px;
}

.teaser-focus-card-side {
  right: 0;
  top: 170px;
  background: rgba(0, 195, 243, 0.18);
}

.teaser-focus-card-bottom {
  left: 12%;
  bottom: 28px;
  background: rgba(38, 143, 70, 0.22);
}

.teaser-focus-copy h2 {
  margin: 16px 0 18px;
  color: var(--white);
  font-size: clamp(2.15rem, 4vw, 4.1rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.teaser-focus-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.75;
}

.teaser-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.teaser-focus-list span {
  gap: 8px;
  padding: 8px 12px;
  color: #07151d;
  background: var(--white);
}

.teaser-focus-list span:nth-child(2) {
  background: var(--teaser-primary-500);
}

.teaser-focus-list span:nth-child(3) {
  color: var(--white);
  background: var(--teaser-success-600);
}

.teaser-campaign-final {
  background:
    radial-gradient(circle at 12% 28%, rgba(0, 195, 243, 0.22), transparent 26%),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.teaser-campaign-final-box {
  max-width: none;
}

@media (max-width: 1199px) {
  .teaser-campaign-grid,
  .teaser-focus-grid {
    grid-template-columns: 1fr;
  }

  .teaser-poster {
    max-width: 620px;
  }

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

@media (max-width: 767px) {
  .teaser-campaign-grid {
    padding: 124px 12px 58px;
  }

  .teaser-campaign-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .teaser-campaign-tags span,
  .teaser-strip-track span,
  .teaser-focus-list span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .teaser-poster {
    min-height: 500px;
    border-radius: 26px;
  }

  .teaser-scenarios,
  .teaser-focus {
    padding: 72px 0;
  }

  .teaser-scenario-grid {
    grid-template-columns: 1fr;
  }

  .teaser-scenario-card {
    min-height: 260px;
  }

  .teaser-focus-panel {
    min-height: 420px;
  }

  .teaser-focus-card {
    width: min(300px, 86%);
  }

  .teaser-focus-card-main {
    top: 20px;
  }

  .teaser-focus-card-side {
    top: 154px;
  }

  .teaser-focus-card-bottom {
    left: 4%;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .teaser-poster-score span {
    width: 142px;
    height: 142px;
    font-size: 4.8rem;
  }

  .teaser-poster-alerts span {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .teaser-poster-score span,
  .teaser-poster-orbit {
    animation: none;
  }

  .teaser-scenario-card {
    transition: none;
  }
}

/* Figma teaser layout */
.teaser-page .teaser-header {
  display: none;
}

.teaser-page [data-animate] {
  opacity: 1;
  transform: none;
}

.teaser-figma-hero {
  position: relative;
  min-height: 760px;
  padding: 100px 0 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 195, 243, 0.22), transparent 24%),
    radial-gradient(circle at 50% 92%, rgba(0, 195, 243, 0.22), transparent 28%),
    linear-gradient(180deg, #061725 0%, #07151d 52%, #04263a 100%);
  overflow: hidden;
}

.teaser-figma-hero::before,
.teaser-figma-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.teaser-figma-hero::before {
  top: 86px;
  width: min(78vw, 940px);
  height: min(78vw, 940px);
  border: 1px solid rgba(0, 195, 243, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 0 44px rgba(0, 195, 243, 0.025);
}

.teaser-figma-hero::after {
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 195, 243, 0.62), transparent);
}

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

.teaser-figma-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 195, 243, 0.28);
  border-radius: 999px;
  color: var(--teaser-primary-500);
  background: rgba(0, 195, 243, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.teaser-figma-hero h1 {
  max-width: 590px;
  margin: 18px auto 14px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.teaser-figma-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  line-height: 1.7;
}

.teaser-figma-radar {
  width: min(100%, 520px);
  margin: 44px auto 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 195, 243, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.teaser-figma-radar-top,
.teaser-figma-alerts,
.teaser-figma-status,
.teaser-figma-mission-list,
.teaser-figma-feature-grid {
  display: flex;
  align-items: center;
}

.teaser-figma-radar-top {
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.teaser-figma-radar-top strong {
  padding: 7px 10px;
  border-radius: 999px;
  color: #07151d;
  background: var(--teaser-primary-500);
  font-size: 0.78rem;
}

.teaser-figma-score {
  margin: 22px 0 18px;
}

.teaser-figma-score strong,
.teaser-figma-score span {
  display: block;
}

.teaser-figma-score strong {
  color: var(--teaser-primary-500);
  font-size: 3.7rem;
  line-height: 0.9;
  font-weight: 800;
}

.teaser-figma-score span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.teaser-figma-alerts {
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.teaser-figma-alerts span,
.teaser-figma-status span,
.teaser-figma-mission-list span,
.teaser-figma-feature i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.teaser-figma-alerts span {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.teaser-figma-status {
  justify-content: center;
  margin-top: 22px;
}

.teaser-figma-status span {
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 195, 243, 0.11);
  font-size: 0.84rem;
  font-weight: 800;
}

.teaser-figma-problem,
.teaser-figma-radar-section {
  padding: 70px 0;
  background: #ffffff;
}

.teaser-figma-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.teaser-figma-heading h2 {
  margin: 0;
  color: #13222a;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.teaser-figma-heading p {
  max-width: 540px;
  margin: 12px auto 0;
  color: #60717b;
  font-size: 1rem;
  line-height: 1.65;
}

.teaser-figma-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.teaser-figma-card,
.teaser-figma-feature {
  border: 1px solid rgba(1, 131, 209, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(1, 31, 48, 0.07);
}

.teaser-figma-card {
  min-height: 210px;
  padding: 24px;
  text-align: center;
}

.teaser-figma-card i,
.teaser-figma-feature i {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #07151d;
  background: var(--teaser-primary-500);
  font-size: 1.22rem;
}

.teaser-figma-card:nth-child(2) i {
  color: var(--white);
  background: var(--teaser-danger-600);
}

.teaser-figma-card:nth-child(3) i {
  color: var(--white);
  background: var(--teaser-blue-600);
}

.teaser-figma-card:nth-child(4) i {
  color: var(--white);
  background: var(--teaser-success-600);
}

.teaser-figma-card h3,
.teaser-figma-feature h3 {
  margin: 0 0 8px;
  color: #13222a;
  font-size: 1.06rem;
  line-height: 1.22;
  font-weight: 800;
}

.teaser-figma-card p,
.teaser-figma-feature p {
  margin: 0;
  color: #60717b;
  font-size: 0.95rem;
  line-height: 1.58;
}

.teaser-figma-mission {
  padding: 72px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 195, 243, 0.18), transparent 35%),
    linear-gradient(180deg, #07151d, #052333);
}

.teaser-figma-mission-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.teaser-figma-mission h2 {
  max-width: 680px;
  margin: 0 auto 30px;
  color: var(--white);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.teaser-figma-mission-list {
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.teaser-figma-mission-list span {
  gap: 9px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.teaser-figma-mission-list i {
  color: var(--teaser-primary-500);
}

.teaser-figma-feature-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.teaser-figma-feature {
  padding: 26px;
  text-align: center;
}

.teaser-figma-feature:nth-child(2) i {
  color: var(--white);
  background: var(--teaser-blue-600);
}

.teaser-figma-feature:nth-child(3) i {
  color: var(--white);
  background: var(--teaser-success-600);
}

.teaser-footer {
  text-align: center;
}

.teaser-footer-content {
  justify-content: center;
}

@media (max-width: 991px) {
  .teaser-figma-card-grid,
  .teaser-figma-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .teaser-figma-hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .teaser-figma-hero {
    padding: 78px 0 54px;
  }

  .teaser-figma-radar {
    margin-top: 34px;
    padding: 16px;
  }

  .teaser-figma-card-grid,
  .teaser-figma-feature-grid {
    grid-template-columns: 1fr;
  }

  .teaser-figma-card {
    min-height: auto;
  }

  .teaser-figma-alerts span,
  .teaser-figma-mission-list span {
    width: 100%;
  }
}
