/* ═══════════════════════════════════════════════
   NEXDOR — Main stylesheet
   Edit colors, fonts, spacing here. Everything cascades.
   ═══════════════════════════════════════════════ */

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

:root {
  /* ── Colors ── */
  --ink:        #14110D;
  --ink-2:      #2A2620;
  --ink-3:      #4A4640;
  --cream:      #F5EDDF;
  --cream-2:    #ECE0CB;
  --paper:      #FCF7EC;
  --gray:       #8A8478;
  --gray-2:     #BAB4A6;
  --here:       #E0301E;
  --here-dk:    #B82418;
  --here-glow:  rgba(224, 48, 30, 0.22);
  --warm:       #E8A957;
  --rule:       rgba(20, 17, 13, 0.10);
  --rule-2:     rgba(20, 17, 13, 0.22);

  /* ── Fonts ── */
  --display: 'Archivo', sans-serif;
  --ui:      'Inter', sans-serif;
  --serif:   'Instrument Serif', serif;
}

html { font-family: var(--ui); -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); overflow-x: hidden; line-height: 1.5; }

body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.page { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

.dot {
  display: inline-block;
  width: 0.13em; height: 0.13em;
  background: var(--here);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0.05em var(--here-glow);
}

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 237, 223, 0.88);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-wm {
  font-family: var(--display); font-weight: 800; font-size: 28px;
  letter-spacing: -0.05em; color: var(--ink);
  display: flex; align-items: flex-start; text-decoration: none; line-height: 1;
}
.nav-wm .dot { width: 0.13em; height: 0.13em; margin-top: 0.58em; margin-left: 0.06em; }
.nav-links { display: flex; align-items: center; gap: 28px; font-family: var(--ui); font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.nav-links a { color: var(--ink-2); text-decoration: none; transition: color 0.18s; }
.nav-links a:hover { color: var(--here); }
.nav-cta {
  background: var(--ink); color: var(--paper); padding: 10px 18px;
  border-radius: 100px; font-family: var(--ui); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.18s;
}
.nav-cta:hover { background: var(--here); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: flex-end;
  padding: 64px 0 56px;
  overflow: hidden; color: var(--paper); isolation: isolate;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=2400&q=85&auto=format&fit=crop");
  background-size: cover; background-position: center;
  filter: contrast(1.05) saturate(1.1);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,17,13,0.42) 0%, rgba(20,17,13,0.28) 30%, rgba(20,17,13,0.78) 100%);
}
.hero-meta {
  font-family: var(--ui); font-size: 11.5px; color: rgba(252,247,236,0.75);
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 28px; display: flex; align-items: center; gap: 12px;
}
.hero-meta::before { content: ''; width: 28px; height: 1px; background: rgba(252,247,236,0.6); }
.hero-headline {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(56px, 9.5vw, 144px); line-height: 0.92;
  letter-spacing: -0.05em; color: var(--paper);
  max-width: 1100px; margin-bottom: 32px; text-wrap: balance;
}
.hero-headline em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--warm); letter-spacing: -0.02em;
}
.hero-headline em::after {
  content: '.'; color: var(--here);
  font-family: var(--display); font-style: normal; font-weight: 800;
}
.hero-sub {
  font-family: var(--ui); font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.5; color: rgba(252,247,236,0.85);
  max-width: 620px; margin-bottom: 44px; font-weight: 400;
}
.hero-sub strong { color: var(--paper); font-weight: 600; }
.hero-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.btn-primary {
  background: var(--here); color: var(--paper);
  padding: 17px 30px; border-radius: 100px;
  font-family: var(--ui); font-size: 15px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.18s; border: none; cursor: pointer;
  box-shadow: 0 8px 24px -4px rgba(224, 48, 30, 0.4);
}
.btn-primary:hover { background: var(--here-dk); transform: translateY(-2px); }
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-secondary {
  color: var(--paper); padding: 17px 0;
  font-family: var(--ui); font-size: 14px; font-weight: 500;
  text-decoration: none; border-bottom: 1px solid rgba(252,247,236,0.4);
  transition: all 0.18s;
}
.btn-secondary:hover { color: var(--warm); border-color: var(--warm); }

