@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0b1220;
  --bg-2: #10192a;
  --surface: rgba(20, 28, 44, 0.72);
  --surface-strong: rgba(16, 23, 37, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #f6f8fb;
  --muted: #b2bfd0;
  --muted-2: #8ea0b8;
  --cyan: #49d6ff;
  --violet: #b439ff;
  --magenta: #ff5f8f;
  --green: #8adf78;
  --warm: #ffbb6b;
  --shadow: 0 20px 60px rgba(2, 8, 18, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: 'Manrope', system-ui, sans-serif;
  background:
    radial-gradient(circle at 18% 14%, rgba(180, 57, 255, 0.18), transparent 28%),
    radial-gradient(circle at 80% 82%, rgba(73, 214, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #0d1524 0%, #0a101b 100%);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.noise::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(rgba(255,255,255,0.14) 0.5px, transparent 0.5px);
  background-size: 7px 7px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), transparent 80%);
  z-index: -1;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.bg-orb,
.bg-orb-2,
.bg-orb-3 {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}
.bg-orb { width: 320px; height: 320px; top: 90px; right: -80px; background: rgba(180,57,255,0.55); }
.bg-orb-2 { width: 380px; height: 380px; bottom: 80px; left: -120px; background: rgba(73,214,255,0.45); }
.bg-orb-3 { width: 260px; height: 260px; top: 42%; left: 36%; background: rgba(255,95,143,0.2); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(8, 13, 23, 0.88), rgba(8, 13, 23, 0.58));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header .inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background-color: #f7f9fc;
  border: 1px solid rgba(255,255,255,0.16);
  display: block;
  box-shadow:
    0 10px 24px rgba(2, 8, 18, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.82);
  background-image: url("assets/app-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.brand-mark::before {
  content: none;
}

.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.header-cta {
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.93rem;
  background: linear-gradient(135deg, rgba(73,214,255,0.18), rgba(180,57,255,0.22));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.play-store-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
  transition: 180ms ease;
}

.play-store-chip:hover {
  transform: translateY(-1px);
}

.play-store-chip img {
  width: auto;
  height: 38px;
}

.site-nav a.play-store-chip {
  padding: 0;
  border-radius: 10px;
}

.site-nav a.play-store-chip:hover,
.site-nav a.play-store-chip.active {
  background: transparent;
}

.nav-play-chip img {
  height: 34px;
}

.mobile-toggle {
  display: none;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

main {
  padding-bottom: 80px;
}

.page-hero,
.home-hero {
  padding-top: 72px;
}

.home-hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  align-content: center;
}

.hero-play-top {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-play-chip {
  filter: drop-shadow(0 16px 34px rgba(73, 214, 255, 0.14));
}

.hero-play-chip img {
  height: 52px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(73,214,255,0), rgba(73,214,255,1));
}

h1,
.hero-title {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 9.6ch;
}

.hero-copy p,
.page-intro {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 37rem;
}

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

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: 180ms ease;
}

.button {
  color: #08111d;
  background: linear-gradient(135deg, #74ebff, #5cc4ff 35%, #b055ff 100%);
  box-shadow: 0 12px 40px rgba(95, 180, 255, 0.25);
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-shell {
  width: min(100%, 760px);
}

.auth-card {
  background: rgba(255, 249, 241, 0.9);
  border: 1px solid rgba(173, 110, 71, 0.16);
  border-radius: 32px;
  padding: 30px 26px;
  color: #231814;
  box-shadow: 0 30px 90px rgba(60, 39, 20, 0.16);
  backdrop-filter: blur(12px);
}

.auth-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(175, 83, 45, 0.09);
  color: #a14c29;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.auth-title {
  margin: 16px 0 10px;
  max-width: 10ch;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #2d1d17;
}

.auth-copy {
  margin: 0;
  max-width: 34rem;
  color: #6f5a4f;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.55;
}

.auth-status {
  margin-top: 26px;
  border-radius: 20px;
  padding: 18px 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(46, 32, 24, 0.08);
  color: #5c4e46;
  font-size: 1rem;
  line-height: 1.55;
}

.auth-status.unavailable {
  background: rgba(255, 248, 246, 0.92);
  border-color: rgba(175, 83, 45, 0.2);
  color: #a14c29;
}

.auth-status.success {
  background: rgba(243, 253, 255, 0.92);
  border-color: rgba(73, 214, 255, 0.3);
  color: #185e73;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.auth-actions[hidden],
.auth-actions [hidden],
.auth-hint[hidden] {
  display: none !important;
}

.auth-actions .button {
  color: #fff8f3;
  background: linear-gradient(135deg, #b45f38, #c46d46 52%, #df9b72 100%);
}

.auth-actions .button-secondary {
  color: #9a4724;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(175, 83, 45, 0.16);
}

.auth-hint {
  margin: 18px 0 0;
  color: #7a665c;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .auth-card {
    padding: 26px 20px;
  }
}

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

.button-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.status-line {
  margin-top: 18px;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 680px;
}

.phone-frame,
.screen-card,
.showcase-card,
.surface,
.feature-card,
.info-card,
.detail-card,
.accordion-item,
.contact-card,
.legal-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
}

.phone-frame {
  width: 340px;
  border-radius: 42px;
  padding: 10px;
  position: absolute;
  right: 18px;
  top: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
}

.phone-frame img {
  border-radius: 32px;
  aspect-ratio: 9/19.5;
  object-fit: cover;
  width: 100%;
}

.screen-card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
}

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

.screen-card.card-a {
  width: 248px;
  left: 8px;
  top: 42px;
  transform: rotate(-8deg);
}

.screen-card.card-b {
  width: 230px;
  left: 32px;
  bottom: 84px;
  transform: rotate(7deg);
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 210px;
  padding: 18px;
  border-radius: 22px;
}

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

.floating-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 72px 0;
}

