:root {
  --ink: #181119;
  --ink-soft: #5f5861;
  --paper: #fffafc;
  --white: #ffffff;
  --pink-50: #fff1f7;
  --pink-100: #ffe0ed;
  --pink-300: #ee86b7;
  --pink-500: #cf2d82;
  --pink-600: #b30762;
  --pink-700: #90034c;
  --violet: #5e2be8;
  --line: rgba(63, 36, 53, 0.13);
  --shadow: 0 26px 70px rgba(92, 18, 59, 0.14);
  --radius: 28px;
  --container: min(1160px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -0.045em;
}

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

.section {
  padding: 116px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #7e43ff;
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: padding 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-color: var(--line);
  background: rgba(255, 250, 252, 0.88);
  box-shadow: 0 10px 30px rgba(58, 26, 45, 0.06);
  backdrop-filter: blur(18px);
}

.nav-wrap,
.primary-nav,
.brand,
.hero-actions,
.hero-stats,
.category-list,
.gallery-controls,
.footer-links,
.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
}

.nav-wrap {
  justify-content: space-between;
  min-height: 48px;
}

.brand {
  gap: 11px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.brand strong {
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 33px;
  height: 33px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--pink-600);
  box-shadow: 0 8px 18px rgba(179, 7, 98, 0.25);
}

.brand-mark i {
  position: absolute;
  width: 17px;
  height: 5px;
  border-radius: 8px;
  background: white;
  transform: rotate(-35deg);
}

.brand-mark i:nth-child(1) { top: 8px; left: 5px; }
.brand-mark i:nth-child(2) { top: 15px; left: 9px; width: 18px; }
.brand-mark i:nth-child(3) { top: 22px; left: 13px; width: 13px; }

.primary-nav {
  gap: 30px;
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #4f464f;
  font-size: 14px;
  font-weight: 650;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--pink-600);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 4px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 760;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
}

.button-primary {
  background: var(--ink);
  box-shadow: 0 16px 28px rgba(33, 18, 30, 0.18);
  color: var(--white);
}

.button-primary:hover {
  box-shadow: 0 19px 34px rgba(33, 18, 30, 0.24);
}

.button-store {
  gap: 13px;
  min-width: 184px;
  text-align: left;
}

.button-store > span:last-child {
  display: grid;
  gap: 2px;
  font-size: 17px;
}

.button-store small {
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.13em;
}

.play-mark {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid white;
  filter: drop-shadow(5px 0 0 rgba(238, 134, 183, 0.7));
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  font-weight: 760;
  line-height: 1.5;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 164px 0 100px;
  background:
    radial-gradient(circle at 9% 5%, rgba(244, 155, 196, 0.32), transparent 30%),
    linear-gradient(155deg, #fff9fb 8%, #fff2f7 56%, #fae6f0 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -230px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(179, 7, 98, 0.09);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-glow-one {
  top: 18%;
  right: 9%;
  width: 370px;
  height: 370px;
  background: rgba(204, 45, 128, 0.14);
}

.hero-glow-two {
  right: 28%;
  bottom: 3%;
  width: 160px;
  height: 160px;
  background: rgba(94, 43, 232, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 88px;
}

.eyebrow,
.kicker {
  margin-bottom: 20px;
  color: var(--pink-600);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-600);
  box-shadow: 0 0 0 6px rgba(179, 7, 98, 0.11);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(56px, 6.2vw, 88px);
  font-weight: 780;
}

.hero h1 em {
  color: var(--pink-600);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 630px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  gap: 25px;
  margin-bottom: 48px;
}

.hero-stats {
  gap: 0;
  margin: 0;
}

.hero-stats div {
  min-width: 126px;
  padding: 0 26px;
  border-left: 1px solid var(--line);
}

.hero-stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stats dt {
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: #756d75;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.orbit {
  position: absolute;
  border: 1px solid rgba(179, 7, 98, 0.16);
  border-radius: 50%;
}

.orbit-one { width: 490px; height: 490px; }
.orbit-two { width: 340px; height: 340px; border-style: dashed; }

.phone {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 8px;
  border: 2px solid #171217;
  border-radius: 32px;
  background: #171217;
  box-shadow: 0 28px 48px rgba(67, 14, 46, 0.23);
}

.phone img {
  width: 100%;
  border-radius: 23px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  width: 58px;
  height: 6px;
  border-radius: 10px;
  background: rgba(20, 13, 18, 0.85);
  transform: translateX(-50%);
}

.hero-phone {
  z-index: 2;
  width: 244px;
  transform: rotate(5deg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 195px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 18px 40px rgba(80, 22, 57, 0.15);
  backdrop-filter: blur(14px);
}

.float-card strong,
.float-card small {
  display: block;
}

.float-card strong { font-size: 13px; }
.float-card small { margin-top: 1px; color: #736a72; font-size: 10px; }

.scan-card { top: 22%; left: -5%; }
.clean-card { right: -8%; bottom: 22%; }

.mini-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--pink-100);
  color: var(--pink-700);
  font-size: 23px;
  font-weight: 800;
  place-items: center;
}

.pulse-dot {
  width: 13px;
  height: 13px;
  margin: 0 8px;
  border-radius: 50%;
  background: #31aa77;
  box-shadow: 0 0 0 7px rgba(49, 170, 119, 0.13);
}

.category-strip {
  border-top: 1px solid rgba(179, 7, 98, 0.08);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.category-list {
  justify-content: space-between;
  min-height: 94px;
  gap: 20px;
}

.category-list > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6c636b;
  font-size: 13px;
  font-weight: 720;
}

.category-list b {
  display: grid;
  width: 33px;
  height: 33px;
  border-radius: 10px;
  background: var(--pink-50);
  color: var(--pink-600);
  font-size: 9px;
  letter-spacing: -0.01em;
  place-items: center;
}

.section-heading,
.gallery-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 55px;
}

