:root {
  --bg-main: #06071a;
  --bg-deep: #030311;
  --surface: rgba(10, 8, 34, 0.72);
  --surface-strong: rgba(13, 10, 42, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text-main: #f6f7ff;
  --text-soft: rgba(246, 247, 255, 0.78);
  --text-dim: rgba(246, 247, 255, 0.48);
  --pink: #ff1e92;
  --pink-soft: #ff58bc;
  --blue: #55d9ff;
  --violet: #7f5dff;
  --indigo: #1a1355;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --shadow-heavy: 0 40px 100px rgba(0, 0, 0, 0.5);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: 1180px;
  --header-height: 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, 30, 146, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at right center,
      rgba(85, 217, 255, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #050617 0%, #06071c 40%, #040413 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 {
  border: 0;
  background: none;
  cursor: pointer;
}

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

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

.bg-line {
  position: absolute;
  width: 140vw;
  height: 180px;
  left: -20vw;
  opacity: 0.22;
  filter: blur(2px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(85, 217, 255, 0.15) 10%,
    rgba(255, 30, 146, 0.5) 28%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(127, 93, 255, 0.35) 68%,
    rgba(85, 217, 255, 0.2) 88%,
    transparent 100%
  );
  border-radius: 999px;
  transform: rotate(-42deg);
}

.bg-line-a {
  top: 6%;
}

.bg-line-b {
  top: 36%;
}

.bg-line-c {
  top: 68%;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.bg-glow-a {
  width: 28rem;
  height: 28rem;
  left: -6rem;
  top: 18rem;
  background: rgba(255, 30, 146, 0.18);
}

.bg-glow-b {
  width: 24rem;
  height: 24rem;
  right: -5rem;
  top: 8rem;
  background: rgba(85, 217, 255, 0.14);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.7) 0.7px,
      transparent 1px
    ),
    radial-gradient(
      circle at 70% 25%,
      rgba(255, 255, 255, 0.6) 0.6px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 70%,
      rgba(255, 255, 255, 0.7) 0.7px,
      transparent 1px
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 255, 255, 0.6) 0.6px,
      transparent 1px
    );
  background-size: 220px 220px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  backdrop-filter: blur(18px);
  background: linear-gradient(
    180deg,
    rgba(5, 7, 23, 0.92),
    rgba(5, 7, 23, 0.72)
  );
  border-bottom: 1px solid var(--line);
}

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

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

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(255, 30, 146, 0.98),
    rgba(127, 93, 255, 0.9)
  );
  box-shadow:
    0 12px 30px rgba(255, 30, 146, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.small-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

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

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

.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-btn {
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(255, 30, 146, 0.95),
    rgba(127, 93, 255, 0.95)
  );
  box-shadow: 0 16px 34px rgba(255, 30, 146, 0.2);
}

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

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

.hero {
  padding: 56px 0 24px;
}

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

.pill-label {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(255, 30, 146, 0.15),
    rgba(85, 217, 255, 0.09)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

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

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

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

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff1e92, #7f5dff);
  box-shadow:
    0 18px 42px rgba(255, 30, 146, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

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

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-badges span {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-weight: 600;
}

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

.stat-panel {
  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.025)
  );
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat-panel::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  right: -30px;
  top: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 30, 146, 0.18),
    transparent 68%
  );
}

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

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

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

.visual-grid-card {
  position: relative;
  min-height: 760px;
  border-radius: 36px;
  padding: 28px;
  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-heavy);
  overflow: hidden;
}

.visual-grid-card::before {
  content: '';
  position: absolute;
  inset: auto auto -15% -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(85, 217, 255, 0.14),
    transparent 70%
  );
}

