:root {
  --bg-main: #07080c;
  --bg-dark: #04050a;
  --bg-soft: rgba(18, 14, 20, 0.9);
  --surface: rgba(19, 14, 22, 0.82);
  --surface-strong: rgba(26, 17, 27, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text-main: #f7f4f5;
  --text-soft: rgba(247, 244, 245, 0.74);
  --text-dim: rgba(247, 244, 245, 0.46);
  --red-main: #ff304f;
  --red-soft: #ff6178;
  --red-deep: #7d0f24;
  --wine: #35101d;
  --gold: #f2bf77;
  --purple-glow: #631f59;
  --shadow-xl: 0 30px 90px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 16px 50px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
  --header-h: 84px;
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top, rgba(255, 48, 79, 0.07), transparent 24%),
    linear-gradient(180deg, #080a10 0%, #09060b 28%, #06070c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

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

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.7;
}

.bg-orb-1 {
  width: 34rem;
  height: 34rem;
  top: -8rem;
  left: -10rem;
  background: rgba(255, 48, 79, 0.22);
}

.bg-orb-2 {
  width: 26rem;
  height: 26rem;
  right: -8rem;
  top: 20rem;
  background: rgba(99, 31, 89, 0.3);
}

.bg-orb-3 {
  width: 24rem;
  height: 24rem;
  left: 25%;
  bottom: -8rem;
  background: rgba(255, 191, 119, 0.08);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 92%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.8) 0.5px,
      transparent 0.8px
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(255, 255, 255, 0.6) 0.4px,
      transparent 0.8px
    ),
    radial-gradient(
      circle at 40% 75%,
      rgba(255, 255, 255, 0.7) 0.6px,
      transparent 1px
    ),
    radial-gradient(
      circle at 60% 55%,
      rgba(255, 255, 255, 0.5) 0.7px,
      transparent 1px
    );
  background-size: 180px 180px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    180deg,
    rgba(9, 10, 14, 0.92),
    rgba(9, 10, 14, 0.72)
  );
  border-bottom: 1px solid var(--line);
}

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

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

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(
    145deg,
    rgba(255, 87, 117, 0.95),
    rgba(120, 13, 34, 0.95)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 28px rgba(255, 48, 79, 0.24);
}

.brand-mark.small {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 1.2rem;
}

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

.brand-text strong {
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text small {
  font-size: 0.85rem;
  color: var(--text-soft);
}

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

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

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

.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(255, 48, 79, 0.95),
    rgba(140, 17, 47, 0.96)
  );
  box-shadow: 0 14px 34px rgba(255, 48, 79, 0.22);
}

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

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

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    rgba(255, 48, 79, 0.16),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

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

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

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

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff3554, #8d1331);
  box-shadow:
    0 18px 44px rgba(255, 48, 79, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

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

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  font-weight: 600;
}

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

.stat-card {
  position: relative;
  padding: 22px 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: auto -10% -50% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 48, 79, 0.16), transparent 70%);
}

.stat-card strong {
  position: relative;
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}

.stat-card span {
  position: relative;
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
}

.hero-ring {
  position: absolute;
  width: min(650px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 48, 79, 0.16),
    rgba(255, 48, 79, 0.04) 44%,
    transparent 65%
  );
  filter: blur(8px);
}

