:root {
  --bg: #06142b;
  --bg-deep: #041022;
  --surface: rgba(13, 33, 67, 0.82);
  --surface-2: rgba(16, 38, 76, 0.9);
  --surface-3: rgba(12, 28, 56, 0.92);
  --line: rgba(232, 195, 63, 0.18);
  --line-strong: rgba(255, 217, 77, 0.4);
  --text: #ffffff;
  --muted: #9aabc8;
  --muted-2: #7384a4;
  --gold: #f2cb47;
  --gold-2: #ffd800;
  --gold-dark: #a88412;
  --blue-glow: #1f4d9f;
  --green: #36d081;
  --danger: #ff5f73;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 24px 70px rgba(0, 0, 0, 0.46);
  --glow-gold:
    0 0 0 1px rgba(255, 215, 0, 0.08), 0 0 25px rgba(255, 214, 51, 0.18);
  --glow-blue: 0 0 24px rgba(42, 111, 255, 0.22);
  --radius: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1240px;
  --header-h: 86px;
  --transition: 0.32s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(31, 77, 159, 0.24),
      transparent 24%
    ),
    radial-gradient(
      circle at 80% 8%,
      rgba(255, 214, 51, 0.09),
      transparent 18%
    ),
    linear-gradient(180deg, #06142b 0%, #051124 44%, #040d1b 100%);
  overflow-x: hidden;
}

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

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 0% 0%, rgba(36, 92, 190, 0.18), transparent 25%),
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 215, 0, 0.08),
      transparent 18%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(35, 74, 141, 0.18),
      transparent 22%
    );
}

.site-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 217, 77, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 217, 77, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}

.site-vignette {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    transparent 35%,
    rgba(0, 0, 0, 0.34) 100%
  );
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(4, 16, 36, 0.7);
  border-bottom: 1px solid rgba(255, 217, 77, 0.08);
}

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

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

.logo-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 900;
  font-size: 1rem;
  color: #111;
  background: linear-gradient(135deg, #c39d26 0%, #ffea73 55%, #e3b80f 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 8px 30px rgba(255, 215, 0, 0.24);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-copy strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

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

.nav a:hover {
  color: #fff;
}

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

.nav a.active {
  color: var(--gold);
}

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

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

.btn-primary {
  color: #101010;
  background: linear-gradient(135deg, #b98d10 0%, #ffd400 55%, #ffe869 100%);
  box-shadow:
    0 12px 30px rgba(255, 214, 51, 0.28),
    0 0 35px rgba(255, 214, 51, 0.14);
}

.btn-primary:hover {
  box-shadow:
    0 18px 42px rgba(255, 214, 51, 0.34),
    0 0 50px rgba(255, 214, 51, 0.18);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-header {
  min-height: 50px;
  padding: 0 24px;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: var(--transition);
}

.menu-toggle span:first-child {
  top: 20px;
}

.menu-toggle span:last-child {
  top: 30px;
}

.hero {
  position: relative;
  padding: 64px 0 38px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 215, 0, 0.1), transparent 18%),
    radial-gradient(circle at 28% 14%, rgba(26, 76, 162, 0.22), transparent 25%);
  pointer-events: none;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 214, 51, 0.08);
  border: 1px solid rgba(255, 214, 51, 0.16);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(3rem, 5.2vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

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

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

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

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(13, 33, 67, 0.88),
    rgba(10, 25, 51, 0.94)
  );
  border: 1px solid rgba(255, 217, 77, 0.08);
  box-shadow: var(--shadow);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 214, 51, 0.7),
    transparent
  );
  opacity: 0.6;
}

.stat-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
}

.phone-stack {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-stack::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.16), transparent 70%);
  filter: blur(18px);
}

.phone-stack::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 72, 152, 0.22), transparent 70%);
  filter: blur(28px);
}

.phone {
  width: min(360px, 100%);
  border-radius: 38px;
  border: 10px solid rgba(255, 255, 255, 0.05);
  background: #07162e;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 214, 51, 0.05);
  object-fit: cover;
  backface-visibility: hidden;
}

.phone-main {
  position: relative;
  z-index: 3;
  animation: floatMain 6s ease-in-out infinite;
}

