:root {
  color-scheme: light;
  --bg: #f8f9ff;
  --bg-deep: #130a3a;
  --surface: #ffffff;
  --surface-soft: #f5f7ff;
  --surface-glass: rgba(255, 255, 255, 0.78);
  --text: #172033;
  --muted: #63708a;
  --muted-strong: #46516a;
  --line: #e5eaf7;
  --primary: #6d5dfc;
  --primary-dark: #4f46e5;
  --primary-soft: #eeeaff;
  --blue: #2563eb;
  --cyan: #38bdf8;
  --pink: #f472b6;
  --green: #12b981;
  --amber: #f59e0b;
  --shadow-sm: 0 12px 30px rgba(28, 38, 84, 0.10);
  --shadow-md: 0 22px 52px rgba(28, 38, 84, 0.16);
  --shadow-lg: 0 34px 90px rgba(22, 18, 70, 0.28);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(244, 114, 182, 0.18), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(56, 189, 248, 0.18), transparent 30%),
    linear-gradient(180deg, #fbfcff 0%, #f4f6ff 42%, #ffffff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(109, 93, 252, 0.08) 0 2px, transparent 2.5px),
    radial-gradient(circle, rgba(56, 189, 248, 0.08) 0 1.5px, transparent 2px);
  background-size: 118px 118px, 82px 82px;
  background-position: 20px 28px, 56px 64px;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 14px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--primary-dark);
  text-decoration: none;
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 234, 247, 0.78);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  font-weight: 950;
  letter-spacing: -0.08em;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  box-shadow: 0 16px 28px rgba(91, 95, 247, 0.24);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-footer .brand-mark {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: color 0.16s ease, background 0.16s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--primary-dark);
  background: var(--primary-soft);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed 0%, #5b5ff7 52%, #2563eb 100%);
  box-shadow: 0 18px 34px rgba(91, 95, 247, 0.24);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(91, 95, 247, 0.30);
  outline: none;
}

.button.secondary {
  color: var(--primary-dark);
  background: #ffffff;
  border: 1px solid #dfe5ff;
  box-shadow: 0 12px 24px rgba(28, 38, 84, 0.08);
}

.button.ghost {
  color: var(--primary-dark);
  background: var(--primary-soft);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 58px;
  background:
    radial-gradient(circle at 16% 18%, rgba(244, 114, 182, 0.24), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(56, 189, 248, 0.28), transparent 32%),
    linear-gradient(135deg, #20105b 0%, #6e39df 48%, #2460e8 100%);
  color: #ffffff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero::before {
  left: -90px;
  top: 80px;
  width: 260px;
  height: 260px;
}

.hero::after {
  right: -120px;
  bottom: -80px;
  width: 340px;
  height: 340px;
  animation-delay: -3s;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
}

.eyebrow.dark {
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-color: #e2ddff;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #91f7c7;
  box-shadow: 0 0 0 7px rgba(145, 247, 199, 0.12);
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.hero-subtitle {
  margin: 22px 0 0;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.hero .button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.proof-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-card strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.proof-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.45;
}

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

.device-card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  margin-inline: auto;
  border-radius: 42px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  animation: rise 0.64s ease-out both;
}

.device-screen {
  min-height: 520px;
  border-radius: 32px;
  padding: 22px;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
  overflow: hidden;
}

.device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.device-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--primary));
  font-weight: 950;
}

.device-profile strong {
  display: block;
  font-size: 14px;
}

.device-profile span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.pill {
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 12px;
  font-weight: 850;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.board-card {
  min-height: 112px;
  border-radius: 22px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(28, 38, 84, 0.08);
}

.board-card .shape {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--cyan), var(--primary));
}