.section-tight { padding: 56px 0; }

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 42rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.feature-grid,
.info-grid,
.gallery-grid,
.two-col {
  display: grid;
  gap: 20px;
}

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

.difference-section {
  padding-top: 36px;
}

.difference-heading {
  justify-items: center;
  text-align: center;
  margin-bottom: 34px;
}

.difference-heading .eyebrow {
  margin-bottom: 8px;
  color: #c6bddf;
}

.difference-heading .eyebrow::before {
  display: none;
}

.difference-heading h2 {
  max-width: 13ch;
}

.difference-heading h2 span {
  background: linear-gradient(135deg, #f7f1ff 0%, #d9b0ff 56%, #b8d7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.difference-heading p {
  max-width: 50rem;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}

.difference-panel {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
}

.difference-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.feature-card,
.info-card,
.contact-card,
.legal-panel {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.feature-card h3,
.info-card h3,
.contact-card h3,
.legal-panel h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.feature-card p,
.info-card p,
.contact-card p,
.legal-panel p,
.legal-panel li,
.detail-copy p {
  margin: 0;
  color: var(--muted);
}

.small-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.gallery-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.showcase-card {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  min-height: 540px;
}

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

.showcase-card--full-shot {
  background:
    radial-gradient(circle at top, rgba(247, 198, 117, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(16, 22, 34, 0.98), rgba(8, 12, 20, 0.98));
}

.showcase-card--full-shot img {
  display: block;
  box-sizing: border-box;
  padding: 18px 18px 0;
  object-fit: contain;
  object-position: center top;
}

.showcase-copy {
  position: absolute;
  inset: auto 22px 22px 22px;
  border-radius: 24px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(7,12,20,0.2), rgba(7,12,20,0.74));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.showcase-copy h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

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

.stack {
  display: grid;
  gap: 20px;
}

.stack .showcase-card { min-height: 260px; }
.stack .showcase-card--full-shot { min-height: 540px; }

.detail-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.detail-card {
  border-radius: 30px;
  overflow: hidden;
  min-height: 420px;
}

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

.detail-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

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

.value-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.value-row:last-child { border-bottom: 0; padding-bottom: 0; }

.value-badge {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  color: #08111d;
  background: linear-gradient(135deg, rgba(73,214,255,0.95), rgba(180,57,255,0.95));
}

.value-row h4 { margin: 0 0 6px; font-size: 1.02rem; }
.value-row p { margin: 0; color: var(--muted); }

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

.mini-screen {
  border-radius: 26px;
  overflow: hidden;
  min-height: 420px;
}

.mini-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-callout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: stretch;
}

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

.trust-pill {
  border-radius: 22px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
  color: var(--muted);
}

.center-cta {
  text-align: center;
}

.center-cta .surface {
  border-radius: 34px;
  padding: 48px 26px;
}

.center-cta h2 { max-width: 10ch; margin-inline: auto; }
.center-cta p { max-width: 42rem; margin: 14px auto 0; color: var(--muted); }
.center-cta .hero-actions { justify-content: center; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0 44px;
  background: rgba(7, 12, 20, 0.42);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-note { color: var(--muted); font-size: 0.95rem; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-links a:hover { color: var(--text); }

.page-hero {
  padding-bottom: 26px;
}

.page-hero .inner {
  display: grid;
  gap: 16px;
  padding-top: 28px;
}

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

.accordion {
  display: grid;
  gap: 14px;
}

.accordion-item {
  border-radius: 24px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  background: transparent;
  color: inherit;
  border: 0;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  cursor: pointer;
}

.accordion-trigger span:first-child {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.accordion-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--muted);
  transition: 180ms ease;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.accordion-panel .panel-inner {
  padding: 0 24px 22px;
  color: var(--muted);
}

.accordion-item.open .accordion-icon {
  color: var(--text);
  background: linear-gradient(135deg, rgba(73,214,255,0.18), rgba(180,57,255,0.22));
}

.list-clean {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.list-clean li + li { margin-top: 10px; }

.meta-line {
  color: var(--muted-2);
  font-size: 0.95rem;
}

.callout {
  border-radius: 26px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(73,214,255,0.12), rgba(180,57,255,0.12));
  border: 1px solid rgba(255,255,255,0.1);
}

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

.delete-link-line {
  margin: 8px 0 0;
  color: var(--muted-2);
  font-size: 0.98rem;
  text-align: center;
}

.delete-link-line a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}

.delete-link-line a:hover {
  text-decoration: underline;
}

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

.delete-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  align-items: start;
}

.delete-web-flow {
  display: grid;
  gap: 18px;
  width: min(100%, 980px);
  margin-inline: auto;
}

.delete-summary-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.delete-values {
  margin-top: 2px;
}

.delete-callout {
  margin-top: 4px;
}

.delete-flow-card {
  display: grid;
  gap: 18px;
}

.delete-step {
  display: grid;
  gap: 14px;
}

.delete-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.10), rgba(255,255,255,0));
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.field-stack {
  display: grid;
  gap: 10px;
}