.phone-side {
  position: absolute;
  width: 245px;
  opacity: 0.98;
}

.phone-side-left {
  left: 0;
  bottom: 50px;
  transform: rotate(-14deg);
  animation: floatLeft 7s ease-in-out infinite;
}

.phone-side-right {
  right: 0;
  top: 40px;
  transform: rotate(14deg);
  animation: floatRight 7.5s ease-in-out infinite;
}

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

@keyframes floatLeft {
  0%,
  100% {
    transform: rotate(-14deg) translateY(0px);
  }
  50% {
    transform: rotate(-14deg) translateY(-10px);
  }
}

@keyframes floatRight {
  0%,
  100% {
    transform: rotate(14deg) translateY(0px);
  }
  50% {
    transform: rotate(14deg) translateY(-14px);
  }
}

.brands {
  padding: 6px 0 24px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.brand-row span {
  padding: 12px 18px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 780px;
  text-align: center;
  margin: 0 auto 44px;
}

.section-head h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

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

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

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  min-height: 280px;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(14, 34, 67, 0.92),
    rgba(9, 25, 49, 0.95)
  );
  border: 1px solid rgba(255, 214, 51, 0.08);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow:
    var(--shadow-strong),
    0 0 24px rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 214, 51, 0.18);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 214, 51, 0.09),
    transparent 24%
  );
  pointer-events: none;
}

.feature-card::after {
  content: '';
  position: absolute;
  left: -30%;
  top: -30%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 88, 181, 0.22), transparent 70%);
  filter: blur(18px);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #0c0c0c;
  background: linear-gradient(135deg, #c39b1e 0%, #ffe25e 100%);
  box-shadow: 0 10px 28px rgba(255, 214, 51, 0.22);
}

.feature-card h3 {
  margin: 22px 0 14px;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

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

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

.showcase-card {
  grid-column: span 4;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(14, 34, 67, 0.92),
    rgba(8, 23, 46, 0.96)
  );
  border: 1px solid rgba(255, 214, 51, 0.08);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  transform-style: preserve-3d;
}

.showcase-card:hover {
  box-shadow:
    var(--shadow-strong),
    0 0 30px rgba(255, 214, 51, 0.08);
  border-color: rgba(255, 214, 51, 0.18);
}

.showcase-card.large {
  grid-column: span 7;
}

.showcase-card.wide {
  grid-column: span 5;
}

.showcase-card img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: top center;
  background: #07142b;
}

.showcase-card:not(.large):not(.wide) img {
  height: 560px;
}

.showcase-copy {
  padding: 24px;
}

.showcase-copy h3 {
  margin: 0 0 8px;
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}

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

.slider-section {
  position: relative;
}

.slider-shell {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(12, 31, 62, 0.94),
    rgba(7, 20, 40, 0.97)
  );
  border: 1px solid rgba(255, 214, 51, 0.08);
  box-shadow: var(--shadow-strong);
}

.slider-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.slider-top h2 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255, 214, 51, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.slider-track {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-radius: 28px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px) scale(0.98);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 760px;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 214, 51, 0.08), transparent 28%),
    linear-gradient(180deg, #06142b 0%, #051124 100%);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: var(--transition);
}

.dot.active {
  width: 38px;
  background: linear-gradient(135deg, #c9a420, #ffe14d);
  box-shadow: 0 0 16px rgba(255, 214, 51, 0.22);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 28px;
  align-items: start;
}

.about-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

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

.about-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 6px rgba(255, 214, 51, 0.08);
}

.about-panel {
  display: grid;
  gap: 18px;
}

.mini-card {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(14, 34, 67, 0.92),
    rgba(10, 24, 49, 0.96)
  );
  border: 1px solid rgba(255, 214, 51, 0.08);
  box-shadow: var(--shadow);
}

.mini-label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.mini-card strong {
  display: block;
  font-size: 1.16rem;
  line-height: 1.45;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 36px;
  background: linear-gradient(
    135deg,
    rgba(14, 34, 67, 0.95),
    rgba(5, 18, 37, 0.98)
  );
  border: 1px solid rgba(255, 214, 51, 0.08);
  box-shadow: var(--shadow-strong);
}

