:root {
  --bg-main: #0d0618;
  --bg-deep: #07020f;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text-main: #fff7fb;
  --text-soft: rgba(255, 247, 251, 0.78);
  --text-dim: rgba(255, 247, 251, 0.48);
  --orange: #ff7a18;
  --orange-soft: #ffb56c;
  --pink: #ff59b8;
  --lime: #c9ff4f;
  --cyan: #55caff;
  --violet: #9368ff;
  --red: #ff355f;
  --gold: #ffd07a;
  --shadow-xl: 0 45px 120px rgba(0, 0, 0, 0.48);
  --shadow-card: 0 22px 60px rgba(0, 0, 0, 0.3);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1220px;
  --header-h: 84px;
  --transition: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 89, 184, 0.16),
      transparent 24%
    ),
    radial-gradient(
      circle at top right,
      rgba(201, 255, 79, 0.12),
      transparent 24%
    ),
    radial-gradient(
      circle at center right,
      rgba(85, 202, 255, 0.12),
      transparent 20%
    ),
    linear-gradient(180deg, #0a0312 0%, #11061e 40%, #09020f 100%);
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.scene-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.8;
}

.orb-a {
  width: 32rem;
  height: 32rem;
  left: -10rem;
  top: -8rem;
  background: rgba(255, 89, 184, 0.2);
}

.orb-b {
  width: 26rem;
  height: 26rem;
  right: -8rem;
  top: 8rem;
  background: rgba(201, 255, 79, 0.18);
}

.orb-c {
  width: 24rem;
  height: 24rem;
  left: 45%;
  bottom: -10rem;
  background: rgba(85, 202, 255, 0.16);
}

.orb-d {
  width: 18rem;
  height: 18rem;
  right: 20%;
  top: 40%;
  background: rgba(255, 122, 24, 0.18);
}

.mesh-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.02) 46%,
      transparent 52%
    ),
    linear-gradient(
      300deg,
      transparent 0%,
      rgba(255, 255, 255, 0.02) 46%,
      transparent 52%
    );
  background-size: 220px 220px;
  opacity: 0.25;
}

.grain-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.8) 0.8px,
      transparent 1px
    ),
    radial-gradient(
      circle at 76% 24%,
      rgba(255, 255, 255, 0.7) 0.7px,
      transparent 1px
    ),
    radial-gradient(
      circle at 42% 68%,
      rgba(255, 255, 255, 0.8) 0.8px,
      transparent 1px
    ),
    radial-gradient(
      circle at 86% 74%,
      rgba(255, 255, 255, 0.7) 0.7px,
      transparent 1px
    );
  background-size: 220px 220px;
}

.light-beam {
  position: absolute;
  width: 140vw;
  height: 180px;
  left: -20vw;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.18;
  transform: rotate(-28deg);
}

.beam-a {
  top: 20%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 89, 184, 0.7) 22%,
    rgba(255, 214, 122, 0.8) 48%,
    rgba(85, 202, 255, 0.7) 78%,
    transparent 100%
  );
}