.field-label {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.text-input,
.code-input {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(8, 13, 23, 0.58);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  outline: none;
  transition: 180ms ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.text-input::placeholder,
.code-input::placeholder {
  color: rgba(178, 191, 208, 0.65);
}

.text-input:focus,
.code-input:focus {
  border-color: rgba(73, 214, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(73, 214, 255, 0.14);
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button-row.tight {
  margin-top: 16px;
}

.button-block {
  width: 100%;
}

.status-stack {
  display: grid;
  gap: 10px;
}

.status-banner {
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
}

.status-banner.hidden {
  display: none;
}

.status-banner.success {
  border-color: rgba(138, 223, 120, 0.28);
  background: rgba(138, 223, 120, 0.10);
  color: #d7f8c8;
}

.status-banner.warning {
  border-color: rgba(255, 187, 107, 0.28);
  background: rgba(255, 187, 107, 0.10);
  color: #ffe7c1;
}

.status-banner.error {
  border-color: rgba(255, 95, 143, 0.28);
  background: rgba(255, 95, 143, 0.12);
  color: #ffd0dc;
}

.micro-copy {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.status-summary {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.status-summary strong {
  font-size: 0.98rem;
  color: var(--text);
}

.status-summary strong.is-verified {
  color: #8adf78;
}

.status-summary .mono-line {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--muted);
  word-break: break-word;
}

.checkbox-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--magenta);
  flex: 0 0 auto;
}

.checkbox-copy {
  display: grid;
  gap: 6px;
}

.checkbox-copy strong {
  font-size: 0.98rem;
  color: var(--text);
}

.checkbox-copy p {
  margin: 0;
  color: var(--muted);
}

.legal-panel ul { margin: 0.8rem 0 0; padding-left: 1.1rem; }
.legal-panel li + li { margin-top: 10px; }

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

.gallery-title-section {
  padding-top: 74px;
  padding-bottom: 26px;
}

.gallery-title-block {
  display: grid;
  gap: 14px;
  max-width: 540px;
}

.gallery-title-block .eyebrow {
  margin-bottom: 0;
}

.gallery-title-block h1 {
  max-width: 5.4ch;
  font-size: clamp(3.4rem, 8vw, 5.6rem);
}

.gallery-separator {
  margin-top: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(107, 215, 255, 0.55), rgba(180, 57, 255, 0.28), rgba(255, 255, 255, 0.08));
}

.gallery-wall-section {
  padding: 8px 0 72px;
}

.gallery-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 24px;
  align-items: end;
}

.gallery-hero-copy {
  display: grid;
  gap: 12px;
}

.gallery-hero-panel {
  border-radius: 30px;
  padding: 28px;
  display: grid;
  gap: 20px;
}

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

.gallery-stat {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.gallery-stat strong {
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.gallery-stat span,
.gallery-note,
.gallery-toolbar-copy p,
.lightbox-caption p,
.lightbox-hint {
  color: var(--muted);
}

.gallery-note {
  margin: 0;
  font-size: 0.95rem;
}

.gallery-toolbar {
  border-radius: 30px;
  padding: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.gallery-toolbar-copy {
  display: grid;
  gap: 10px;
}

.gallery-toolbar-copy .eyebrow {
  margin-bottom: 0;
}

.gallery-toolbar-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

.gallery-toolbar-copy p,
.gallery-status {
  margin: 0;
}

.gallery-toolbar-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.gallery-pill,
.lightbox-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.gallery-status {
  margin-bottom: 16px;
}

.gallery-wall {
  columns: 4 240px;
  column-gap: 18px;
}

.gallery-card {
  width: 100%;
  display: inline-block;
  margin: 0 0 18px;
  padding: 12px;
  text-align: left;
  color: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 28px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
  cursor: pointer;
  break-inside: avoid;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(73, 214, 255, 0.26);
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  outline: none;
}

.gallery-card-media {
  position: relative;
}

.gallery-card img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  background: rgba(8, 13, 23, 0.7);
}

.gallery-card-badge,
.gallery-card-view {
  position: absolute;
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
}

.gallery-card-badge {
  top: 14px;
  left: 14px;
  color: var(--text);
  background: rgba(8, 13, 23, 0.6);
}

.gallery-card-view {
  right: 14px;
  bottom: 14px;
  color: #08111d;
  background: linear-gradient(135deg, rgba(116, 235, 255, 0.95), rgba(176, 85, 255, 0.95));
}

.gallery-card-copy {
  display: grid;
  gap: 10px;
  padding: 16px 6px 8px;
}

.gallery-card h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.gallery-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

body.gallery-lock {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(4, 9, 16, 0.9);
  backdrop-filter: blur(20px);
}

.lightbox-panel {
  width: min(1080px, 100%);
}

.lightbox-frame {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
}

.lightbox-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  background: rgba(255,255,255,0.06);
  transition: 180ms ease;
  cursor: pointer;
}

.lightbox-close {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  font-weight: 700;
}

.lightbox-nav {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  font-weight: 700;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255,255,255,0.12);
  outline: none;
}

.lightbox-image-stage {
  position: relative;
}

.lightbox-image-shell {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(8, 13, 23, 0.82);
  border: 1px solid rgba(255,255,255,0.08);
}

.lightbox-image-shell img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.lightbox-side-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(7, 12, 20, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.lightbox-side-nav:hover,
.lightbox-side-nav:focus-visible {
  background: rgba(255,255,255,0.14);
  border-color: rgba(73, 214, 255, 0.3);
  outline: none;
}

.lightbox-side-nav-prev {
  left: 18px;
}

.lightbox-side-nav-next {
  right: 18px;
}

.lightbox-caption {
  display: grid;
  gap: 10px;
}

.lightbox-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lightbox-caption h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.lightbox-controls {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 12px;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .gallery-grid,
  .detail-grid,
  .split-callout,
  .grid-2,
  .two-col {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .trust-strip,
  .kicker-grid,
  .personalization-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  h1, .hero-title { max-width: 11ch; }
}

@media (max-width: 760px) {
  .site-header .inner {
    min-height: 72px;
  }

  .site-nav,
  .header-cta { display: none; }
  .mobile-toggle { display: inline-grid; place-items: center; }

  .site-nav.open {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(9, 14, 24, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .site-nav.open a,
  .site-nav.open .header-cta-inline {
    padding: 14px 16px;
    border-radius: 16px;
    text-decoration: none;
  }

  .site-nav.open .header-cta-inline {
    display: inline-flex;
    justify-content: center;
    font-weight: 700;
    color: #08111d;
    background: linear-gradient(135deg, #74ebff, #5cc4ff 35%, #b055ff 100%);
  }

  .container { width: min(calc(100% - 24px), var(--max)); }
  .home-hero, .page-hero { padding-top: 44px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button, .button-secondary { width: 100%; }
  .hero-visual { min-height: 520px; }
  .phone-frame { width: 250px; right: 0; }
  .screen-card.card-a { width: 180px; left: 0; top: 70px; }
  .screen-card.card-b { width: 170px; left: 18px; bottom: 80px; }
  .floating-note { width: min(190px, 54vw); }
  .feature-grid,
  .trust-strip,
  .kicker-grid,
  .personalization-grid { grid-template-columns: 1fr; }
  .gallery-stat-grid { grid-template-columns: 1fr; }
  .gallery-wall {
    columns: 2 170px;
    column-gap: 14px;
  }
  .gallery-card {
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 24px;
  }
  .gallery-card img {
    border-radius: 18px;
  }
  .gallery-toolbar,
  .gallery-hero-panel {
    padding: 22px;
  }
  .lightbox {
    padding: 16px;
  }
  .lightbox-frame {
    padding: 16px;
    border-radius: 28px;
  }
  .lightbox-image-shell img {
    max-height: 60vh;
  }
  .lightbox-side-nav {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }
  .lightbox-side-nav-prev {
    left: 10px;
  }
  .lightbox-side-nav-next {
    right: 10px;
  }
  .showcase-card { min-height: 420px; }
  .stack .showcase-card,
  .mini-screen,
  .detail-card { min-height: 320px; }
  .stack .showcase-card--full-shot { min-height: 420px; }
  .center-cta .surface { padding: 36px 20px; }
  .delete-layout { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .gallery-wall {
    columns: 1;
  }
}