.cta-card::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 51, 0.12),
    transparent 70%
  );
}

.cta-card::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 72, 152, 0.16), transparent 70%);
}

.cta-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  max-width: 14ch;
}

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

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.footer {
  padding: 34px 0 50px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(11, 28, 56, 0.92),
    rgba(8, 19, 38, 0.96)
  );
  border: 1px solid rgba(255, 214, 51, 0.08);
  box-shadow: var(--shadow);
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--gold);
}

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

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

/* PRIVACY */
.privacy-page {
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(32, 87, 176, 0.22),
      transparent 24%
    ),
    radial-gradient(
      circle at 80% 8%,
      rgba(255, 214, 51, 0.08),
      transparent 18%
    ),
    linear-gradient(180deg, #06142b 0%, #051124 50%, #040d1b 100%);
}

.privacy-main {
  padding: 42px 0 90px;
}

.privacy-section .section-head {
  margin-bottom: 34px;
}

.privacy-section .section-head h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  letter-spacing: -0.05em;
}

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

.privacy-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(14, 34, 67, 0.92),
    rgba(10, 24, 49, 0.96)
  );
  border: 1px solid rgba(255, 214, 51, 0.08);
  box-shadow: var(--shadow);
}

.privacy-card h2 {
  margin: 0 0 16px;
  font-size: 1.26rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #fff;
}

.privacy-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.9;
  word-break: break-word;
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

.privacy-card a {
  color: var(--gold);
  font-weight: 800;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

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

  .hero-visual {
    order: -1;
  }

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

  .showcase-card,
  .showcase-card.large,
  .showcase-card.wide {
    grid-column: span 6;
  }

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

@media (max-width: 980px) {
  .nav,
  .btn-header {
    display: none;
  }

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

  .nav.open {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 12px);
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(8, 24, 49, 0.97);
    border: 1px solid rgba(255, 214, 51, 0.08);
    box-shadow: var(--shadow-strong);
  }

  .phone-stack {
    min-height: 680px;
  }

  .phone-side-left {
    left: 8px;
  }

  .phone-side-right {
    right: 8px;
  }

  .slider-track,
  .slide img {
    min-height: 620px;
    height: 620px;
  }

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

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

  .header-inner {
    min-height: 76px;
  }

  .logo-copy small {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .hero-text,
  .section-head p,
  .about-copy p,
  .showcase-copy p,
  .feature-card p,
  .cta-copy p,
  .privacy-card p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

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

  .phone-stack {
    min-height: 560px;
  }

  .phone {
    border-width: 8px;
    border-radius: 30px;
  }

  .phone-main {
    width: min(290px, 100%);
  }

  .phone-side {
    width: 190px;
  }

  .phone-side-left {
    left: -4px;
    bottom: 30px;
  }

  .phone-side-right {
    right: -2px;
    top: 26px;
  }

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

  .showcase-card,
  .showcase-card.large,
  .showcase-card.wide {
    grid-column: auto;
  }

  .showcase-card img {
    height: auto;
    max-height: 640px;
    object-fit: contain;
    background: #07142b;
  }

  .slider-shell,
  .cta-card,
  .privacy-card,
  .mini-card,
  .feature-card,
  .footer-inner {
    padding: 22px;
  }

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

  .slider-track,
  .slide img {
    min-height: 500px;
    height: 500px;
  }

  .btn,
  .btn-header {
    width: 100%;
  }

  .hero-actions,
  .cta-actions,
  .privacy-actions {
    flex-direction: column;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 520px) {
  .phone-stack {
    min-height: 500px;
  }

  .phone-main {
    width: min(250px, 100%);
  }

  .phone-side {
    width: 155px;
  }

  .phone-side-left {
    transform: rotate(-10deg);
    left: -2px;
    bottom: 24px;
  }

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

  .section-head h2,
  .about-copy h2,
  .cta-copy h2,
  .privacy-section .section-head h1 {
    line-height: 1.02;
  }

  .slider-track,
  .slide img {
    min-height: 430px;
    height: 430px;
  }
}
