:root {
  --bg-main: #071224;
  --bg-deep: #091a31;
  --bg-soft: #102542;
  --surface: rgba(18, 34, 61, 0.84);
  --surface-2: rgba(23, 40, 70, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text-main: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.74);
  --text-dim: rgba(255, 255, 255, 0.5);

  --red: #ef4858;
  --red-2: #ff5d67;
  --cyan: #4bc6ff;
  --cyan-2: #7bd8ff;
  --navy-card: #162847;

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 42px;

  --shadow-main: 0 28px 90px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 18px 46px rgba(0, 0, 0, 0.28);
  --transition: 0.35s ease;
  --container: min(1200px, calc(100% - 48px));
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(
      circle at 16% 15%,
      rgba(239, 72, 88, 0.12),
      transparent 22%
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(75, 198, 255, 0.1),
      transparent 20%
    ),
    linear-gradient(180deg, #071224 0%, #08192f 46%, #071424 100%);
  min-height: 100vh;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.34;
  pointer-events: none;
  z-index: -3;
}

.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -4;
}

.blur-a {
  width: 360px;
  height: 360px;
  top: -80px;
  left: -80px;
  background: rgba(239, 72, 88, 0.16);
}

.blur-b {
  width: 420px;
  height: 420px;
  right: -100px;
  top: 120px;
  background: rgba(75, 198, 255, 0.12);
}

.cursor-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 72, 88, 0.12), transparent 62%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--cyan));
  box-shadow: 0 0 14px rgba(239, 72, 88, 0.65);
}