.hero-strip {
  margin-top: 80px; padding-top: 28px;
  border-top: 1px solid rgba(252,247,236,0.15);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.hs-cell { padding-right: 24px; border-right: 1px solid rgba(252,247,236,0.10); }
.hs-cell:last-child { border-right: none; }
.hs-lbl {
  font-family: var(--ui); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(252,247,236,0.6); font-weight: 600; margin-bottom: 6px;
}
.hs-val {
  font-family: var(--display); font-weight: 700; font-size: 16px;
  color: var(--paper); letter-spacing: -0.015em;
}

/* ═══════════════════════════════════════════════
   TRUSTED — merchant logo row
   ═══════════════════════════════════════════════ */
.trusted { padding: 56px 0; background: var(--paper); border-bottom: 1px solid var(--rule); }
.trusted-inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: 56px; align-items: center;
}
.trusted-label {
  font-family: var(--ui); font-size: 12px; color: var(--gray);
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  line-height: 1.5; max-width: 220px;
}
.trusted-label strong {
  display: block; font-family: var(--display); color: var(--ink);
  font-weight: 800; font-size: 17px; letter-spacing: -0.02em;
  margin-top: 6px; text-transform: none;
}
.trusted-logos {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.merchant-slot {
  aspect-ratio: 1.4; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: transform 0.2s; overflow: hidden;
}
.merchant-slot:hover { transform: translateY(-3px); }
.merchant-slot.filled {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 14px 18px;
}
.merchant-slot.filled img {
  max-width: 100%; max-height: 100%; object-fit: contain; display: block;
}
.merchant-slot.empty {
  background: var(--cream);
  border: 1px dashed var(--rule-2);
  flex-direction: column; gap: 6px;
}
.merchant-slot.empty:hover { background: var(--cream-2); border-color: var(--rule); }
.merchant-slot.empty .ms-mono {
  font-family: var(--display); font-weight: 600;
  color: var(--gray-2); font-size: 14px; letter-spacing: -0.02em; line-height: 1;
}
.merchant-slot.empty .ms-sub {
  font-family: var(--ui); font-size: 9px; color: var(--gray);
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.merchant-slot .here-pin {
  position: absolute; top: 10px; right: 10px;
  width: 7px; height: 7px; background: var(--here);
  border-radius: 50%; box-shadow: 0 0 0 3px rgba(224,48,30,0.22);
  z-index: 2;
}

/* ═══════════════════════════════════════════════
   SECTION
   ═══════════════════════════════════════════════ */
section.block { padding: 120px 0; position: relative; }
section.block.alt {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.sec-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 32px; margin-bottom: 72px;
  padding-bottom: 24px; border-bottom: 1px solid var(--rule);
}
.sec-eyebrow {
  font-family: var(--ui); font-size: 11px; color: var(--here);
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px;
}
.sec-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--here); }
.sec-meta { font-family: var(--ui); font-size: 11.5px; color: var(--gray); font-weight: 500; }

/* ═══════════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════════ */
.manifesto {
  display: grid; grid-template-columns: 6fr 5fr;
  gap: 80px; align-items: center;
}
.manifesto-big {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 4.8vw, 64px); line-height: 1.02;
  letter-spacing: -0.04em; color: var(--ink); text-wrap: balance;
}
.manifesto-big em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--here); letter-spacing: -0.015em;
}
.manifesto-big em::after {
  content: '.'; color: var(--here);
  font-family: var(--display); font-style: normal; font-weight: 700;
}
.manifesto-media {
  position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1551183053-bf91a1d81141?w=1400&q=85&auto=format&fit=crop");
  background-size: cover; background-position: center;
  box-shadow: 0 30px 70px -20px rgba(20, 17, 13, 0.35);
}
.manifesto-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,17,13,0.55) 100%);
}
.manifesto-caption {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  color: var(--paper); font-family: var(--serif); font-style: italic;
  font-size: 18px; line-height: 1.3; z-index: 1; letter-spacing: -0.01em;
}
.manifesto-caption .author {
  display: block; font-family: var(--ui); font-style: normal;
  font-size: 11px; color: rgba(252,247,236,0.75);
  letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; margin-top: 8px;
}
.manifesto-side {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 32px; max-width: 600px;
}
.manifesto-side p {
  font-family: var(--ui); font-size: 17px; line-height: 1.6;
  color: var(--ink-2); font-weight: 400;
}
.manifesto-side p strong { color: var(--ink); font-weight: 600; }

/* ═══════════════════════════════════════════════
   AUDIENCE TOGGLE
   ═══════════════════════════════════════════════ */