.board-card:nth-child(2) .shape {
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.board-card:nth-child(3) .shape {
  background: linear-gradient(135deg, var(--pink), var(--amber));
}

.board-card:nth-child(4) .shape {
  background: linear-gradient(135deg, var(--primary), var(--pink));
}

.board-card strong {
  font-size: 14px;
  line-height: 1.2;
}

.metric-panel {
  margin-top: 16px;
  border-radius: 24px;
  padding: 16px;
  background: linear-gradient(135deg, #27246c, #5b5ff7);
  color: #ffffff;
}

.metric-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.metric-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.metric-bars {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.metric-bars i {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.metric-bars i::after {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #91f7c7, #38bdf8);
}

.metric-bars i:nth-child(1)::after { width: 78%; }
.metric-bars i:nth-child(2)::after { width: 62%; }
.metric-bars i:nth-child(3)::after { width: 86%; }

.float-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 230px;
  border-radius: 22px;
  padding: 12px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 36px rgba(16, 24, 72, 0.20);
  backdrop-filter: blur(14px);
  animation: float 6s ease-in-out infinite;
}

.float-chip strong {
  display: block;
  font-size: 13px;
}

.float-chip span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.float-chip::before {
  content: "";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background: linear-gradient(135deg, #91f7c7, #38bdf8);
}

.float-chip.one {
  left: -12px;
  top: 70px;
}

.float-chip.two {
  right: -4px;
  bottom: 86px;
  animation-delay: -2.4s;
}

.section {
  padding: 86px 0;
}

.section.compact {
  padding: 62px 0;
}

.section.alt {
  background:
    radial-gradient(circle at 10% 20%, rgba(109, 93, 252, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
}

.section.deep {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 20%, rgba(244, 114, 182, 0.22), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(56, 189, 248, 0.22), transparent 32%),
    linear-gradient(135deg, #160b45 0%, #33207f 52%, #1c54c9 100%);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section.deep .section-kicker,
.section.deep .section-title,
.section.deep .section-lead {
  color: #ffffff;
}

.section.deep .panel .section-kicker {
  color: var(--primary-dark);
}

.section.deep .panel .section-title {
  color: var(--text);
}

.section.deep .panel .section-lead {
  color: var(--muted);
}

.section-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.section-lead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.section.deep .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d9dfff;
}

.card.glass {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
}

.section.deep .card {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.card:nth-child(2n) .card-icon {
  background: linear-gradient(135deg, var(--cyan), var(--primary));
}

.card:nth-child(3n) .card-icon {
  background: linear-gradient(135deg, var(--pink), var(--amber));
}

.card h3 {
  margin: 0;
  color: inherit;
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
}

.section.deep .card p {
  color: rgba(255, 255, 255, 0.76);
}

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

.split.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.panel {
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 42px);
  background: var(--surface-glass);
  border: 1px solid rgba(229, 234, 247, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.visual-panel {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(244, 114, 182, 0.18), transparent 30%),
    linear-gradient(135deg, #f8f5ff, #eef6ff);
  border: 1px solid #dfe6fb;
  box-shadow: var(--shadow-md);
}

.caa-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.caa-tile {
  min-height: 108px;
  border-radius: 24px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(28, 38, 84, 0.08);
}

.caa-shape {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
}

.caa-tile:nth-child(2) .caa-shape { background: linear-gradient(135deg, var(--green), var(--cyan)); }
.caa-tile:nth-child(3) .caa-shape { background: linear-gradient(135deg, var(--pink), var(--amber)); }
.caa-tile:nth-child(4) .caa-shape { background: linear-gradient(135deg, var(--primary), var(--pink)); }
.caa-tile:nth-child(5) .caa-shape { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.caa-tile:nth-child(6) .caa-shape { background: linear-gradient(135deg, var(--amber), var(--green)); }

.caa-tile strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.2;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.62;
}

.feature-list li::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, var(--primary), var(--blue));
  box-shadow: 0 10px 18px rgba(91, 95, 247, 0.18);
}

.progress-stack {
  display: grid;
  gap: 14px;
}

.progress-card {
  border-radius: 24px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.progress-card .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-weight: 850;
}

.progress-track {
  height: 10px;
  margin-top: 12px;
  border-radius: 999px;
  background: #edf1fb;
  overflow: hidden;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

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

.link-card {
  border-radius: 22px;
  padding: 18px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-3px);
  border-color: #cfd7ff;
  outline: none;
}

.link-card strong {
  display: block;
  font-size: 16px;
}

.link-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cta-band {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #6d5dfc, #2563eb);
  box-shadow: var(--shadow-md);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.cta-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.site-footer {
  padding: 44px 0 34px;
  color: #d8def7;
  background: #120a35;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: start;
}

.footer-brand p {
  max-width: 450px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links strong {
  color: #ffffff;
  font-size: 14px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  text-decoration: none;
}

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

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.subpage-hero {
  padding: 74px 0 52px;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 16%, rgba(244, 114, 182, 0.22), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(56, 189, 248, 0.24), transparent 32%),
    linear-gradient(135deg, #1f105a 0%, #6d35d9 52%, #2360e8 100%);
}

.subpage-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.subpage-hero p {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.72;
}

.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  align-items: start;
}

.article {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.article h2 {
  margin: 34px 0 12px;
  color: var(--text);
  font-size: 26px;
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.article h2:first-child {
  margin-top: 0;
}

.article h3 {
  margin: 22px 0 8px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.25;
}

.article p,
.article li {
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.76;
}

.article p {
  margin: 0 0 14px;
}

.article ul,
.article ol {
  margin: 10px 0 18px;
  padding-left: 22px;
}

.article a {
  color: var(--primary-dark);
  font-weight: 800;
}

.aside-card {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.aside-card strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.aside-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
}

.aside-card .button {
  width: 100%;
  margin-top: 16px;
}

.notice {
  border-radius: 20px;
  padding: 18px;
  color: #74480a;
  background: #fff7e6;
  border: 1px solid #ffe2ad;
}

.notice strong {
  display: block;
  margin-bottom: 6px;
  color: #5d3905;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border-radius: 20px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
  line-height: 1.35;
}

.faq details p {
  margin: 12px 0 0;
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.68;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.62s ease-out forwards;
}

.reveal.delay-1 { animation-delay: 0.08s; }
.reveal.delay-2 { animation-delay: 0.16s; }
.reveal.delay-3 { animation-delay: 0.24s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@media (max-width: 1040px) {
  .nav-menu {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-radius: 24px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
  }

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

  .nav-menu a {
    padding: 13px 14px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .content-wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .float-chip.one,
  .float-chip.two {
    position: relative;
    inset: auto;
    margin-top: 14px;
  }

  .hero-proof,
  .grid.three,
  .grid.four,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aside-card {
    position: relative;
    top: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .navbar {
    min-height: 70px;
  }

  .nav-menu {
    inset: 70px 16px auto 16px;
  }

  .brand-text span,
  .nav-actions .button {
    display: none;
  }

  .hero,
  .section,
  .subpage-hero {
    padding: 54px 0;
  }

  .hero h1,
  .subpage-hero h1 {
    font-size: 40px;
  }

  .hero-proof,
  .grid.three,
  .grid.four,
  .grid.two,
  .link-grid,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-band .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button,
  .cta-band .button {
    width: 100%;
  }

  .device-screen {
    min-height: 460px;
    padding: 18px;
  }

  .caa-board,
  .board-grid {
    grid-template-columns: 1fr 1fr;
  }

  .visual-panel {
    min-height: auto;
    padding: 18px;
  }

  .article,
  .panel,
  .card {
    border-radius: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .caa-board,
  .board-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Premium screenshot / showcase components ===== */

.hero-showcase {
  position: relative;
  width: min(100%, 480px);
  margin-inline: auto;
  border-radius: 36px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  animation: rise 0.7s ease-out both;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: 48px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(145, 247, 199, 0.22), transparent 60%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(15, 10, 60, 0.35);
}

.hero-tagline {
  position: absolute;
  left: -10px;
  bottom: -18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
  padding: 12px 14px;
  border-radius: 20px;
  color: #ffffff;
  background: rgba(20, 14, 60, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 38px rgba(10, 6, 40, 0.4);
  backdrop-filter: blur(14px);
}

.hero-tagline-dot {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, #91f7c7, #38bdf8);
  box-shadow: 0 8px 18px rgba(56, 189, 248, 0.35);
}

.hero-tagline strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.hero-tagline span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.35;
}

.screenshot-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 36px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 18%, rgba(109, 93, 252, 0.18), transparent 55%),
    radial-gradient(circle at 78% 82%, rgba(56, 189, 248, 0.18), transparent 55%),
    linear-gradient(135deg, #f3f0ff 0%, #eaf3ff 100%);
  border: 1px solid #e1e6fb;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.screenshot-stage::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.22), transparent 70%);
  pointer-events: none;
}

.section.deep .screenshot-stage {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.16), transparent 55%),
    radial-gradient(circle at 78% 82%, rgba(56, 189, 248, 0.22), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.phone-frame {
  position: relative;
  width: min(100%, 280px);
  padding: 12px;
  border-radius: 38px;
  background: linear-gradient(160deg, #1b1340 0%, #3b2c8a 100%);
  box-shadow:
    0 30px 70px rgba(20, 14, 60, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-frame::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  border-radius: 999px;
  background: #0d0826;
  z-index: 2;
  pointer-events: none;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
  background: #ffffff;
}

.phone-frame.wider {
  width: min(100%, 320px);
}

.phone-frame.pre-rendered {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.phone-frame.pre-rendered::after {
  display: none;
}

.phone-frame.pre-rendered img {
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(20, 14, 60, 0.28);
}

.screenshot-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  justify-items: center;
}

.screenshot-duo .phone-frame {
  width: 100%;
  max-width: 240px;
}

.feature-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f6f3ff, #eaf2ff);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.feature-card-img img {
  width: 70%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.section.deep .feature-card-img {
  background: rgba(255, 255, 255, 0.08);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(28, 38, 84, 0.06);
}

.trust-badges span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 0 0 4px rgba(109, 93, 252, 0.12);
}

@media (max-width: 1040px) {
  .screenshot-duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-tagline {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 18px auto 0;
  }
}

@media (max-width: 680px) {
  .hero-showcase {
    width: min(100%, 360px);
  }

  .phone-frame {
    width: min(100%, 240px);
  }

  .screenshot-duo {
    grid-template-columns: 1fr;
  }
}

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

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