.beam-b {
  top: 64%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 122, 24, 0.7) 20%,
    rgba(201, 255, 79, 0.7) 50%,
    rgba(147, 104, 255, 0.7) 80%,
    transparent 100%
  );
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    180deg,
    rgba(12, 5, 19, 0.92),
    rgba(12, 5, 19, 0.68)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.brand-chip {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: #160612;
  background: linear-gradient(
    135deg,
    rgba(255, 208, 122, 0.98),
    rgba(255, 89, 184, 0.95),
    rgba(85, 202, 255, 0.95)
  );
  box-shadow:
    0 16px 36px rgba(255, 89, 184, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.brand-chip.small {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 0.8rem;
}

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

.brand-copy strong {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--text-dim);
}

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

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text-soft);
  transition: var(--transition);
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.site-nav .nav-cta {
  color: #190812;
  background: linear-gradient(
    135deg,
    rgba(255, 208, 122, 0.98),
    rgba(255, 122, 24, 0.95),
    rgba(255, 89, 184, 0.95)
  );
  box-shadow: 0 14px 32px rgba(255, 89, 184, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  padding: 11px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  padding: 62px 0 28px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #180812;
  background: linear-gradient(
    135deg,
    rgba(255, 208, 122, 0.98),
    rgba(255, 122, 24, 0.95),
    rgba(255, 89, 184, 0.95)
  );
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.hero-text {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 62ch;
}

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

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

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

.btn-primary {
  color: #190812;
  background: linear-gradient(135deg, #ffd07a, #ff7a18, #ff59b8);
  box-shadow:
    0 20px 44px rgba(255, 89, 184, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-wide {
  min-width: 260px;
}

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

.metric-box {
  position: relative;
  padding: 22px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.metric-box::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  right: -24px;
  top: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 89, 184, 0.18),
    transparent 70%
  );
}

.metric-box strong {
  position: relative;
  display: block;
  font-size: 2rem;
  font-weight: 900;
}

.metric-box span {
  position: relative;
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.94rem;
}

.hero-stage {
  position: relative;
  min-height: 820px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero-stage::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  left: 2.5rem;
  bottom: 2rem;
  width: min(360px, 44%);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-card);
}

.hero-phone {
  position: absolute;
  right: 3rem;
  top: 3rem;
  width: min(340px, 42%);
}

.device-cap {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: 35%;
  height: 26px;
  border-radius: 0 0 16px 16px;
  background: #140916;
  z-index: 2;
}

.hero-phone img,
.feature-device img {
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 28px;
}

.hero-phone,
.feature-device {
  position: relative;
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(
    145deg,
    rgba(20, 10, 22, 0.98),
    rgba(8, 4, 12, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease;
}

.float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-ribbon {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-card);
}

.ribbon-a {
  top: 1.5rem;
  left: 1.5rem;
  color: #180812;
  background: linear-gradient(
    135deg,
    rgba(255, 208, 122, 0.98),
    rgba(255, 122, 24, 0.95)
  );
}

.ribbon-b {
  right: 2rem;
  bottom: 2rem;
  color: #180812;
  background: linear-gradient(
    135deg,
    rgba(201, 255, 79, 0.96),
    rgba(85, 202, 255, 0.95)
  );
}

.ribbon-c {
  left: 46%;
  bottom: 1.8rem;
  color: #180812;
  background: linear-gradient(
    135deg,
    rgba(255, 89, 184, 0.96),
    rgba(147, 104, 255, 0.95)
  );
}

.hero-sticker {
  position: absolute;
  max-width: 240px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  line-height: 1.5;
}

.hero-sticker span {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 208, 122, 0.9);
}

.sticker-a {
  top: 7rem;
  left: 1.8rem;
}

.sticker-b {
  right: 2rem;
  top: 26rem;
}

.section {
  padding: 96px 0;
}

.premium-strip {
  padding-top: 10px;
}

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

.premium-card {
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}

.premium-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.premium-card strong {
  font-size: 1.03rem;
}

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

.section-head h1,
.section-head h2 {
  margin: 18px 0 14px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
  font-size: 1.03rem;
}

.feature-zone {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 24px;
  align-items: start;
}

.feature-preview {
  position: sticky;
  top: 110px;
}

.preview-shell {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.preview-topline {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--orange),
    var(--pink),
    var(--cyan),
    var(--lime),
    var(--red)
  );
}

.preview-copy {
  max-width: 520px;
}

.preview-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.preview-copy h3 {
  margin: 0 0 10px;
  font-size: 1.52rem;
}

.preview-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.74;
}

.feature-device-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.feature-device {
  width: min(330px, 100%);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  outline: none;
}

.feature-card:hover,
.feature-card:focus-visible,
.feature-card.active-feature {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 89, 184, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 89, 184, 0.08),
    rgba(85, 202, 255, 0.04),
    rgba(255, 255, 255, 0.03)
  );
}

.feature-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.feature-meta span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-meta small {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.26rem;
  line-height: 1.25;
}

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

.editorial-stack {
  display: grid;
  gap: 24px;
}

.editorial-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
}

.editorial-card.reverse .editorial-copy {
  order: 2;
}

.editorial-card.reverse .editorial-media {
  order: 1;
}

.editorial-step {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  color: #190812;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    rgba(255, 208, 122, 0.98),
    rgba(255, 89, 184, 0.95)
  );
}

.editorial-copy h3 {
  margin: 0 0 12px;
  font-size: 1.92rem;
  line-height: 1.04;
}

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