.section-head {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-head h1,
.section-head h2 {
  margin: 18px 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 18px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(7, 18, 36, 0.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(239, 72, 88, 0.24),
    rgba(75, 198, 255, 0.16)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-copy strong {
  font-size: 15px;
  font-weight: 800;
}

.logo-copy small {
  color: var(--text-dim);
  font-size: 12px;
}

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

.nav-link {
  position: relative;
  color: var(--text-dim);
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  box-shadow: 0 20px 44px rgba(239, 72, 88, 0.26);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(239, 72, 88, 0.36);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text-main);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.btn-header {
  min-height: 48px;
  padding-inline: 18px;
  border-radius: 14px;
}

.btn-lg {
  min-height: 62px;
  padding-inline: 30px;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.burger.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(8, 22, 42, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.open {
  max-height: 420px;
}

.mobile-link,
.mobile-download {
  display: block;
  margin: 0 24px 14px;
}

.mobile-link {
  color: var(--text-soft);
  padding: 12px 0;
}

.mobile-download {
  text-align: center;
  min-height: 50px;
  line-height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  font-weight: 800;
}

.hero {
  padding-top: 80px;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  margin: 20px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #ffffff, #ff8a91 45%, #82dbff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 650px;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.stat-card {
  min-height: 134px;
  padding: 22px 18px;
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(20, 36, 63, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-card strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat-card span {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-surface {
  position: absolute;
  inset: 8% 8% 6% 8%;
  border-radius: 40px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(13, 28, 52, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-main);
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ring-a {
  width: 520px;
  height: 520px;
  opacity: 0.36;
}

.ring-b {
  width: 640px;
  height: 640px;
  opacity: 0.18;
}

.float-card {
  position: absolute;
  z-index: 4;
  min-width: 220px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(19, 35, 61, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.float-card span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.float-card strong {
  font-size: 16px;
  line-height: 1.45;
}

.float-left {
  top: 42px;
  left: 26px;
}

.float-right {
  right: 24px;
  bottom: 44px;
}

.phone-cluster {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-shell {
  width: min(390px, 72vw);
  padding: 14px;
  border-radius: 46px;
  background: linear-gradient(180deg, #102341 0%, #0d1d38 46%, #081427 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-notch {
  width: 42%;
  height: 24px;
  background: rgba(0, 0, 0, 0.4);
  margin: 0 auto 10px;
  border-radius: 0 0 18px 18px;
}

.phone-screen {
  border-radius: 32px;
  overflow: hidden;
}

.phone-screen img {
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}

.phone-side {
  position: absolute;
  width: 180px;
}

.side-left {
  left: 0;
  bottom: 120px;
  transform: rotate(-10deg);
}

.side-right {
  right: 0;
  top: 92px;
  transform: rotate(10deg);
}

.mini-phone {
  border-radius: 26px;
  overflow: hidden;
  padding: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.016)
    ),
    rgba(17, 31, 54, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.mini-phone img {
  border-radius: 20px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}

.ticker-wrap {
  margin-top: 56px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.ticker-track {
  display: flex;
  gap: 56px;
  width: max-content;
  padding: 18px 0;
  animation: tickerMove 30s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
  color: var(--text-soft);
  font-weight: 600;
}

.ticker-track span::before {
  content: '•';
  margin-right: 14px;
  color: var(--red);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.feature-card {
  grid-column: span 4;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(20, 35, 61, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.feature-card:hover,
.system-card:hover,
.review-card:hover,
.privacy-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.feature-card-large {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 30px;
  align-items: center;
}

.feature-media.compact {
  margin-bottom: 18px;
}

.shot {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}

.shot img {
  aspect-ratio: 9 / 18;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.shot:hover img {
  transform: scale(1.04);
}

.feature-card-large .shot img {
  aspect-ratio: 1.08 / 1;
}

.feature-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(239, 72, 88, 0.12);
  color: #ff9aa3;
  border: 1px solid rgba(239, 72, 88, 0.16);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-copy h3 {
  margin: 18px 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.feature-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}

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

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--cyan));
  box-shadow: 0 0 12px rgba(239, 72, 88, 0.45);
}

.tabs-shell {
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.036),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(18, 34, 61, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.tab-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.tab-btn {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  color: var(--text-soft);
  font-weight: 700;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  box-shadow: 0 14px 28px rgba(239, 72, 88, 0.22);
}

.tab-btn:hover {
  transform: translateY(-2px);
}

.tab-panels {
  margin-top: 28px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 30px;
  align-items: center;
}

.tab-copy h3 {
  margin: 0 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.tab-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.8;
}

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

.pill-row span,
.tag-row span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

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

.tab-shot {
  padding: 10px;
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(17, 31, 54, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.tab-shot img {
  border-radius: 18px;
  aspect-ratio: 9 / 18.5;
  object-fit: cover;
}

.system-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.system-card,
.review-card,
.privacy-card,
.cta-card {
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(19, 34, 60, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.system-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.system-head span {
  color: #ff9aa3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-head strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.system-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

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

.progress-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-weight: 600;
}

.progress-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

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

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

.mini-thumb {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.mini-thumb img {
  aspect-ratio: 10 / 17;
  object-fit: cover;
}

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

.stars {
  letter-spacing: 0.2em;
  color: #ff9098;
  margin-bottom: 14px;
}

.review-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
}

.review-meta strong {
  font-size: 15px;
}

.review-meta span {
  color: var(--text-dim);
  font-size: 14px;
}

.quote-strip {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.quote-line {
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}

.quote-strip p {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 72, 88, 0.18), transparent 68%);
  pointer-events: none;
}

.cta-copy h2 {
  margin: 18px 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.cta-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 640px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer {
  padding: 30px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a,
.footer-play {
  color: var(--text-soft);
  transition:
    color var(--transition),
    transform var(--transition);
}

.footer-links a:hover,
.footer-play:hover {
  color: #fff;
  transform: translateY(-2px);
}

.image-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 200;
}

.image-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 18, 0.86);
  backdrop-filter: blur(14px);
}

.image-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 30px));
  padding: 14px;
  border-radius: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(17, 31, 54, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-main);
}

.image-modal-dialog img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 9 / 18;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  z-index: 3;
}

.privacy-main {
  padding-bottom: 40px;
}

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

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

.privacy-card h2 {
  margin: 0 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  line-height: 1.15;
}

.privacy-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
}

.privacy-card p + p {
  margin-top: 12px;
}

.privacy-card a {
  color: #9ddfff;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.18s linear;
}

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

  .burger {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .feature-card-large,
  .tab-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    grid-column: span 6;
  }

  .feature-card-large {
    grid-column: span 12;
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .btn-header {
    display: none;
  }

  .feature-card,
  .feature-card-large {
    grid-column: span 12;
  }

  .hero-stats,
  .system-grid,
  .review-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

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

  .float-left,
  .float-right {
    display: none;
  }

  .phone-side {
    width: 130px;
  }

  .side-left {
    left: -6px;
    bottom: 46px;
  }

  .side-right {
    right: -6px;
    top: 42px;
  }
}

@media (max-width: 600px) {
  :root {
    --container: min(100% - 24px, 1000px);
  }

  .hero {
    padding-top: 56px;
  }

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

  .phone-shell {
    width: min(320px, 82vw);
    border-radius: 38px;
  }

  .phone-screen {
    border-radius: 26px;
  }

  .mini-phone {
    border-radius: 22px;
  }

  .mini-phone img {
    border-radius: 16px;
  }

  .tab-visuals {
    gap: 12px;
  }

  .feature-card,
  .system-card,
  .review-card,
  .privacy-card,
  .tabs-shell,
  .cta-card {
    border-radius: 22px;
  }

  .section-head p,
  .hero-text,
  .feature-copy p,
  .tab-copy p,
  .system-card p,
  .review-card p,
  .privacy-card p,
  .cta-copy p {
    font-size: 15px;
    line-height: 1.74;
  }
}
