:root {
  --navy: #1a3566;
  --navy-deep: #0f2550;
  --green: #4cb848;
  --green-soft: rgba(76, 184, 72, 0.14);
  --bg: #f6f9ff;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: rgba(17, 31, 58, 0.98);
  --line: rgba(26, 53, 102, 0.1);
  --line-strong: rgba(26, 53, 102, 0.18);
  --text: #10213c;
  --muted: #65758f;
  --shadow: 0 26px 70px rgba(22, 41, 74, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1540px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(76, 184, 72, 0.14), transparent 26%),
    radial-gradient(circle at 100% 10%, rgba(26, 53, 102, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fc 52%, #eef3fb 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
::selection { background: rgba(76, 184, 72, 0.3); }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #6d96ff);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 70;
}

.page {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 18px 18px 72px;
}

.legal-page {
  width: min(100%, 1120px);
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(26px);
  z-index: 0;
}

.page::before {
  inset: -120px auto auto -120px;
  width: 320px;
  height: 320px;
  background: rgba(76, 184, 72, 0.18);
}

.page::after {
  inset: 180px -100px auto auto;
  width: 420px;
  height: 420px;
  background: rgba(26, 53, 102, 0.12);
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(15, 37, 80, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(26, 53, 102, 0.08);
  box-shadow: 0 10px 22px rgba(26, 53, 102, 0.08);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), #6d96ff);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav a:hover::after { transform: scaleX(1); }

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(26, 53, 102, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(26, 53, 102, 0.05);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
}

.menu-toggle span:nth-child(1) { transform: translateY(-5px); }
.menu-toggle span:nth-child(2) { transform: translateY(0); }
.menu-toggle span:nth-child(3) { transform: translateY(5px); }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(84vw, 360px);
  height: 100vh;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(76, 184, 72, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(16, 33, 60, 0.98), rgba(26, 53, 102, 0.98));
  color: white;
  box-shadow: -24px 0 64px rgba(10, 24, 48, 0.28);
  transform: translateX(102%);
  transition: transform 220ms ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 6px;
}

.drawer-head strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.drawer-nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.drawer-nav a {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.drawer-actions {
  display: grid;
  gap: 10px;
}

.drawer-lang {
  width: 100%;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.drawer-lang button {
  color: rgba(255, 255, 255, 0.75);
}

.drawer-lang button.active {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.drawer-actions .ghost-btn,
.drawer-actions .primary-btn {
  width: 100%;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 24, 48, 0.34);
  backdrop-filter: blur(4px);
}

body.menu-open {
  overflow: hidden;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(26, 53, 102, 0.05);
  border: 1px solid rgba(26, 53, 102, 0.08);
}

.lang-switch button {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 180ms ease;
}

.lang-switch button.active {
  background: linear-gradient(135deg, rgba(26, 53, 102, 0.95), rgba(76, 184, 72, 0.95));
  color: white;
  box-shadow: 0 8px 18px rgba(26, 53, 102, 0.18);
}

.ghost-btn,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.ghost-btn {
  border: 1px solid rgba(26, 53, 102, 0.12);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 22px rgba(26, 53, 102, 0.05);
}

.primary-btn {
  border: none;
  color: white;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4f8f 52%, var(--green) 170%);
  box-shadow: 0 14px 28px rgba(26, 53, 102, 0.18);
}

.ghost-btn:hover,
.primary-btn:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 26px;
  align-items: center;
  padding: 26px 0 18px;
  min-height: calc(100vh - 120px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-right: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(26, 53, 102, 0.06);
  border: 1px solid rgba(26, 53, 102, 0.08);
  color: var(--navy);
  font-size: 0.88rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(76, 184, 72, 0.12);
}

.hero h1 {
  margin: 18px 0 16px;
  max-width: 13ch;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.lede {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.8;
}

.pill-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(26, 53, 102, 0.08);
  box-shadow: 0 10px 18px rgba(26, 53, 102, 0.04);
  color: var(--navy);
  font-size: 0.88rem;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.avatar-group {
  display: inline-flex;
  align-items: center;
}

.avatar-group span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-left: -10px;
  border: 2px solid #f6f9ff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(26, 53, 102, 0.1)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3));
}

.avatar-group span:first-child { margin-left: 0; }

.trust-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 42ch;
  font-size: 0.94rem;
}

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

.metric {
  border-radius: 22px;
  padding: 16px 16px 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 53, 102, 0.08);
  box-shadow: 0 16px 32px rgba(26, 53, 102, 0.05);
}

.metric small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.metric strong {
  font-size: 1rem;
  color: var(--navy);
}

.hero-visual {
  position: sticky;
  top: 92px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1300px;
}

.device-shell {
  position: relative;
  width: min(100%, 390px);
  padding: 20px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(15, 37, 80, 0.08), rgba(15, 37, 80, 0.02));
  border: 1px solid rgba(26, 53, 102, 0.08);
  box-shadow: 0 30px 70px rgba(15, 37, 80, 0.18);
  transform: translateY(0);
  animation: floatBounce 5.6s ease-in-out infinite;
}

.device-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.camera,
.speaker {
  display: block;
  border-radius: 999px;
  background: rgba(26, 53, 102, 0.16);
}

.camera { width: 10px; height: 10px; }
.speaker { width: 86px; height: 9px; }