.toggle-wrap {
  position: sticky; top: 69px; z-index: 50;
  background: rgba(245, 237, 223, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  margin: 0 -32px; padding: 14px 32px;
}
.toggle-inner {
  max-width: 1256px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.toggle-lbl {
  font-family: var(--ui); font-size: 11.5px; color: var(--gray);
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.toggle-group {
  background: var(--paper); border: 1px solid var(--rule-2);
  padding: 4px; border-radius: 100px;
  display: inline-flex; position: relative;
}
.toggle-btn {
  background: transparent; border: none;
  padding: 11px 24px; border-radius: 100px;
  font-family: var(--ui); font-size: 13.5px; font-weight: 600;
  color: var(--ink-3); cursor: pointer; transition: color 0.2s;
  position: relative; z-index: 2;
}
.toggle-btn[aria-selected="true"] { color: var(--paper); }
.toggle-slider {
  position: absolute; top: 4px; left: 4px;
  height: calc(100% - 8px); background: var(--ink);
  border-radius: 100px;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.track { display: none; }
.track.active { display: block; animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   STEPS
   ═══════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  background: var(--paper); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 0 var(--rule-2), 0 8px 32px -16px rgba(20,17,13,0.15);
  transition: all 0.25s;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 0 var(--rule-2), 0 16px 40px -16px rgba(20,17,13,0.2);
}
.step-img {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  background-color: var(--cream-2);
}
.step-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.step-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,17,13,0.22) 100%);
  pointer-events: none;
}
.step-num-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: var(--paper); padding: 6px 12px; border-radius: 100px;
  font-family: var(--display); font-weight: 800; font-size: 13px;
  color: var(--ink); letter-spacing: -0.025em;
  display: inline-flex; align-items: center; gap: 5px;
}
.step-num-tag .dot { width: 5px; height: 5px; background: var(--here); border-radius: 50%; }
.step-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.step-title {
  font-family: var(--display); font-weight: 700; font-size: 22px;
  color: var(--ink); letter-spacing: -0.025em; line-height: 1.1;
}
.step-copy {
  font-family: var(--ui); font-size: 14.5px; line-height: 1.6;
  color: var(--ink-2); font-weight: 400;
}

/* ═══════════════════════════════════════════════
   UI SHOWCASE + PHONE MOCK
   ═══════════════════════════════════════════════ */
