/* ============================================================
   Analogue — cinematic landing page
   ============================================================ */

:root {
  --bg: #09090b;
  --bg-2: #0e0e11;
  --panel: #121216;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f2;
  --muted: #9a9aa2;
  --faint: #6a6a72;
  --accent-a: #7b8cff;
  --accent-b: #b48cff;
  --accent-c: #ff9ec6;
  --radius: 20px;
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --pad: clamp(20px, 5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-padding-top: 80px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; }
ul, ol { list-style: none; }

/* animated hairline (JS scales X from 0) */
.rule {
  display: block; height: 1px; width: 100%;
  background: var(--line-strong);
  transform-origin: left center;
}
.bp-desktop { display: none; }
@media (min-width: 760px) { .bp-desktop { display: inline; } }

::selection { background: rgba(180, 140, 255, 0.35); }

/* ---------- film grain overlay ---------- */
.grain {
  position: fixed; inset: -100px; z-index: 60; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.045;
  animation: grain-jitter 0.6s steps(3) infinite;
}
@keyframes grain-jitter {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-30px, 18px); }
  66% { transform: translate(24px, -26px); }
  100% { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) { .grain { animation: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 0 var(--pad);
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
.nav::before {
  content: ""; position: absolute; inset: 0 0 -40px; z-index: -1;
  background: linear-gradient(to bottom,
    rgba(9, 9, 11, 0.82) 0%, rgba(9, 9, 11, 0.62) 35%,
    rgba(9, 9, 11, 0.34) 62%, rgba(9, 9, 11, 0.1) 84%, rgba(9, 9, 11, 0) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
  pointer-events: none;
}
.nav::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: rgba(255, 255, 255, 0.07);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  max-width: 1320px; margin: 0 auto;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; }
.brand-img { height: 26px; width: auto; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  position: relative; padding: 8px 14px; font-size: 13.5px; color: var(--muted);
  border-radius: 99px; transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px; border-radius: 99px; font-size: 14.5px; font-weight: 550;
  letter-spacing: 0.01em; overflow: hidden; will-change: transform;
  transition: box-shadow 0.3s;
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-light { background: var(--text); color: #0a0a0c; }
.btn-light:hover { box-shadow: 0 6px 30px rgba(244, 244, 242, 0.25); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.3); }
.btn .btn-label { position: relative; z-index: 1; display: inline-block; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(180px, 24vh, 300px) var(--pad) 0; }
.hero-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.hero-title {
  font-size: clamp(38px, 5.4vw, 74px); line-height: 1.08; letter-spacing: -0.03em;
  font-weight: 450; margin-bottom: 36px; text-wrap: balance;
}
@media (max-width: 759px) {
  .hero-title { font-size: clamp(27px, 7.6vw, 34px); }
  .hero-title .line { display: contents; overflow: visible; padding: 0; margin: 0; }
  .hero-title .line-inner { display: inline; }
}
.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line-inner { display: inline-block; will-change: transform; }
.hero-sub { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); margin-bottom: 48px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- showcase slider ---------- */
.showcase { padding: clamp(120px, 17vh, 200px) 0 0; max-width: 1320px; margin: 0 auto; }
.showcase-stage {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  border-radius: clamp(16px, 2vw, 28px); overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line);
  isolation: isolate; will-change: transform;
}

.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; }
.slide.is-active { opacity: 1; visibility: visible; }
.slide img, .slide video {
  width: 100%; height: 100%; object-fit: cover; will-change: transform;
  transform-origin: 50% 50%;
}
.shot-meta {
  position: absolute; z-index: 3;
  left: clamp(14px, 1.8vw, 24px); bottom: clamp(12px, 1.8vw, 22px);
  display: flex; flex-direction: column; gap: 2px;
  font-family: ui-monospace, "SF Mono", "Menlo", monospace;
  font-size: 10.5px; line-height: 1.5; letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  pointer-events: none; user-select: none;
}
.shot-meta > :not(:first-child) { opacity: 0.82; }
.shot-meta a { position: relative; align-self: flex-start; color: inherit; text-decoration: none; pointer-events: auto; transition: opacity 0.25s; }
.shot-meta a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.shot-meta a:hover { opacity: 1; }
.shot-meta a:hover::after { transform: scaleX(1); transform-origin: left; }

/* tabs */
.showcase-tabs {
  display: flex; gap: clamp(12px, 1.6vw, 20px); justify-content: center;
  margin-top: clamp(20px, 3vh, 32px);
}
@media (max-width: 760px) {
  .showcase-tabs {
    justify-content: flex-start;
    max-width: 100%; overflow-x: auto; overscroll-behavior-x: contain;
    padding: 0 2px 10px; margin-bottom: -10px;
    scroll-snap-type: x proximity; scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .showcase-tabs::-webkit-scrollbar { display: none; }
  .showcase-tabs .tab { scroll-snap-align: center; }
}
.tab {
  position: relative; width: clamp(64px, 8vw, 108px);
  background: none; border: 0; padding: 0; cursor: pointer; flex-shrink: 0;
}
.tab-thumb {
  position: relative; display: block; aspect-ratio: 16 / 10;
  border-radius: 10px; overflow: hidden;
  opacity: 0.4; filter: saturate(0.7);
  transform: translateZ(0);
  transition: opacity 0.35s, filter 0.35s, transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.tab:hover .tab-thumb { opacity: 0.75; transform: translateY(-2px); }
.tab.is-active .tab-thumb { opacity: 1; filter: none; }
.tab-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tab-type {
  position: absolute; right: 6px; bottom: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(8, 8, 10, 0.6); backdrop-filter: blur(4px);
  color: #fff;
}
.tab-type svg { width: 6px; height: 7px; margin-left: 1px; }
.tab-progress {
  display: block; height: 2px; margin-top: 10px;
  background: rgba(255, 255, 255, 0.14); border-radius: 1px; overflow: hidden;
  opacity: 0; transition: opacity 0.2s ease;
}
.tab.is-active .tab-progress { opacity: 1; }
.tab-progress i {
  display: block; height: 100%; width: 100%;
  background: #fff; transform: scaleX(0); transform-origin: left;
}

/* ============================================================
   STATEMENT + PILLARS
   ============================================================ */
.statement { padding: clamp(130px, 17vh, 230px) var(--pad); max-width: 1320px; margin: 0 auto; }
.statement-text {
  font-size: clamp(34px, 4.8vw, 68px); line-height: 1.12; letter-spacing: -0.03em;
  font-weight: 450; max-width: 34ch; margin: 0 0 clamp(80px, 11vh, 130px); text-align: left; text-wrap: balance;
}
.statement-text .w { display: inline-block; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; gap: 40px; } }
.pillar { position: relative; }
.pillar .rule { margin-bottom: 28px; }
.pillar-icon {
  width: 28px; height: 28px; margin-bottom: 40px;
  color: var(--text);
}
.pillar-icon svg { width: 100%; height: 100%; display: block; }
.pillar h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; }
.pillar p { font-size: 15px; color: var(--muted); }

/* ============================================================
   PIPELINE — before / after compare
   ============================================================ */
.compare-section {
  border-top: 1px solid var(--line);
  padding: clamp(110px, 14vh, 190px) var(--pad);
}
.compare-wrap {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(44px, 6vw, 96px); align-items: center;
}
@media (max-width: 900px) { .compare-wrap { grid-template-columns: 1fr; } }
.compare {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  cursor: ew-resize; touch-action: pan-y;
  --split: 50%;
}
.compare img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  -webkit-user-drag: none; user-select: none;
}
.cmp-after { filter: saturate(0.95) contrast(0.97); }
.cmp-before {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}
.cmp-before img { filter: saturate(1.55) contrast(1.32) brightness(1.07); }
.cmp-divider {
  position: absolute; top: 0; bottom: 0; left: var(--split); width: 1px;
  background: rgba(255, 255, 255, 0.85); pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
.cmp-divider i {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-style: normal; font-size: 13px; letter-spacing: 1px; color: #fff;
  background: rgba(8, 8, 10, 0.55); border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.cmp-label {
  position: absolute; top: 14px; z-index: 2;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 5px 10px; border-radius: 6px;
  background: rgba(8, 8, 10, 0.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
.cmp-label.a { left: 14px; }
.cmp-label.b { right: 14px; }
.compare-copy .section-title { margin-bottom: 28px; }
.compare-p { font-size: 16.5px; color: var(--muted); max-width: 46ch; }
.compare-p + .compare-p { margin-top: 18px; }

/* ============================================================
   LOOKS
   ============================================================ */
.looks {
  position: relative; isolation: isolate;
  padding: clamp(110px, 14vh, 200px) var(--pad);
  border-top: 1px solid var(--line);
  background: radial-gradient(900px 500px at 50% 38%, rgba(124, 100, 255, 0.07), transparent 70%), var(--bg);
  overflow: clip;
}

/* aurora canvas: blue/violet light masses, additively blended, low-res + blur = liquid */
.aurora {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%;
  filter: blur(48px) saturate(1.25);
  opacity: 0.12;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(115% 95% at 50% 48%, #000 50%, transparent 98%);
  mask-image: radial-gradient(115% 95% at 50% 48%, #000 50%, transparent 98%);
}
.section-title {
  font-size: clamp(28px, 3.8vw, 52px); letter-spacing: -0.025em; line-height: 1.1;
  font-weight: 450; text-align: center; margin-bottom: clamp(50px, 7vh, 90px);
}
.section-title.left { text-align: left; }
.section-title.center { text-align: center; }

.looks-deck {
  position: relative;
  display: grid; grid-template-columns: repeat(3, minmax(0, 248px));
  justify-content: center; gap: clamp(48px, 7vw, 110px) clamp(44px, 6.5vw, 100px);
  perspective: 1200px; max-width: 1200px;
  margin: clamp(70px, 10vh, 130px) auto clamp(100px, 14vh, 170px);
}
@media (max-width: 700px) { .looks-deck { grid-template-columns: repeat(2, minmax(0, 220px)); } }

.look-card {
  position: relative; display: block;
  border: 0; background: none; padding: 0; cursor: pointer;
  font: inherit; color: inherit;
  transform: rotate(calc(var(--r, 0) * 1deg));
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.7)) drop-shadow(0 48px 72px rgba(0, 0, 0, 0.9));
  will-change: transform, filter;
  transition: filter 0.4s;
}
.look-card:hover { filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.75)) drop-shadow(0 64px 88px rgba(0, 0, 0, 0.95)); }
.look-art { display: block; position: relative; will-change: transform; }
.look-card img { width: 100%; height: auto; display: block; }
.look-art::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 46px; height: 46px; margin: -23px 0 0 -23px;
  background:
    linear-gradient(#fff 0 0) center / 14px 1px no-repeat,
    linear-gradient(#fff 0 0) center / 1px 14px no-repeat,
    rgba(8, 8, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transform: scale(0.6) rotate(calc(var(--r, 0) * -1deg));
  transition: opacity 0.25s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.look-card:hover .look-art::after, .look-card:focus-visible .look-art::after {
  opacity: 1; transform: scale(1) rotate(calc(var(--r, 0) * -1deg));
}

/* look detail panel */
.look-modal { position: fixed; inset: 0; z-index: 80; }
.look-modal[hidden] { display: none; }
.lm-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 5, 7, 0.72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.lm-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 70vw;
  background: var(--bg-2);
  border-left: 1px solid var(--line-strong);
  padding: clamp(48px, 9vh, 84px) 0 clamp(32px, 5vh, 48px);
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(24px, 4vh, 36px);
  will-change: transform;
  overflow-y: auto;
}
.lm-close {
  position: absolute; top: 22px; right: 24px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.03);
  color: var(--text); cursor: pointer;
  transition: transform 0.35s, border-color 0.3s;
}
.lm-close::before, .lm-close::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 15px; height: 1px; background: currentColor;
}
.lm-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.lm-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.lm-close:hover { transform: rotate(90deg); border-color: rgba(255, 255, 255, 0.4); }
.lm-title {
  padding: 0 clamp(36px, 7vw, 120px);
  font-size: clamp(28px, 3vw, 42px); font-weight: 450; letter-spacing: -0.02em;
}
.lm-strip {
  display: flex; gap: 14px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 0 clamp(36px, 7vw, 120px) 6px;
  scrollbar-width: none; cursor: grab;
  user-select: none; -webkit-user-select: none;
  touch-action: pan-x pan-y;
}
.lm-strip::-webkit-scrollbar { display: none; }
.lm-strip.is-dragging { cursor: grabbing; }
.lm-strip img {
  height: clamp(240px, 40vh, 440px); width: auto; max-width: none; flex-shrink: 0;
  -webkit-user-drag: none;
}
.lm-desc {
  padding: 0 clamp(36px, 7vw, 120px);
  color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 72ch;
}
@media (max-width: 860px) { .lm-panel { width: 94vw; } }

/* compact note under the looks deck — icon badge on the left, copy on the right */
.looks-note {
  display: flex; align-items: flex-start; gap: clamp(16px, 2vw, 22px);
  max-width: 540px; margin: clamp(6px, 2vh, 18px) auto 0; text-align: left;
}
.looks-note-icon {
  flex: none; width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: 12px;
  background: rgba(255, 255, 255, 0.02); color: var(--text);
}
.looks-note-icon svg { width: 22px; height: 22px; display: block; }
.looks-note-text h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.looks-note-text p { font-size: 15px; line-height: 1.55; color: var(--muted); }

/* ============================================================
   PHONE
   ============================================================ */
.phone-section { position: relative; border-top: 1px solid var(--line); }
.phone-stack {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(48px, 7vh, 80px);
  padding: clamp(110px, 14vh, 190px) var(--pad) 0;
  max-width: 1380px; margin: 0 auto;
}
.phone-copy { text-align: center; }
.phone-copy .section-title { margin-bottom: 22px; }
.lede { color: var(--muted); font-size: 17px; max-width: 52ch; }
.phone-copy .lede { margin: 0 auto; max-width: 68ch; }

.phone-wrap { width: 100%; display: flex; justify-content: center; perspective: 1400px; }
.phone {
  position: relative; width: min(100%, 760px); aspect-ratio: 2.164;
  border-radius: clamp(34px, 4.6vw, 54px);
  background: linear-gradient(145deg, #3a3a3f, #1b1b1f 40%, #2c2c31 70%, #4a4a50);
  padding: clamp(8px, 1.1vw, 12px);
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255,255,255,0.06),
              inset 0 0 2px 1px rgba(255, 255, 255, 0.18);
  will-change: transform;
}
.phone-screen {
  position: relative; width: 100%; height: 100%; overflow: hidden;
  border-radius: clamp(27px, 3.7vw, 44px); background: #000;
}
.phone-screen > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phone-island {
  position: absolute; left: clamp(20px, 3vw, 32px); top: 50%; transform: translateY(-50%);
  width: clamp(8px, 1.2vw, 12px); height: clamp(54px, 8vw, 84px);
  border-radius: 99px; background: #000; z-index: 5;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}

/* camera UI */
.cam-ui {
  position: absolute; inset: 0; z-index: 3;
  font-variant-numeric: tabular-nums; color: rgba(255,255,255,0.92);
}
.cam-ui::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.32), transparent 18%, transparent 78%, rgba(0,0,0,0.35)),
              linear-gradient(to bottom, rgba(0,0,0,0.3), transparent 20%);
}
.cam-top {
  position: absolute; top: clamp(10px, 1.8vw, 18px); left: clamp(40px, 6vw, 64px); right: clamp(60px, 9vw, 96px);
  display: flex; align-items: center; gap: 10px; font-size: clamp(8px, 1.1vw, 11px);
  letter-spacing: 0.1em;
}
.cam-chip {
  padding: 3px 8px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.25);
  font-weight: 600;
}
.cam-log { background: #facc15; color: #000; border-color: transparent; }
.cam-tc { margin-left: auto; opacity: 0.85; }
.cam-batt { width: 20px; height: 9px; border: 1px solid rgba(255,255,255,0.5); border-radius: 3px; padding: 1.5px; }
.cam-batt i { display: block; width: 70%; height: 100%; background: #34d399; border-radius: 1px; }
.cam-left {
  position: absolute; left: clamp(40px, 6vw, 64px); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: clamp(8px, 1.4vw, 14px);
  font-size: clamp(7px, 1vw, 10px); letter-spacing: 0.12em; color: rgba(255,255,255,0.55);
}
.cam-left b { display: block; font-size: clamp(10px, 1.4vw, 14px); color: #fff; letter-spacing: 0.02em; }
.cam-right {
  position: absolute; right: clamp(16px, 2.6vw, 28px); top: 50%; transform: translateY(-50%);
}
.cam-shutter {
  display: grid; place-items: center; width: clamp(40px, 6vw, 58px); height: clamp(40px, 6vw, 58px);
  border-radius: 50%; border: 2.5px solid rgba(255,255,255,0.85);
}
.cam-shutter i {
  width: 72%; height: 72%; border-radius: 50%; background: #ff453a;
  animation: shutter-pulse 2.4s ease-in-out infinite;
}
@keyframes shutter-pulse { 50% { transform: scale(0.88); } }
.cam-bottom {
  position: absolute; bottom: clamp(10px, 1.8vw, 18px); left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px; font-size: clamp(8px, 1vw, 10.5px);
}
.cam-zoom {
  width: clamp(20px, 3vw, 28px); height: clamp(20px, 3vw, 28px); border-radius: 50%;
  display: grid; place-items: center; background: rgba(20,20,24,0.55); color: rgba(255,255,255,0.7);
}
.cam-zoom.is-on { background: rgba(255,255,255,0.92); color: #000; font-weight: 700; }
.cam-presetchip {
  margin-left: 10px; padding: 4px 12px; border-radius: 99px;
  background: rgba(20,20,24,0.55); border: 1px solid rgba(255,255,255,0.2);
  font-weight: 550; font-size: clamp(9px, 1.2vw, 12px);
}
.cam-focus {
  position: absolute; left: 44%; top: 38%; width: clamp(48px, 7vw, 72px); aspect-ratio: 1;
}
.cam-focus b { position: absolute; width: 12px; height: 12px; border: 1.5px solid #facc15; }
.cam-focus .fa { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.cam-focus .fb { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.cam-focus .fc { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.cam-focus .fd { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.cam-waveform {
  position: absolute; right: clamp(60px, 9vw, 96px); bottom: clamp(12px, 2vw, 20px);
  width: clamp(70px, 10vw, 120px); color: #34d399; opacity: 0.85;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 6px; padding: 4px 6px;
  background: rgba(0,0,0,0.4);
}
.cam-waveform svg { width: 100%; height: auto; display: block; }
@media (max-width: 700px) {
  .cam-left, .cam-waveform { display: none; }
  .cam-bottom { gap: 6px; }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: clamp(70px, 9vh, 120px) var(--pad) clamp(110px, 14vh, 190px); max-width: 1320px; margin: 0 auto; }
.features-head { text-align: center; margin-bottom: clamp(54px, 8vh, 96px); }
.features-head .section-title { margin-bottom: 18px; }
.features-head .lede { margin: 0 auto; }

/* uncarded icon grid */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(40px, 5vh, 56px) clamp(28px, 3vw, 48px);
}
@media (max-width: 1080px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-item { min-width: 0; }
.feature-item .feature-icon {
  display: block; width: 28px; height: 28px; margin-bottom: 20px; color: var(--text);
}
.feature-item .feature-icon svg { width: 100%; height: 100%; display: block; }
.feature-item h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.feature-item p { font-size: 14.5px; color: var(--muted); }

/* numbered list kept as design reference */
.feature-list[hidden] { display: none; }
.feature-list { max-width: 1040px; margin: 0 auto; }
.feature {
  position: relative;
  display: grid; grid-template-columns: 72px 1fr 1.5fr;
  align-items: baseline; gap: 24px;
  padding: 26px 0 27px;
}
.feature .rule { position: absolute; left: 0; right: 0; bottom: 0; width: auto; }
.feature-num {
  font-size: 12px; color: var(--faint); font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.feature:hover .feature-num { color: var(--text); }
.feature h3 {
  font-size: 18px; font-weight: 550; letter-spacing: -0.01em;
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
.feature:hover h3 { transform: translateX(8px); }
.feature p { font-size: 15px; color: var(--muted); }
@media (max-width: 760px) {
  .feature { grid-template-columns: 44px 1fr; }
  .feature p { grid-column: 2; }
}

/* ============================================================
   VOICES (testimonials)
   ============================================================ */
.voices { padding: clamp(110px, 14vh, 190px) 0; border-top: 1px solid var(--line); }
.voices-head { padding: 0 var(--pad); margin-bottom: clamp(46px, 6vh, 70px); }
.rating { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-top: 8px; }
.rating b { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.stars { color: #facc15; font-size: 15px; letter-spacing: 3px; }
.rating-sub { font-size: 13px; color: var(--faint); }

.reviews {
  display: flex; align-items: stretch; gap: clamp(28px, 3vw, 48px);
  padding: 0 var(--pad);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none; -webkit-user-select: none;
}
.reviews::-webkit-scrollbar { display: none; }
.reviews.is-dragging { cursor: grabbing; }
.review {
  position: relative; padding: 26px 0 0;
  display: flex; flex-direction: column; gap: 12px;
  flex-shrink: 0; width: clamp(280px, 24vw, 360px);
}
.review > .rule { position: absolute; top: 0; left: 0; }
.review-stars { color: #facc15; font-size: 13px; letter-spacing: 2.5px; }
.review h3 { font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em; }
.review p { font-size: 15px; line-height: 1.6; color: var(--muted); flex: 1; }
.review-name { font-size: 13px; color: var(--faint); }
.rl { display: block; overflow: hidden; }
.rl-in { display: block; will-change: transform; }

/* ============================================================
   GALLERY — Captured with Analogue
   ============================================================ */
.gallery { border-top: 1px solid var(--line); }
.gallery-inner { padding: clamp(110px, 14vh, 190px) 0; }
.gallery-head { padding: 0 var(--pad); }
.gallery-head .section-title { margin-bottom: clamp(50px, 7vh, 80px); }
.gallery-track {
  display: flex; align-items: stretch; gap: clamp(14px, 2vw, 26px);
  padding: 0 var(--pad);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none; -webkit-user-select: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.is-dragging { cursor: grabbing; }
.gallery-track.is-dragging .shot img { transition: none; }
.gallery-cta { display: flex; justify-content: center; padding: clamp(46px, 6vh, 76px) var(--pad) 0; }
.gallery-cta .btn-label { display: inline-flex; align-items: center; gap: 9px; }
.gallery-cta svg { width: 17px; height: 17px; }
.shot {
  position: relative; display: block; flex-shrink: 0;
  width: clamp(231px, 23.8vw, 350px); aspect-ratio: 3 / 4;
  overflow: hidden; border-radius: 14px;
}
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85);
  transition: filter 0.5s, transform 0.8s cubic-bezier(0.32, 0.72, 0, 1);
  -webkit-user-drag: none;
}
.shot:hover img { filter: saturate(1.05); transform: scale(1.04); }
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4, 4, 6, 0.55), transparent 30%);
  opacity: 0.7; transition: opacity 0.45s;
}
.shot:hover::after { opacity: 1; }
.shot-handle {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}
.shot-handle::after {
  content: ""; display: block; height: 1px; margin-top: 4px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.shot:hover .shot-handle::after { transform: scaleX(1); }

/* ============================================================
   CTA / FOOTER
   ============================================================ */
.cta {
  padding: clamp(130px, 18vh, 240px) var(--pad) 0;
  border-top: 1px solid var(--line); text-align: center;
  background: radial-gradient(1000px 540px at 50% 0%, rgba(124, 100, 255, 0.09), transparent 70%), var(--bg);
  overflow: clip;
}
.cta-title {
  font-size: clamp(26px, 4.4vw, 60px); line-height: 1.06; letter-spacing: -0.03em;
  font-weight: 450; margin-bottom: 56px;
}
.cta-sub { color: var(--muted); margin-bottom: 40px; font-size: 17px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.appstore {
  display: inline-block; border-radius: 9px; will-change: transform;
  transition: box-shadow 0.3s, transform 0.3s;
}
.appstore img { display: block; height: 54px; width: auto; }
.appstore:hover { transform: translateY(-2px); box-shadow: 0 10px 44px rgba(244, 244, 242, 0.22); }
.cta-req { font-size: 12.5px; color: var(--faint); }

.footer { margin-top: clamp(110px, 14vh, 180px); border-top: 1px solid var(--line); text-align: left; position: relative; }
.footer-cols {
  max-width: 1320px; margin: 0 auto; padding: 64px 0 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
}
@media (max-width: 860px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-brand { display: block; }
.footer-brand .brand-img { height: 24px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: var(--faint); max-width: 30ch; }
.footer-cols nav h4 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; font-weight: 500; }
.footer-cols nav a { display: block; font-size: 14px; color: var(--muted); padding: 5px 0; transition: color 0.25s, transform 0.25s; }
.footer-cols nav a:hover { color: var(--text); transform: translateX(3px); }
.disabled-link { display: block; font-size: 14px; color: var(--muted); padding: 5px 0; opacity: 0.5; cursor: not-allowed; }
.footer-base {
  max-width: 1320px; margin: 0 auto; padding: 22px 0 28px;
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); font-size: 12.5px; color: var(--faint); text-align: center;
}
.footer-wordmark {
  overflow: hidden; line-height: 0.8; pointer-events: none; user-select: none;
  margin-top: 10px;
}
.footer-wordmark span {
  display: block; font-size: clamp(90px, 17.5vw, 270px); font-weight: 700; letter-spacing: -0.05em;
  text-align: center; transform: translateY(18%);
  background: linear-gradient(to bottom, rgba(255,255,255,0.14), rgba(255,255,255,0.015));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  will-change: transform;
}

/* ============================================================
   shared reveal helpers (JS sets initial states)
   ============================================================ */
.tilt { transform-style: preserve-3d; }