.device-frame {
  position: relative;
  width: min(360px, 78vw);
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(
    145deg,
    rgba(25, 23, 29, 0.98),
    rgba(7, 9, 12, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.device-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.device-frame img {
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 30px;
}

.hero-device {
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.device-notch {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: 34%;
  height: 26px;
  border-radius: 0 0 18px 18px;
  background: #090b10;
  z-index: 3;
}

.floating-chip {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    135deg,
    rgba(255, 48, 79, 0.22),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

.floating-chip .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 10px;
  box-shadow: 0 0 16px rgba(242, 191, 119, 0.7);
}

.chip-1 {
  top: 14%;
  left: 0;
}

.chip-2 {
  right: 2%;
  top: 28%;
}

.chip-3 {
  bottom: 18%;
  left: 4%;
}

.mini-panel {
  position: absolute;
  max-width: 220px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.mini-panel p {
  margin: 0 0 6px;
  color: var(--text-dim);
  font-size: 0.86rem;
}

.mini-panel strong {
  display: block;
  line-height: 1.45;
}

.mini-panel-a {
  right: 0;
  bottom: 6%;
}

.mini-panel-b {
  left: 4%;
  bottom: 4%;
}

.metrics-strip {
  padding: 12px 0 20px;
}

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

.metric-pill {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow-card);
}

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

.metric-pill strong {
  font-size: 1.02rem;
}

.section {
  padding: 86px 0;
}

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

.section-head h2 {
  margin: 16px 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

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

.showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.showcase-visual {
  position: sticky;
  top: 110px;
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.showcase-visual::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 48, 79, 0.2), transparent 70%);
  pointer-events: none;
}

.device-frame-large {
  width: min(360px, 100%);
  margin: 0 auto;
}

.showcase-caption {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}

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

.showcase-caption h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.showcase-caption p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

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

.feature-card {
  position: relative;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
  outline: none;
}

.feature-card:hover,
.feature-card:focus-visible,
.feature-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(255, 97, 120, 0.45);
  background: linear-gradient(
    180deg,
    rgba(255, 48, 79, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 48, 79, 0.1);
}

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

.feature-index {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-tag {
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
}

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

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

.story-grid {
  display: grid;
  gap: 22px;
}

.story-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 26px;
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: var(--shadow-card);
}

.story-card.reverse {
  grid-template-columns: 0.9fr 1fr;
}

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

.story-card.reverse .story-shot {
  order: 1;
}

.story-step {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-copy h3 {
  margin: 0 0 12px;
  font-size: 1.9rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.story-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.02rem;
}

.story-shot {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
}

.story-shot img {
  width: min(280px, 100%);
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-shot.two-up img {
  width: calc(50% - 7px);
  aspect-ratio: 9 / 19.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 97, 120, 0.42);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 48, 79, 0.08);
}

.gallery-card-large {
  grid-row: span 2;
  min-height: 580px;
}

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

.gallery-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(10, 11, 16, 0.22),
    rgba(10, 11, 16, 0.82)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.gallery-overlay strong {
  font-size: 1rem;
}

.gallery-overlay small {
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 0.88rem;
}

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

.review-card {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.review-card:hover,
.review-card.is-highlighted {
  transform: translateY(-4px);
  border-color: rgba(255, 97, 120, 0.35);
  background: linear-gradient(
    180deg,
    rgba(255, 48, 79, 0.08),
    rgba(255, 255, 255, 0.03)
  );
}

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

.review-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1rem;
}

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

.review-user strong {
  font-size: 1rem;
}

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

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 34px;
  border: 1px solid rgba(255, 97, 120, 0.18);
  background:
    radial-gradient(
      circle at left center,
      rgba(255, 48, 79, 0.16),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.03)
    );
  box-shadow: var(--shadow-xl);
}

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

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

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

.site-footer {
  padding: 26px 0 22px;
  border-top: 1px solid var(--line);
  background: rgba(7, 8, 12, 0.6);
  backdrop-filter: blur(10px);
}

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

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

.footer-brand strong {
  display: block;
}

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

.footer-links {
  display: flex;
  align-items: center;
  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;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 3, 6, 0.84);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  z-index: 300;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-inner {
  width: min(460px, 100%);
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(18, 16, 22, 0.98),
    rgba(8, 9, 13, 0.98)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
}

.lightbox-inner img {
  border-radius: 22px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}

.lightbox-inner p {
  margin: 14px 6px 6px;
  color: var(--text-soft);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.privacy-main {
  padding: 40px 0 80px;
}

.privacy-hero {
  padding: 36px 0 22px;
}

.privacy-hero-inner {
  max-width: 760px;
}

.privacy-hero h1 {
  margin: 16px 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.privacy-hero p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.04rem;
}

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

.policy-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: var(--shadow-card);
}

.policy-card h2 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

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

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

.policy-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.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .showcase-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

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

  .showcase-visual {
    position: relative;
    top: auto;
  }

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

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

  .gallery-card-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 420px;
  }

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

  .story-card.reverse .story-copy,
  .story-card.reverse .story-shot {
    order: initial;
  }
}

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

  .hero-copy h1 {
    max-width: none;
  }

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

  .chip-1,
  .chip-2,
  .chip-3,
  .mini-panel-a,
  .mini-panel-b {
    position: static;
  }

  .hero-visual {
    gap: 16px;
    display: flex;
    flex-direction: column;
  }

  .hero-ring {
    width: 90%;
  }

  .story-shot.two-up {
    flex-direction: column;
  }

  .story-shot.two-up img {
    width: 100%;
  }
}

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

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

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

  .static-nav {
    display: none;
  }

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

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

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

  .hero {
    padding-top: 30px;
  }

  .section {
    padding: 68px 0;
  }

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

  .hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .hero-text,
  .section-head p,
  .story-copy p,
  .cta-copy p,
  .policy-card p,
  .privacy-hero p {
    font-size: 0.98rem;
  }

  .hero-stats {
    gap: 12px;
  }

  .stat-card,
  .feature-card,
  .policy-card,
  .review-card,
  .showcase-visual,
  .story-card,
  .cta-card {
    border-radius: 22px;
  }

  .device-frame {
    border-radius: 34px;
    padding: 12px;
  }

  .device-frame::before {
    inset: 12px;
    border-radius: 24px;
  }

  .device-frame img {
    border-radius: 24px;
  }

  .device-notch {
    top: 12px;
  }

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

  .gallery-card-large {
    grid-column: auto;
    min-height: 400px;
  }

  .gallery-card {
    min-height: 320px;
  }

  .cta-actions {
    width: 100%;
  }

  .btn-wide {
    min-width: 100%;
  }

  .policy-actions {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .header-inner {
    gap: 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.3rem;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .brand-text small {
    font-size: 0.78rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
  }

  .hero-points li {
    width: 100%;
    text-align: center;
  }

  .showcase-caption h3,
  .story-copy h3 {
    font-size: 1.5rem;
  }

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

  .lightbox-close {
    width: 46px;
    height: 46px;
    font-size: 1.75rem;
  }
}