.ui-showcase { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.uis-copy h3 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--ink); margin-bottom: 28px; text-wrap: balance;
}
.uis-copy h3 em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--here); letter-spacing: -0.02em;
}
.uis-copy h3 em::after {
  content: '.'; color: var(--here);
  font-family: var(--display); font-style: normal; font-weight: 800;
}
.uis-copy p {
  font-family: var(--ui); font-size: 16.5px; line-height: 1.65;
  color: var(--ink-2); font-weight: 400; margin-bottom: 18px; max-width: 480px;
}
.uis-copy ul {
  list-style: none; margin-top: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.uis-copy ul li {
  font-family: var(--ui); font-size: 14.5px; color: var(--ink-2);
  display: flex; align-items: flex-start; gap: 12px;
  font-weight: 400; line-height: 1.5;
}
.uis-copy ul li::before {
  content: ''; flex-shrink: 0;
  width: 7px; height: 7px; background: var(--here);
  border-radius: 50%; margin-top: 8px;
  box-shadow: 0 0 0 3px rgba(224, 48, 30, 0.15);
}

.phone-mock {
  width: 100%; max-width: 400px; aspect-ratio: 400/820;
  background: linear-gradient(145deg, #0A0A0A, #1F1F1F);
  border-radius: 52px; padding: 8px; margin: 0 auto;
  box-shadow:
    0 60px 140px -30px rgba(20,17,13,0.5),
    0 0 0 1.5px #2A2A2A,
    0 0 0 8px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}
.phone-screen {
  background: var(--cream); border-radius: 44px;
  height: 100%; overflow: hidden;
  position: relative; display: flex; flex-direction: column;
}
.island {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 30px; background: #050505;
  border-radius: 18px; z-index: 10;
  border: 1px solid rgba(255,255,255,0.04);
}
.island::after {
  content: ''; position: absolute; right: 9px; top: 50%;
  transform: translateY(-50%); width: 9px; height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2A4A60, #050505 70%);
}
.phone-status {
  padding: 16px 28px 8px;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--ui); font-size: 13px; font-weight: 700;
  color: var(--ink); height: 52px; flex-shrink: 0;
}
.phone-status .right { display: flex; align-items: center; gap: 6px; }
.phone-status .signal { display: inline-flex; align-items: flex-end; gap: 1.5px; }
.phone-status .signal span { width: 3px; background: var(--ink); border-radius: 0.5px; }
.phone-status .signal span:nth-child(1) { height: 4px; }
.phone-status .signal span:nth-child(2) { height: 6px; }
.phone-status .signal span:nth-child(3) { height: 8px; }
.phone-status .signal span:nth-child(4) { height: 10px; }
.phone-status .battery {
  display: inline-flex; align-items: center;
  width: 24px; height: 11px;
  border: 1.5px solid var(--ink); border-radius: 3px;
  padding: 1.5px; position: relative; margin-left: 2px;
}
.phone-status .battery::after {
  content: ''; position: absolute; right: -3px; top: 50%;
  transform: translateY(-50%); width: 2px; height: 5px;
  background: var(--ink); border-radius: 0 1px 1px 0;
}
.phone-status .battery span {
  display: block; width: 78%; height: 100%;
  background: var(--ink); border-radius: 1px;
}
.phone-header {
  padding: 14px 24px 4px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.ph-wm {
  font-family: var(--display); font-weight: 800; font-size: 22px;
  color: var(--ink); letter-spacing: -0.055em;
  display: flex; align-items: flex-start; line-height: 1;
}
.ph-wm .dot {
  width: 0.13em; height: 0.13em;
  margin-top: 0.55em; margin-left: 0.06em;
  box-shadow: 0 0 0 3px rgba(224,48,30,0.15);
}
.ph-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background-image: url("https://images.unsplash.com/photo-1607990281513-2c110a25bd8c?w=200&q=85&auto=format&fit=crop");
  background-size: cover; background-position: center;
  box-shadow: 0 2px 8px rgba(20,17,13,0.18), inset 0 0 0 1px rgba(255,255,255,0.2);
}
.ph-loc-row { padding: 6px 24px 16px; flex-shrink: 0; }
.ph-loc {
  font-family: var(--ui); font-size: 11px; color: var(--gray);
  font-weight: 500; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(20,17,13,0.05); padding: 5px 11px 5px 9px; border-radius: 100px;
}
.ph-loc .dot {
  width: 5px; height: 5px; background: var(--here);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(224,48,30,0.15);
}
.ph-loc::after { content: '⌄'; font-size: 9px; opacity: 0.5; margin-left: 1px; }
.ph-greeting { padding: 4px 24px 22px; flex-shrink: 0; }
.ph-greeting h4 {
  font-family: var(--display); font-weight: 800; font-size: 26px;
  color: var(--ink); letter-spacing: -0.035em;
  line-height: 0.95; margin-bottom: 6px;
}
.ph-greeting h4 em { font-style: normal; color: var(--here); }
.ph-greeting p {
  font-family: var(--ui); font-size: 12.5px; color: var(--gray); font-weight: 400;
}
.ph-usual {
  margin: 0 18px 16px; border-radius: 22px; overflow: hidden;
  flex-shrink: 0; background: var(--ink); color: var(--paper);
  position: relative; box-shadow: 0 14px 36px -10px rgba(20,17,13,0.4);
}
.ph-usual-cover {
  height: 110px;
  background-image: url("https://images.unsplash.com/photo-1561626423-a51b45aef0a1?w=1000&q=85&auto=format&fit=crop");
  background-size: cover; background-position: center;
  position: relative;
}
.ph-usual-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20,17,13,0.7) 100%);
}
.ph-usual-tag {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  font-family: var(--ui); font-size: 9px; color: var(--paper);
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(224,48,30,0.92);
  backdrop-filter: blur(8px); padding: 5px 9px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 6px;
}
.ph-usual-tag::before {
  content: ''; width: 5px; height: 5px;
  background: var(--paper); border-radius: 50%;
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}
.ph-usual-merch {
  position: absolute; bottom: 12px; left: 14px; z-index: 1;
  font-family: var(--display); font-weight: 800; font-size: 17px;
  color: var(--paper); letter-spacing: -0.02em; line-height: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.ph-usual-time {
  position: absolute; bottom: 14px; right: 14px; z-index: 1;
  font-family: var(--ui); font-size: 10.5px;
  color: rgba(252,247,236,0.85); font-weight: 500;
}
.ph-usual-body { padding: 14px 16px 0; }
.ph-usual-detail {
  font-family: var(--ui); font-size: 11.5px;
  color: var(--gray-2); font-weight: 400; line-height: 1.5;
}
.ph-usual-detail strong { color: var(--paper); font-weight: 500; }
.ph-usual-btn {
  width: calc(100% - 32px); margin: 14px 16px 16px;
  background: var(--here); color: var(--paper);
  padding: 13px 16px; border-radius: 14px; border: none;
  font-family: var(--ui); font-size: 13.5px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 4px 16px -2px rgba(224,48,30,0.4);
}
.ph-usual-btn .price {
  font-family: var(--display); font-weight: 800; font-size: 14px;
  letter-spacing: -0.02em; opacity: 0.9;
}
.ph-section-label {
  padding: 4px 24px 12px;
  font-family: var(--ui); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gray); font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.ph-section-label .count {
  color: var(--ink-3); font-weight: 500;
  text-transform: none; font-size: 11px;
}
.ph-places {
  flex: 1; overflow: hidden;
  padding: 0 18px 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.place {
  background: var(--paper); border-radius: 18px;
  padding: 11px 13px;
  display: flex; align-items: center; gap: 13px;
  box-shadow: 0 1px 0 rgba(20,17,13,0.03), 0 2px 8px -2px rgba(20,17,13,0.05);
  border: 1px solid rgba(20,17,13,0.04);
}
.place-thumb {
  width: 44px; height: 44px; border-radius: 13px;
  flex-shrink: 0; background-size: cover; background-position: center;
  box-shadow: 0 3px 8px -2px rgba(20,17,13,0.2), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.place-thumb.t1 { background-image: url("https://images.unsplash.com/photo-1544025162-d76694265947?w=400&q=85&auto=format&fit=crop"); }
.place-thumb.t2 { background-image: url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=400&q=85&auto=format&fit=crop"); }
.place-thumb.t3 { background-image: url("https://images.unsplash.com/photo-1565958011703-44f9829ba187?w=400&q=85&auto=format&fit=crop"); }
.place-info { flex: 1; min-width: 0; }
.place-name {
  font-family: var(--display); font-weight: 700; font-size: 14px;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 3px; display: flex; align-items: center; gap: 5px;
}
.place-name .reg-tag {
  display: inline-block; width: 5px; height: 5px;
  background: var(--here); border-radius: 50%;
}
.place-meta {
  font-family: var(--ui); font-size: 11px; color: var(--gray);
  font-weight: 400; line-height: 1.3;
}
.place-meta strong { color: var(--ink-2); font-weight: 500; }
.place-status {
  font-family: var(--ui); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 100px; flex-shrink: 0; line-height: 1;
}
.place-status.open { background: rgba(74,120,48,0.10); color: #4A7830; }
.place-status.now {
  background: var(--here); color: var(--paper);
  box-shadow: 0 2px 8px -1px rgba(224,48,30,0.4);
}
.ph-tab-bar {
  border-top: 1px solid rgba(20,17,13,0.06);
  padding: 12px 24px 22px;
  display: flex; justify-content: space-around;
  background: rgba(252,247,236,0.94);
  backdrop-filter: blur(12px); flex-shrink: 0;
}
.tab {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--ui); font-size: 10px; font-weight: 600;
  color: var(--gray);
}
.tab.active { color: var(--ink); }
.tab .tab-ico {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.tab .tab-ico svg { width: 100%; height: 100%; }
.tab.active .tab-ico::after {
  content: ''; position: absolute; bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--here); border-radius: 50%;
}

/* ═══════════════════════════════════════════════
   MERCHANT GRID + DASHBOARD
   ═══════════════════════════════════════════════ */
.merch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.mg-card {
  background: var(--paper); border-radius: 22px;
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 280px; position: relative;
  box-shadow: 0 1px 0 var(--rule-2), 0 8px 32px -16px rgba(20,17,13,0.12);
  overflow: hidden;
}
.mg-card.dark { background: var(--ink); color: var(--paper); }
.mg-card .ico-bg {
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,48,30,0.06), transparent 65%);
  pointer-events: none;
}
.mg-card.dark .ico-bg {
  background: radial-gradient(circle, rgba(224,48,30,0.18), transparent 65%);
}
.mg-ico {
  width: 44px; height: 44px; background: var(--here);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); font-family: var(--display);
  font-weight: 800; font-size: 18px; flex-shrink: 0;
  box-shadow: 0 6px 18px -4px rgba(224,48,30,0.45);
}
.mg-title {
  font-family: var(--display); font-weight: 700; font-size: 24px;
  color: var(--ink); letter-spacing: -0.025em; line-height: 1.1;
}
.mg-card.dark .mg-title { color: var(--paper); }
.mg-body {
  font-family: var(--ui); font-size: 15px; line-height: 1.65;
  color: var(--ink-2); font-weight: 400; margin-top: auto;
}
.mg-card.dark .mg-body { color: var(--gray-2); }
.mg-body strong { color: var(--ink); font-weight: 600; }
.mg-card.dark .mg-body strong { color: var(--paper); }

.dash-wrap {
  margin-top: 64px; padding: 24px;
  background: linear-gradient(145deg, #14110D, #2A2620);
  border-radius: 24px;
  box-shadow: 0 40px 80px -20px rgba(20,17,13,0.4);
  position: relative;
}
.dash { background: var(--paper); border-radius: 16px; overflow: hidden; }
.dash-shop-bar {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 18px;
  padding: 14px 22px; border-bottom: 1px solid var(--rule);
}
.dash-shop-photo {
  width: 44px; height: 44px; border-radius: 12px;
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=400&q=85&auto=format&fit=crop");
  background-size: cover; background-position: center;
  box-shadow: inset 0 0 0 1px rgba(20,17,13,0.06);
}
.dash-shop-info { display: flex; flex-direction: column; gap: 2px; }
.dash-shop-name {
  font-family: var(--display); font-weight: 800; font-size: 18px;
  color: var(--ink); letter-spacing: -0.025em; line-height: 1;
}
.dash-shop-meta {
  font-family: var(--ui); font-size: 11.5px; color: var(--gray);
  font-weight: 500;
}
.dash-shop-meta .live {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--here); font-weight: 600; margin-left: 10px;
}
.dash-shop-meta .live::before {
  content: ''; width: 6px; height: 6px;
  background: var(--here); border-radius: 50%;
  animation: pulseDot 1.6s infinite;
}
.dash-shop-right {
  font-family: var(--ui); font-size: 11px; color: var(--gray);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  display: flex; align-items: center; gap: 14px;
}
.dash-wm {
  font-family: var(--display); font-weight: 800; font-size: 14px;
  letter-spacing: -0.04em; color: var(--ink-3);
  text-transform: none; display: flex; align-items: flex-start;
}
.dash-wm .dot {
  width: 0.13em; height: 0.13em;
  margin-top: 0.55em; margin-left: 0.05em;
  box-shadow: none;
}
.dash-overview {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.ds-chart-cell {
  padding: 18px 22px; border-right: 1px solid var(--rule);
  background: var(--cream);
}
.ds-chart-top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.ds-chart-lbl {
  font-family: var(--ui); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gray); font-weight: 600;
}
.ds-chart-val {
  font-family: var(--display); font-weight: 800; font-size: 14px;
  color: var(--ink); letter-spacing: -0.02em;
}
.ds-chart-val .delta {
  font-size: 10px; color: #4A7830;
  margin-left: 6px; font-family: var(--ui);
  font-weight: 600; letter-spacing: 0;
}
.ds-chart svg { width: 100%; height: 42px; display: block; }
.ds-cell { padding: 18px 22px; border-right: 1px solid var(--rule); }
.ds-cell:last-child { border-right: none; }
.ds-lbl {
  font-family: var(--ui); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gray); font-weight: 600; margin-bottom: 6px;
}
.ds-val {
  font-family: var(--display); font-weight: 800; font-size: 22px;
  color: var(--ink); letter-spacing: -0.03em; line-height: 1;
}
.ds-val-sub {
  font-family: var(--ui); font-size: 10.5px;
  color: var(--gray); font-weight: 500; margin-top: 5px;
}
.ds-val-sub .up { color: #4A7830; font-weight: 600; }
.dash-body {
  display: grid; grid-template-columns: 2fr 1fr;
  min-height: 280px;
}
.dash-orders { padding: 0; border-right: 1px solid var(--rule); }
.dash-orders-head {
  padding: 12px 22px 10px;
  font-family: var(--ui); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gray); font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--rule);
}
.dash-orders-head .count-pill {
  background: var(--here); color: var(--paper);
  padding: 3px 8px; border-radius: 100px;
  font-size: 10px;
}
.order-row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 16px; align-items: center;
  padding: 13px 22px; border-bottom: 1px solid var(--rule);
  font-family: var(--ui); font-size: 12px;
}
.order-row:last-child { border-bottom: none; }
.or-main { display: flex; align-items: center; gap: 11px; min-width: 0; }
.or-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(20,17,13,0.08);
}
.or-avatar.a1 { background-image: url("https://images.unsplash.com/photo-1607990281513-2c110a25bd8c?w=200&q=85&auto=format&fit=crop"); }
.or-avatar.a2 { background-image: url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=200&q=85&auto=format&fit=crop"); }
.or-avatar.a3 { background-image: url("https://images.unsplash.com/photo-1463453091185-61582044d556?w=200&q=85&auto=format&fit=crop"); }
.or-avatar.a4 { background-image: url("https://images.unsplash.com/photo-1532170579297-281918c8ae72?w=200&q=85&auto=format&fit=crop"); }
.or-details { min-width: 0; }
.or-cust {
  font-family: var(--display); font-weight: 700; font-size: 13.5px;
  color: var(--ink); letter-spacing: -0.015em; line-height: 1.2;
  display: flex; align-items: center; gap: 8px;
}
.or-cust .regular {
  font-family: var(--ui); font-size: 9px; font-weight: 700;
  color: var(--here); letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(224,48,30,0.08);
  padding: 2px 7px; border-radius: 100px;
}
.or-items {
  font-family: var(--ui); font-size: 11.5px; color: var(--gray);
  font-weight: 400; margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  max-width: 100%;
}
.or-total {
  font-family: var(--display); font-weight: 800; font-size: 14px;
  letter-spacing: -0.025em; color: var(--ink);
}
.or-status {
  font-family: var(--ui); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px;
}
.or-status.new {
  background: var(--here); color: var(--paper);
  box-shadow: 0 3px 10px -2px rgba(224,48,30,0.4);
}
.or-status.prep { background: rgba(184,100,32,0.12); color: #B86420; }
.or-status.done { background: rgba(74,120,48,0.12); color: #4A7830; }
.dash-side {
  padding: 16px 20px; background: var(--cream);
  display: flex; flex-direction: column; gap: 16px;
}
.dash-side-head {
  font-family: var(--ui); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gray); font-weight: 700;
}
.recog-card {
  background: var(--paper); border-radius: 14px;
  padding: 14px 16px;
  display: flex; gap: 12px; align-items: flex-start;
  border: 1px solid var(--rule);
}
.recog-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background-image: url("https://images.unsplash.com/photo-1607990281513-2c110a25bd8c?w=200&q=85&auto=format&fit=crop");
  background-size: cover; background-position: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(20,17,13,0.08);
}
.recog-text {
  font-family: var(--serif); font-style: italic; font-size: 14.5px;
  line-height: 1.35; color: var(--ink); letter-spacing: -0.005em;
}
.recog-text .name {
  font-family: var(--display); font-style: normal; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em;
}
.recog-meta {
  font-family: var(--ui); font-size: 10px;
  color: var(--gray); font-weight: 500; margin-top: 4px;
}
.recog-meta .accent { color: var(--here); font-weight: 700; }
.quick-action {
  background: var(--ink); color: var(--paper);
  border-radius: 12px; padding: 11px 14px;
  font-family: var(--ui); font-size: 12px; font-weight: 600;
  text-align: center; cursor: pointer;
  border: none; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.18s;
}
.quick-action:hover { background: var(--here); }

/* ═══════════════════════════════════════════════
   WHY
   ═══════════════════════════════════════════════ */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-cell {
  padding: 56px 48px;
  background: var(--paper); border-radius: 22px;
  min-height: 360px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative; overflow: hidden;
}
.why-cell:last-child { background: var(--ink); color: var(--paper); }
.why-cell::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,48,30,0.06), transparent 65%);
  pointer-events: none;
}
.why-cell:last-child::before {
  background: radial-gradient(circle, rgba(224,48,30,0.18), transparent 65%);
}
.why-id {
  font-family: var(--ui); font-size: 11px; color: var(--gray);
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  position: relative; z-index: 1;
}
.why-cell:last-child .why-id { color: var(--gray-2); }
.why-id .dot {
  width: 6px; height: 6px; background: var(--here);
  border-radius: 50%; box-shadow: none;
}
.why-headline {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.0; letter-spacing: -0.04em;
  color: var(--ink); position: relative; z-index: 1; text-wrap: balance;
}
.why-cell:last-child .why-headline { color: var(--paper); }
.why-headline em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--here); letter-spacing: -0.02em;
}
.why-headline em::after {
  content: '.'; color: var(--here);
  font-family: var(--display); font-style: normal; font-weight: 800;
}
.why-body {
  font-family: var(--ui); font-size: 15.5px; line-height: 1.65;
  color: var(--ink-2); font-weight: 400; margin-top: auto;
  max-width: 460px; position: relative; z-index: 1;
}
.why-cell:last-child .why-body { color: var(--gray-2); }