.section-heading h2,
.gallery-heading h2,
.process-heading h2,
.privacy-copy h2,
.faq-intro h2,
.cta-card h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 770;
}

.section-heading > p,
.process-heading > p,
.faq-intro > p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 325px;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(62, 29, 49, 0.05);
}

.feature-card h3 {
  max-width: 420px;
  margin: 0 0 14px;
  font-size: 31px;
}

.feature-card p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--pink-600);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.feature-card-large {
  grid-row: span 2;
  min-height: 670px;
  background: linear-gradient(150deg, #fff 25%, #ffedf5 100%);
}

.file-stack {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 330px;
  perspective: 900px;
}

.file-chip {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(400px, calc(100% - 70px));
  padding: 23px 25px;
  border: 1px solid rgba(179, 7, 98, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 34px rgba(93, 23, 62, 0.1);
  color: var(--pink-600);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.file-chip i {
  color: #5d535c;
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0;
}

.file-chip-one { top: 28px; transform: translateX(-53%) rotate(-5deg); }
.file-chip-two { top: 111px; z-index: 2; transform: translateX(-47%) rotate(4deg); }
.file-chip-three { top: 196px; z-index: 3; transform: translateX(-52%) rotate(-2deg); }

.feature-card-dark {
  background: #211820;
  color: white;
}

.feature-card-dark p { color: #c9bdc5; }
.feature-card-dark .feature-number { color: #f092bd; }

.ring-visual {
  position: absolute;
  top: 50px;
  right: 42px;
  display: grid;
  width: 100px;
  height: 100px;
  border: 12px solid rgba(255, 255, 255, 0.09);
  border-top-color: var(--pink-300);
  border-right-color: var(--pink-500);
  border-radius: 50%;
  transform: rotate(28deg);
  place-items: center;
}

.ring-visual span {
  font-size: 14px;
  font-weight: 820;
  transform: rotate(-28deg);
}

.feature-card-dark h3,
.feature-card-dark p {
  max-width: 330px;
}

.feature-card-accent {
  background: linear-gradient(140deg, #b30762, #d9368a);
  color: white;
}

.feature-card-accent p { color: rgba(255, 255, 255, 0.78); }
.feature-card-accent .feature-number { color: rgba(255, 255, 255, 0.78); }

.cleanup-line {
  position: absolute;
  top: 44px;
  right: 42px;
  display: flex;
  align-items: center;
}

.cleanup-line i {
  width: 30px;
  height: 8px;
  margin-left: -4px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.24);
}

.cleanup-line strong {
  display: grid;
  width: 44px;
  height: 44px;
  margin-left: 6px;
  border-radius: 50%;
  background: white;
  color: var(--pink-600);
  place-items: center;
}

.feature-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 300px;
  gap: 70px;
}

.storage-meter {
  padding: 30px;
  border-radius: 22px;
  background: var(--pink-50);
}

.meter-label,
.meter-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.meter-label span { color: var(--ink-soft); font-size: 13px; }
.meter-label strong { font-size: 14px; }

.meter-track {
  height: 17px;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 20px;
  background: #f1d2e1;
}

.meter-track span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink-600), #e95ca1);
}

.meter-legend {
  justify-content: flex-start;
  gap: 23px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.meter-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
}

.meter-legend .used { background: var(--pink-600); }
.meter-legend .free { background: #e7bfd2; }

.process {
  position: relative;
  overflow: hidden;
  background: #191218;
  color: var(--white);
}

.process::before {
  position: absolute;
  top: -240px;
  left: 45%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: rgba(179, 7, 98, 0.18);
  filter: blur(80px);
  content: "";
}

.process-noise {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.process .container {
  position: relative;
  z-index: 2;
}

.kicker-light { color: #ef8aba; }

.process-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 0.8fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 70px;
}

.process-heading .kicker {
  align-self: start;
  margin-top: 10px;
}

.process-heading > p {
  color: #bbb0b8;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  list-style: none;
}

.step {
  min-height: 335px;
  padding: 36px;
  background: #211920;
}

.step:nth-child(2) { background: #271b24; }

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 90px;
}

.step-top span {
  color: #ef8aba;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.step-top i {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: #ef8aba;
  font-style: normal;
  place-items: center;
}

.step h3 {
  margin-bottom: 14px;
  font-size: 27px;
}

.step p {
  margin-bottom: 0;
  color: #bdb2ba;
  font-size: 14px;
}

.gallery-section {
  overflow: hidden;
  background: #f7f1f4;
}

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

.gallery-controls {
  gap: 10px;
}

.gallery-controls button,
.lightbox-nav,
.lightbox-close {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  place-items: center;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease;
}

.gallery-controls button {
  width: 51px;
  height: 51px;
  font-size: 20px;
}

.gallery-controls button:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.gallery-viewport {
  width: min(1440px, 100vw);
  margin-inline: auto;
}

.gallery-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 5px max(24px, calc((100vw - 1160px) / 2)) 26px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.gallery-track::-webkit-scrollbar { display: none; }

.shot-card {
  flex: 0 0 310px;
  margin: 0;
  scroll-snap-align: start;
}

.shot-card > button {
  display: block;
  width: 100%;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #f0e6eb;
  cursor: zoom-in;
}

.shot-card:nth-child(2n) > button { background: #eadde4; }
.shot-card:nth-child(3n) > button { background: #f3e9ee; }

.shot-card .phone {
  width: 210px;
  box-shadow: 0 18px 32px rgba(67, 14, 46, 0.17);
  transition: transform 260ms ease;
}

.shot-card > button:hover .phone {
  transform: translateY(-5px) rotate(-1deg);
}

.shot-card figcaption {
  display: flex;
  gap: 15px;
  padding: 19px 7px 0;
}

.shot-card figcaption b {
  color: var(--pink-600);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.shot-card figcaption strong,
.shot-card figcaption small {
  display: block;
}

.shot-card figcaption strong { font-size: 14px; }
.shot-card figcaption small { margin-top: 3px; color: var(--ink-soft); font-size: 11px; }

.privacy-section {
  background: var(--white);
}

.privacy-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  padding: 70px;
  border: 1px solid rgba(179, 7, 98, 0.12);
  border-radius: 36px;
  background:
    radial-gradient(circle at 4% 5%, rgba(255, 255, 255, 0.95), transparent 33%),
    linear-gradient(145deg, #fff3f8, #ffe4ef);
}

.privacy-copy h2 {
  max-width: 590px;
  margin-bottom: 24px;
}

.privacy-copy > p:not(.kicker) {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.privacy-points {
  display: grid;
  gap: 12px;
}

.privacy-points > div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(179, 7, 98, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
}

.privacy-points > div > span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-700);
  font-weight: 850;
  place-items: center;
}

.privacy-points p { margin: 0; }
.privacy-points strong,
.privacy-points small { display: block; }
.privacy-points strong { font-size: 14px; }
.privacy-points small { margin-top: 3px; color: var(--ink-soft); font-size: 11px; line-height: 1.5; }

.faq-section {
  background: #faf5f7;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-intro h2 { margin-bottom: 24px; }

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 2px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 730;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-700);
  font-size: 19px;
  transition: transform 180ms ease;
  place-items: center;
}

.faq-list details[open] summary span { transform: rotate(45deg); }

.faq-list details p {
  max-width: 650px;
  margin: -6px 50px 24px 2px;
  color: var(--ink-soft);
}

.final-cta {
  background: var(--white);
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 92px 40px;
  border-radius: 38px;
  background: linear-gradient(135deg, #a7025a 5%, #ca2c7f 58%, #6e1fc5 135%);
  box-shadow: 0 30px 70px rgba(153, 8, 83, 0.23);
  color: white;
  text-align: center;
}

.cta-card::before,
.cta-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  content: "";
}

.cta-card::before {
  top: -270px;
  left: -130px;
  width: 570px;
  height: 570px;
}

.cta-orbit {
  right: -150px;
  bottom: -320px;
  width: 650px;
  height: 650px;
}

.cta-card > *:not(.cta-orbit) {
  position: relative;
  z-index: 2;
}

.cta-card h2 {
  max-width: 800px;
  margin: 0 auto 22px;
}

.cta-card > p:not(.kicker) {
  max-width: 610px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.button-light {
  background: white;
  box-shadow: 0 17px 34px rgba(70, 10, 45, 0.23);
  color: var(--ink);
}

.play-mark-dark {
  border-left-color: var(--ink);
  filter: drop-shadow(5px 0 0 rgba(207, 45, 130, 0.35));
}

.site-footer {
  padding: 20px 0 34px;
  background: white;
}

.footer-top {
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.footer-top > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-links {
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 700;
}

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

.footer-bottom {
  justify-content: space-between;
  padding-top: 25px;
  color: #81777f;
  font-size: 11px;
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(19, 11, 17, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox-panel {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(260px, 370px) 64px;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  gap: 24px;
  padding: 30px;
}

.lightbox-media {
  text-align: center;
}

.lightbox-media img {
  width: min(310px, 64vw);
  max-height: 75vh;
  margin-inline: auto;
  border: 8px solid #171217;
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-media p {
  display: flex;
  justify-content: space-between;
  margin: 18px auto 0;
  color: white;
  font-size: 13px;
}

.lightbox-media p span { color: rgba(255, 255, 255, 0.62); }

.lightbox-nav,
.lightbox-close {
  width: 54px;
  height: 54px;
  border-color: rgba(255, 255, 255, 0.23);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 21px;
  backdrop-filter: blur(8px);
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: white;
  color: var(--ink);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  font-size: 30px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  :root { --container: min(100% - 40px, 900px); }

  .primary-nav { gap: 20px; }
  .primary-nav > a:not(.button) { font-size: 13px; }

  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr 390px; gap: 35px; }
  .hero h1 { font-size: clamp(52px, 7vw, 72px); }
  .scan-card { left: -12%; }
  .clean-card { right: -6%; }

  .section-heading { gap: 45px; }
  .feature-card-dark h3,
  .feature-card-dark p { max-width: 250px; }
  .ring-visual { width: 82px; height: 82px; right: 28px; border-width: 10px; }

  .process-heading { grid-template-columns: 0.65fr 1.45fr 0.9fr; }
  .privacy-card { gap: 50px; padding: 55px; }
  .faq-grid { gap: 70px; }
}

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

  .no-js .nav-wrap { align-items: flex-start; }
  .no-js .primary-nav { flex-wrap: wrap; justify-content: flex-end; max-width: 460px; }

  .js .nav-toggle { display: block; }
  .js .primary-nav {
    position: fixed;
    inset: 73px 18px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 250, 252, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .js .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .js .primary-nav > a:not(.button) {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .js .primary-nav .button { margin-top: 10px; }

  .hero { padding-top: 135px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero h1 { max-width: 760px; }
  .hero-lede { max-width: 660px; }
  .hero-visual { min-height: 560px; margin-top: 10px; }
  .scan-card { left: calc(50% - 245px); }
  .clean-card { right: calc(50% - 250px); }

  .category-list { flex-wrap: wrap; justify-content: center; padding: 22px 0; }
  .category-list > span { flex: 0 0 calc(33.333% - 20px); justify-content: center; }

  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading > p { max-width: 650px; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-row: auto; }
  .feature-card-wide { grid-column: auto; }
  .feature-card-dark h3,
  .feature-card-dark p { max-width: 500px; }

  .process-heading { grid-template-columns: 1fr; gap: 18px; }
  .process-heading .kicker { margin-bottom: 0; }
  .process-heading > p { max-width: 620px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 240px; }
  .step-top { margin-bottom: 50px; }

  .privacy-card { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro > p { max-width: 600px; }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 32px);
    --radius: 22px;
  }

  html { scroll-padding-top: 76px; }
  .section { padding: 72px 0; }

  .site-header { padding: 12px 0; }
  .site-header.is-scrolled { padding: 8px 0; }
  .brand { font-size: 14px; }
  .brand-mark { width: 31px; height: 31px; }

  .no-js .nav-wrap { display: grid; gap: 15px; }
  .no-js .primary-nav { justify-content: flex-start; gap: 14px; }
  .no-js .primary-nav .button { width: 100%; }

  .hero { padding: 112px 0 72px; }
  .hero h1 { font-size: clamp(46px, 14vw, 66px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 18px; width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-stats { justify-content: center; width: 100%; }
  .hero-stats div { min-width: 0; flex: 1; padding: 0 10px; }
  .hero-stats dt { font-size: 15px; }
  .hero-stats dd { font-size: 8px; }

  .hero-visual { min-height: 510px; }
  .orbit-one { width: 380px; height: 380px; }
  .orbit-two { width: 280px; height: 280px; }
  .hero-phone { width: 210px; }
  .float-card { min-width: 168px; padding: 11px 12px; }
  .scan-card { top: 15%; left: 0; }
  .clean-card { right: 0; bottom: 14%; }
  .float-card strong { font-size: 11px; }
  .mini-icon { width: 32px; height: 32px; font-size: 18px; }

  .category-list > span { flex: 0 0 calc(50% - 12px); justify-content: flex-start; }

  .section-heading h2,
  .gallery-heading h2,
  .process-heading h2,
  .privacy-copy h2,
  .faq-intro h2,
  .cta-card h2 { font-size: clamp(38px, 11vw, 52px); }

  .feature-card { min-height: 310px; padding: 27px; }
  .feature-card h3 { font-size: 27px; }
  .feature-card-large { min-height: 615px; }
  .feature-card-wide { grid-template-columns: 1fr; gap: 35px; }
  .ring-visual { top: 34px; right: 24px; width: 75px; height: 75px; }
  .cleanup-line { top: 35px; right: 24px; }
  .file-chip { width: calc(100% - 36px); }
  .storage-meter { padding: 22px; }

  .step { min-height: 235px; padding: 27px; }

  .gallery-heading { grid-template-columns: 1fr; gap: 25px; }
  .gallery-controls { justify-self: start; }
  .shot-card { flex-basis: min(82vw, 310px); }

  .privacy-card { gap: 38px; padding: 32px 24px; border-radius: 26px; }

  .faq-list summary { font-size: 15px; }
  .faq-list details p { margin-right: 20px; font-size: 14px; }

  .cta-card { padding: 72px 24px; border-radius: 28px; }

  .footer-top,
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-top { gap: 20px; }
  .footer-links { flex-wrap: wrap; }
  .footer-bottom { gap: 7px; }

  .lightbox-panel {
    grid-template-columns: 48px minmax(190px, 1fr) 48px;
    gap: 8px;
    padding: 16px;
  }
  .lightbox-nav { width: 43px; height: 43px; }
  .lightbox-close { top: 15px; right: 15px; width: 45px; height: 45px; }
  .lightbox-media img { width: min(245px, 62vw); border-width: 6px; }
  .lightbox-media p { display: grid; gap: 2px; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