.phone-shell {
  position: relative;
  width: min(340px, 100%);
  margin: 40px auto 0;
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(
    145deg,
    rgba(17, 16, 33, 0.98),
    rgba(6, 8, 20, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease;
}

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

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

.phone-shell-medium {
  width: min(320px, 100%);
}

.floating-note {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    135deg,
    rgba(255, 30, 146, 0.18),
    rgba(85, 217, 255, 0.09)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.floating-note span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(85, 217, 255, 0.9);
}

.note-a {
  left: 18px;
  top: 18px;
}

.note-b {
  right: 18px;
  top: 140px;
}

.note-c {
  left: 30px;
  bottom: 120px;
}

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

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

.mini-card strong {
  line-height: 1.45;
}

.mini-card-left {
  left: 24px;
  bottom: 24px;
}

.mini-card-right {
  right: 24px;
  bottom: 24px;
}

.section {
  padding: 86px 0;
}

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

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

.strip-box {
  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.025)
  );
  box-shadow: var(--shadow);
}

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

.strip-box strong {
  font-size: 1.02rem;
}

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

.section-heading h1,
.section-heading h2 {
  margin: 16px 0 14px;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

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

.feature-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

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

.preview-panel {
  padding: 26px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: var(--shadow-heavy);
}

.preview-text {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

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

.preview-text h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

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

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

.feature-card {
  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);
  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, 30, 146, 0.4);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 30, 146, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 30, 146, 0.08),
    rgba(85, 217, 255, 0.025)
  );
}

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

.feature-meta span {
  color: var(--pink-soft);
  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.24rem;
  line-height: 1.25;
}

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

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

.story-card {
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 30px;
  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);
}

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

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

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

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

.story-copy h3 {
  margin: 0 0 12px;
  font-size: 1.85rem;
  line-height: 1.08;
}

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

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

.story-media img {
  width: min(280px, 100%);
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

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

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(85, 217, 255, 0.26);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 30, 146, 0.08);
}

.gallery-tall {
  grid-row: span 2;
  min-height: 600px;
}

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

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

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

.gallery-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: 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);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.review-card:hover,
.spotlight-review {
  transform: translateY(-4px);
  border-color: rgba(255, 30, 146, 0.34);
  background: linear-gradient(
    180deg,
    rgba(255, 30, 146, 0.08),
    rgba(85, 217, 255, 0.025)
  );
}

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

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

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

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

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

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 30, 146, 0.16);
  background:
    radial-gradient(
      circle at left center,
      rgba(255, 30, 146, 0.12),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: var(--shadow-heavy);
}

.cta-copy h2 {
  margin: 16px 0 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

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

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

.site-footer {
  padding: 26px 0 20px;
  border-top: 1px solid var(--line);
  background: rgba(4, 5, 18, 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 80px;
}

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

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

.privacy-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);
}

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

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

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

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

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

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

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

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

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

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

.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: 1120px) {
  .hero-grid,
  .feature-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }

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

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

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

  .gallery-tall {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 430px;
  }

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

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

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

  .hero-visual,
  .visual-grid-card {
    min-height: 640px;
  }

  .note-a,
  .note-b,
  .note-c,
  .mini-card-left,
  .mini-card-right {
    position: static;
  }

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

  .story-media.dual-shot {
    flex-direction: column;
  }

  .story-media.dual-shot img {
    width: 100%;
  }
}

@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 var(--line);
    background: linear-gradient(
      180deg,
      rgba(10, 9, 31, 0.98),
      rgba(5, 7, 22, 0.98)
    );
    box-shadow: var(--shadow-heavy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .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-height: 76px;
  }

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

  .hero {
    padding-top: 30px;
  }

  .section {
    padding: 68px 0;
  }

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

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

  .visual-grid-card,
  .preview-panel,
  .feature-card,
  .story-card,
  .review-card,
  .privacy-card,
  .cta-box {
    border-radius: 24px;
  }

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

  .gallery-tall {
    grid-column: auto;
    min-height: 420px;
  }

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

  .cta-actions {
    width: 100%;
  }

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

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

  .btn {
    width: 100%;
  }

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

  .hero-badges span {
    width: 100%;
    text-align: center;
  }

  .feature-card h3,
  .preview-text h3 {
    font-size: 1.3rem;
  }

  .story-copy h3 {
    font-size: 1.45rem;
  }

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

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