/* ═══════════════════════════════════════════════
   WAITLIST
   ═══════════════════════════════════════════════ */
section.waitlist {
  padding: 120px 0 96px;
  background: var(--ink); color: var(--paper);
  margin-top: 96px;
  position: relative;
  width: 100vw; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  overflow: hidden;
}
section.waitlist::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: url("https://images.unsplash.com/photo-1583393527097-4d27dc99547f?w=2400&q=85&auto=format&fit=crop");
  background-size: cover; background-position: center;
  opacity: 0.12;
}
section.waitlist > .page {
  padding: 0 32px; max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 1;
}
section.waitlist .sec-head { border-color: rgba(252,247,236,0.16); }
.wait-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.wait-headline {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(44px, 5.5vw, 80px); line-height: 0.95;
  letter-spacing: -0.045em; color: var(--paper);
  margin-bottom: 32px; text-wrap: balance;
}
.wait-headline em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--here); letter-spacing: -0.02em;
}
.wait-headline em::after {
  content: '.'; color: var(--here);
  font-family: var(--display); font-style: normal; font-weight: 800;
}
.wait-side { display: flex; flex-direction: column; gap: 18px; }
.wait-side p {
  font-family: var(--ui); font-size: 16px; line-height: 1.65;
  color: var(--gray-2); font-weight: 400;
}
.wait-side p strong { color: var(--paper); font-weight: 600; }
.wait-form {
  margin-top: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 24px; border-radius: 20px;
  backdrop-filter: blur(10px);
}
.wait-role-toggle {
  display: flex; gap: 6px; margin-bottom: 18px;
  background: rgba(20,17,13,0.4);
  padding: 4px; border-radius: 100px;
}
.wait-role-btn {
  flex: 1; background: transparent; border: none;
  padding: 11px 14px; color: var(--gray-2);
  font-family: var(--ui); font-size: 12.5px; font-weight: 600;
  cursor: pointer; border-radius: 100px; transition: all 0.2s;
}
.wait-role-btn[aria-selected="true"] { background: var(--paper); color: var(--ink); }
.wait-fields { display: flex; flex-direction: column; gap: 12px; }
.wait-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 14px 16px; border-radius: 12px;
  font-family: var(--ui); font-size: 14px;
  color: var(--paper); width: 100%; transition: all 0.2s;
  font-weight: 400;
}
.wait-input::placeholder { color: var(--gray-2); }
.wait-input:focus {
  outline: none; border-color: var(--here);
  background: rgba(255,255,255,0.09);
}
.wait-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wait-row.full { grid-template-columns: 1fr; }
.wait-submit {
  background: var(--here); color: var(--paper);
  border: none; padding: 16px 24px; border-radius: 12px;
  font-family: var(--ui); font-size: 14.5px; font-weight: 600;
  cursor: pointer; margin-top: 8px; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 24px -4px rgba(224,48,30,0.4);
}
.wait-submit:hover { background: var(--here-dk); transform: translateY(-1px); }
.wait-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.wait-error {
  display: none;
  font-family: var(--ui); font-size: 12px; color: #FF9F8A;
  text-align: center; margin-top: 12px;
}
.wait-error.show { display: block; }
.wait-note {
  font-family: var(--ui); font-size: 11px; color: var(--gray-2);
  font-weight: 400; text-align: center; margin-top: 14px;
}
.wait-success { display: none; text-align: center; padding: 32px 0; }
.wait-success.show { display: block; animation: fadeIn 0.4s ease-out; }
.wait-success-mark {
  width: 64px; height: 64px; background: var(--here);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--paper); font-family: var(--display);
  font-weight: 800; font-size: 32px;
  box-shadow: 0 10px 30px -5px rgba(224,48,30,0.5);
}
.wait-success h4 {
  font-family: var(--display); font-weight: 800; font-size: 28px;
  color: var(--paper); margin-bottom: 10px; letter-spacing: -0.03em;
}
.wait-success p {
  font-family: var(--ui); font-size: 14.5px;
  color: var(--gray-2); font-weight: 400;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  background: var(--ink); color: var(--paper);
  padding: 56px 32px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand .wm {
  font-family: var(--display); font-weight: 800; font-size: 32px;
  letter-spacing: -0.05em; color: var(--paper);
  display: flex; align-items: flex-start; line-height: 1;
  margin-bottom: 14px;
}
.footer-brand .wm .dot {
  width: 0.13em; height: 0.13em;
  margin-top: 0.58em; margin-left: 0.06em;
  box-shadow: 0 0 0 4px rgba(224,48,30,0.3);
}
.footer-brand p {
  font-family: var(--ui); font-size: 13.5px; color: var(--gray-2);
  line-height: 1.6; max-width: 340px; font-weight: 400;
}
.footer-col h5 {
  font-family: var(--ui); font-size: 10px; color: var(--gray-2);
  text-transform: uppercase; letter-spacing: 0.16em;
  font-weight: 700; margin-bottom: 14px;
}
.footer-col a {
  display: block; font-family: var(--ui); font-size: 13.5px;
  color: var(--paper); text-decoration: none;
  padding: 5px 0; transition: color 0.18s;
}
.footer-col a:hover { color: var(--here); }
.footer-bot {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ui); font-size: 11px;
  color: var(--gray-2); letter-spacing: 0.08em; font-weight: 500;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .page { padding: 0 22px; }
  .nav-inner { padding: 14px 22px; }
  .nav-links { display: none; }
  .hero { padding: 48px 0 40px; min-height: 80vh; }
  .hero-strip { grid-template-columns: 1fr 1fr; gap: 18px 0; margin-top: 48px; }
  .hs-cell { border-right: none; padding-bottom: 16px; border-bottom: 1px solid rgba(252,247,236,0.10); }
  .trusted-inner { grid-template-columns: 1fr; gap: 24px; }
  .trusted-logos { grid-template-columns: repeat(3, 1fr); }
  .manifesto { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-media { max-width: 480px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .ui-showcase { grid-template-columns: 1fr; gap: 48px; }
  .merch-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .wait-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .toggle-wrap { top: 61px; padding: 12px 22px; }
  .toggle-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .dash-overview { grid-template-columns: 1fr 1fr; }
  .ds-chart-cell { grid-column: span 2; border-right: none; border-bottom: 1px solid var(--rule); }
  .ds-cell:nth-child(2) { border-right: none; }
  .ds-cell:nth-child(2), .ds-cell:nth-child(3) { border-bottom: 1px solid var(--rule); }
  .dash-body { grid-template-columns: 1fr; }
  .dash-orders { border-right: none; border-bottom: 1px solid var(--rule); }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}