.editorial-media {
  position: relative;
  min-height: 420px;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.layout-layered {
  min-height: 440px;
}

.layout-layered .layer-main {
  width: 72%;
  height: 100%;
  margin-left: auto;
}

.layout-layered .layer-float {
  position: absolute;
  width: 42%;
  height: auto;
  left: 0;
  bottom: 24px;
  aspect-ratio: 9 / 19.5;
}

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

.mosaic-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.mosaic-card {
  position: relative;
  min-height: 300px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.mosaic-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 89, 184, 0.08);
}

.mosaic-card.tall {
  grid-row: span 2;
  min-height: 640px;
}

.mosaic-card.wide {
  grid-column: span 2;
  min-height: 320px;
}

.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-info {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 16px 18px;
  border-radius: 20px;
  display: grid;
  gap: 6px;
  background: linear-gradient(
    180deg,
    rgba(10, 5, 16, 0.26),
    rgba(10, 5, 16, 0.86)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mosaic-info strong {
  font-size: 1rem;
}

.mosaic-info small {
  color: var(--text-soft);
  line-height: 1.5;
}

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

.review-card {
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.review-card:hover,
.featured-review {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    180deg,
    rgba(255, 89, 184, 0.08),
    rgba(255, 208, 122, 0.04),
    rgba(255, 255, 255, 0.03)
  );
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

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

.review-user {
  display: grid;
  gap: 4px;
  margin-top: 24px;
}

.review-user span {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.cta-section {
  padding-bottom: 96px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      circle at left center,
      rgba(255, 89, 184, 0.16),
      transparent 34%
    ),
    radial-gradient(
      circle at right center,
      rgba(201, 255, 79, 0.12),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    );
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-xl);
}

.cta-copy h2 {
  margin: 18px 0 12px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cta-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
  max-width: 62ch;
}

.cta-actions {
  display: grid;
  gap: 14px;
}

.site-footer {
  padding: 28px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 4, 16, 0.62);
  backdrop-filter: blur(12px);
}

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

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

.footer-brand p {
  margin: 4px 0 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

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

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

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

.footer-bottom {
  padding-top: 18px;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.privacy-main {
  padding: 24px 0 82px;
}

.privacy-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

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

.privacy-card {
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
}

.privacy-card h2 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

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

.privacy-card a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}

.static-nav {
  display: flex;
}

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

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

@media (max-width: 1180px) {
  .hero-layout,
  .feature-zone,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .feature-preview {
    position: relative;
    top: auto;
  }

  .editorial-card,
  .editorial-card.reverse {
    grid-template-columns: 1fr;
  }

  .editorial-card.reverse .editorial-copy,
  .editorial-card.reverse .editorial-media {
    order: initial;
  }

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

@media (max-width: 980px) {
  .hero-metrics,
  .premium-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 700px;
  }

  .hero-photo,
  .hero-phone,
  .ribbon-a,
  .ribbon-b,
  .ribbon-c,
  .sticker-a,
  .sticker-b {
    position: static;
  }

  .hero-stage {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .hero-photo {
    width: 100%;
  }

  .hero-phone {
    width: min(360px, 100%);
  }

  .layout-split,
  .layout-triple {
    grid-template-columns: 1fr;
  }

  .layout-layered {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .layout-layered .layer-main,
  .layout-layered .layer-float {
    position: static;
    width: 100%;
  }

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

  .mosaic-card.wide {
    grid-column: span 2;
  }

  .mosaic-card.tall {
    grid-row: span 1;
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(
      180deg,
      rgba(16, 7, 22, 0.98),
      rgba(10, 4, 16, 0.98)
    );
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: var(--transition);
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .static-nav {
    display: none;
  }

  .site-nav a {
    width: 100%;
  }

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

@media (max-width: 680px) {
  :root {
    --header-h: 76px;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero {
    padding-top: 34px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.1rem, 9vw, 3.8rem);
  }

  .hero-text,
  .section-head p,
  .editorial-copy p,
  .cta-copy p,
  .privacy-card p {
    font-size: 0.97rem;
  }

  .hero-stage,
  .preview-shell,
  .feature-card,
  .editorial-card,
  .review-card,
  .privacy-card,
  .cta-panel,
  .mosaic-card {
    border-radius: 24px;
  }

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

  .mosaic-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .privacy-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cta-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
}