.phone-card {
  overflow: hidden;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(26, 53, 102, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.phone-card img {
  display: block;
  width: 100%;
  height: auto;
}

.floating-chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(26, 53, 102, 0.08);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(26, 53, 102, 0.08);
  font-size: 0.88rem;
}

.chip-a { top: 80px; right: -10px; }
.chip-b { bottom: 210px; left: -10px; }
.chip-c { bottom: 90px; right: 0; }

.section {
  margin-top: 28px;
  padding: 32px;
  border-radius: 34px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.page-title {
  margin: 8px 0 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.page-lede {
  margin: 14px 0 0;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.section-kicker {
  margin: 0;
  max-width: 66ch;
  color: var(--muted);
  line-height: 1.7;
}

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

.feature-card {
  min-height: 190px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 248, 255, 0.96));
  border: 1px solid rgba(26, 53, 102, 0.08);
  box-shadow: 0 14px 26px rgba(26, 53, 102, 0.04);
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(76, 184, 72, 0.14);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-card h3 {
  margin: 14px 0 8px;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.section-visual {
  overflow: hidden;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: stretch;
}

.about-grid,
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.home-link-card {
  display: block;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.98));
  border: 1px solid rgba(26, 53, 102, 0.08);
  box-shadow: 0 14px 26px rgba(26, 53, 102, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(26, 53, 102, 0.08);
}

.home-link-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.home-link-card span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

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

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

.faq-item {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 255, 0.98));
  border: 1px solid rgba(26, 53, 102, 0.08);
  box-shadow: 0 14px 26px rgba(26, 53, 102, 0.04);
}

.faq-item[open] {
  box-shadow: 0 18px 32px rgba(26, 53, 102, 0.08);
}

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 600;
}

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

.faq-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(76, 184, 72, 0.14);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 2px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.policy-item {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.98));
  border: 1px solid rgba(26, 53, 102, 0.08);
  box-shadow: 0 14px 26px rgba(26, 53, 102, 0.04);
}

.policy-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.policy-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.contact-grid .contact-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-grid .contact-panel span {
  color: var(--muted);
  font-size: 0.84rem;
}

.contact-grid .contact-panel strong {
  color: var(--navy);
  font-size: 1rem;
  word-break: break-word;
}

.faq-page .page-hero {
  background:
    radial-gradient(circle at top right, rgba(76, 184, 72, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 255, 0.96));
}

.about-panel,
.privacy-panel,
.contact-panel {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.98));
  border: 1px solid rgba(26, 53, 102, 0.08);
  box-shadow: 0 20px 44px rgba(26, 53, 102, 0.08);
}

.about-panel p,
.privacy-panel p,
.contact-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.about-panel ul,
.privacy-panel ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.contact-panel h3 {
  margin: 0;
  font-size: 1.3rem;
}

.section-head.compact {
  margin-bottom: 12px;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(26, 53, 102, 0.04);
  border: 1px solid rgba(26, 53, 102, 0.06);
}

.contact-row span {
  color: var(--muted);
  font-size: 0.84rem;
}

.contact-row strong {
  color: var(--navy);
  font-size: 0.96rem;
  word-break: break-word;
}

.section-note {
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(26, 53, 102, 0.96), rgba(15, 37, 80, 0.98));
  color: white;
  box-shadow: 0 20px 44px rgba(26, 53, 102, 0.16);
}

.section-note h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.section-note p {
  margin: 0 0 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

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

.section-note li {
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}

.section-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(76, 184, 72, 0.14);
}

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

.highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 53, 102, 0.08);
  box-shadow: 0 12px 24px rgba(26, 53, 102, 0.04);
}

.highlight span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(26, 53, 102, 0.08);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  flex: none;
}

.highlight strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.highlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.benefit-band {
  padding: 10px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(26, 53, 102, 0.98), rgba(15, 37, 80, 0.98));
  color: white;
  box-shadow: 0 18px 44px rgba(26, 53, 102, 0.18);
}

.benefit-band ul {
  list-style: none;
  margin: 0;
  padding: 18px 18px 18px 40px;
  display: grid;
  gap: 14px;
}

.benefit-band li {
  position: relative;
  line-height: 1.6;
}

.benefit-band li::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(76, 184, 72, 0.16);
}

.cta-band {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(76, 184, 72, 0.12), rgba(26, 53, 102, 0.06));
  border: 1px solid rgba(26, 53, 102, 0.08);
}

.cta-band h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.1;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 68ch;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 6px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax { will-change: transform; }

@media (max-width: 1200px) {
  .topbar {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .actions {
    margin-left: auto;
  }

  .hero,
  .split-layout,
  .about-grid,
  .privacy-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

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

  .home-links-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .page {
    padding: 12px 12px 48px;
  }

  .topbar {
    position: relative;
    top: 0;
    padding: 14px;
    flex-wrap: nowrap;
    align-items: center;
  }

  .actions {
    width: auto;
    margin-left: auto;
    gap: 8px;
  }

  .nav,
  .desktop-action {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-top: 16px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.6rem, 12vw, 3.7rem);
  }

  .hero-metrics,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .home-links-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 20px;
    border-radius: 28px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    position: relative;
    top: 0;
    min-height: auto;
    margin-top: 10px;
  }

  .device-shell {
    transform: none;
    width: min(100%, 360px);
    padding: 14px;
    border-radius: 30px;
  }

  .chip-a { top: 10px; right: 8px; }
  .chip-b { bottom: 110px; left: 8px; }
  .chip-c { bottom: 12px; right: 8px; }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-drawer {
    width: min(88vw, 340px);
    padding: 16px;
  }
}

@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
