/* WeMenú — Landing page styles (vanilla, no React) */

:root {
  --wm-pink: #EB7CA8;
  --wm-pink-2: #f29bbf;
  --wm-blue: #3F51B5;
  --wm-blue-2: #5668cd;
  --wm-green: #00C853;
  --wm-green-2: #2ae36c;
  --wm-cream: #f6f1e7;
  --wm-cream-2: #ede6d6;

  --f-display: "Fraunces", "Times New Roman", serif;
  --f-sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "Menlo", monospace;

  --wrap: 1240px;
  --pad-x: clamp(20px, 5vw, 48px);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
}

[data-theme="dark"] {
  --bg: #0B0B0E;
  --bg-2: #141419;
  --bg-3: #1C1C23;
  --surface: #151520;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --ink: #F5F2EA;
  --ink-2: rgba(245,242,234,0.72);
  --ink-3: rgba(245,242,234,0.5);
  --accent: var(--wm-green);
  --accent-ink: #041608;
}

[data-theme="light"] {
  --bg: #F6F1E7;
  --bg-2: #EDE6D6;
  --bg-3: #E3DAC5;
  --surface: #FFFFFF;
  --line: rgba(11,11,14,0.08);
  --line-2: rgba(11,11,14,0.16);
  --ink: #0B0B0E;
  --ink-2: rgba(11,11,14,0.72);
  --ink-3: rgba(11,11,14,0.5);
  --accent: #0B0B0E;
  --accent-ink: #F6F1E7;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px var(--pad-x);
  transition: background .25s, backdrop-filter .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
}
.nav-logo img { height: 52px; width: auto; display: block; }
@media (max-width: 600px) { .nav-logo img { height: 42px; } }
.nav-links {
  display: flex; gap: 28px;
  justify-self: center;
  font-size: 14px; color: var(--ink-2);
}
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: inline-flex; align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.nav-toggle button {
  padding: 5px 10px; border-radius: 999px;
  color: var(--ink-3); font-weight: 600; transition: all .2s;
}
.nav-toggle button.on { background: var(--ink); color: var(--bg); }
.nav-theme {
  width: 34px; height: 34px; border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  font-size: 14px;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .15s, background .2s, color .2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--wm-blue); color: #fff; }
.btn-accent { background: var(--wm-green); color: #041608; }
.btn-accent:hover { background: var(--wm-green-2); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--bg-2); }

/* HERO */
.hero {
  position: relative;
  padding: 120px var(--pad-x) 0;
  min-height: 100vh;
  overflow: hidden;
}
.hero-inverted { background: var(--bg); color: var(--ink); }
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 40%, black 30%, transparent 70%);
  pointer-events: none;
  opacity: 0.7;
}
.hero-inner {
  position: relative;
  max-width: var(--wrap); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--wm-green);
  box-shadow: 0 0 0 3px rgba(0,200,83,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,200,83,0.18); }
  50% { box-shadow: 0 0 0 6px rgba(0,200,83,0.0); }
}
.hero-h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(44px, 7.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}
.hero-h1 span { display: block; }
.hero-h1-accent { font-style: italic; font-weight: 300; }
.hero-h1-accent-pink { color: var(--wm-pink); }
.hero-h1-accent-blue { color: var(--wm-blue-2); }
[data-theme="light"] .hero-h1-accent-blue { color: var(--wm-blue); }
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 0 36px;
  line-height: 1.5;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.hero-stat-v {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-l {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
}
.hero-stage {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hero-stage-stacked > .phone-mock { transform: rotate(-4deg); }
.hero-stage-centered > .phone-mock { transform: scale(1.05); }
.hero-stage-tilted { height: 560px; }
.hero-phone-a { position: absolute; top: 40px; left: 8%; z-index: 2; }
.hero-phone-b { position: absolute; bottom: 40px; right: 4%; z-index: 1; opacity: 0.85; }
.hero-phone-a > .phone-mock { transform: rotate(-6deg) scale(0.95); }
.hero-phone-b > .phone-mock { transform: rotate(4deg) scale(0.82); }

.hero-float { position: absolute; z-index: 3; animation: float 6s ease-in-out infinite; }
.hero-float-ticket { top: 4%; right: -2%; width: 260px; }
.hero-float-kds { bottom: 6%; left: -2%; width: 260px; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* PHONE MOCK */
.phone-mock {
  width: 280px;
  aspect-ratio: 9/19.2;
  background: #0a0a0a;
  border-radius: 40px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 30px 60px rgba(0,0,0,0.35),
    0 8px 20px rgba(0,0,0,0.25);
  position: relative;
}
.phone-mock-notch {
  position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 18px;
  background: #000;
  border-radius: 99px;
  z-index: 2;
}
.phone-mock-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #f6f1e7;
}
.phone-mock-screen img { width: 100%; height: auto; display: block; }

/* UI CARDS */
.ui-card {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  font-size: 13px;
}
[data-theme="light"] .ui-card {
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.ui-ticket-hd {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 10px;
  font-size: 12px;
}
.ui-time { margin-left: auto; color: var(--ink-3); font-weight: 400; }
.ui-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.ui-dot-g { background: var(--wm-green); box-shadow: 0 0 0 3px rgba(0,200,83,0.2); }
.ui-ticket-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  padding: 4px 0;
  color: var(--ink-2);
  font-size: 12.5px;
}
.ui-ticket-row span:first-child { color: var(--ink-3); }
.ui-ticket-r { color: var(--ink); font-variant-numeric: tabular-nums; }
.ui-ticket-ft {
  display: flex; justify-content: space-between;
  padding-top: 10px; margin-top: 8px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--ink-2);
}
.ui-ticket-total {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.ui-kds-hd {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.ui-kds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ui-kds-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  background: var(--bg-2);
  border-radius: 10px;
  font-size: 12px;
}
.ui-kds-n { font-weight: 700; font-family: var(--f-mono); }
.ui-kds-t { color: var(--ink-3); font-variant-numeric: tabular-nums; }
.ui-kds-done { background: color-mix(in oklab, var(--wm-green) 18%, var(--bg-2)); }
.ui-kds-done .ui-kds-t { color: var(--wm-green); font-weight: 600; }

/* MARQUEE */
.marquee {
  position: relative;
  margin-top: 40px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.marquee-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-left: 56px;
}
.marquee-item {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee-star { color: var(--wm-pink); font-size: 16px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* SECTIONS */
.section { padding: 120px var(--pad-x); position: relative; }
.section-inner { max-width: var(--wrap); margin: 0 auto; }
.section-kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-kicker::before { content: ""; width: 24px; height: 1px; background: var(--ink-3); display: inline-block; }
.section-h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  max-width: 760px;
  text-wrap: pretty;
}
.section-h2-xl { font-size: clamp(40px, 6vw, 80px); }
.section-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 620px;
  line-height: 1.5;
}

/* PROBLEM */
.section-problem { background: var(--bg); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.problem-card { background: var(--bg); padding: 48px 36px; display: flex; flex-direction: column; }
.problem-card-k {
  font-family: var(--f-display);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--wm-pink);
  margin-bottom: 32px;
}
.problem-card:nth-child(2) .problem-card-k { color: var(--wm-blue-2); }
[data-theme="light"] .problem-card:nth-child(2) .problem-card-k { color: var(--wm-blue); }
.problem-card:nth-child(3) .problem-card-k { color: var(--ink); font-style: italic; }
.problem-card-t { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.problem-card-d { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* SOLUTION */
.section-solution { background: var(--bg-2); text-align: center; padding: 160px var(--pad-x); }
.solution-inner { display: flex; flex-direction: column; align-items: center; }
.solution-inner .section-kicker::before { display: none; }
.solution-inner .section-h2 { text-align: center; margin-left: auto; margin-right: auto; }
.solution-inner .section-sub { text-align: center; margin: 8px auto 0; }

/* FEATURES */
.section-features { background: var(--bg); }
.features-list { display: flex; flex-direction: column; gap: 32px; margin-top: 64px; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.feature-row-b .feature-copy { order: 2; }
.feature-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg-3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.feature-desc { color: var(--ink-2); margin: 0 0 24px; font-size: 16px; line-height: 1.55; max-width: 460px; }
.feature-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.feature-bullets li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); }
.feature-bullets svg { color: var(--wm-green); flex: none; }
.feature-visual { position: relative; min-height: 380px; display: flex; align-items: center; justify-content: center; }

.fv-orders { position: relative; }
.fv-overlay-ticket { position: absolute; top: 40px; right: -10px; width: 230px; animation: float 6s ease-in-out infinite; }
.fv-ops { width: 100%; max-width: 420px; display: flex; flex-direction: column; gap: 16px; position: relative; }
.fv-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fv-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-3);
  font-size: 12px;
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.fv-chip span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-3); }
.fv-chip-on { color: var(--ink); }
.fv-chip-on span { background: var(--wm-green); box-shadow: 0 0 0 2px rgba(0,200,83,0.2); }
.fv-map { position: relative; height: 140px; background: var(--bg-3); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.fv-map-blob { position: absolute; border-radius: 50%; filter: blur(28px); opacity: 0.6; }
.fv-map-blob-1 { top: 10%; left: 15%; width: 60px; height: 60px; background: var(--wm-pink); }
.fv-map-blob-2 { top: 40%; left: 55%; width: 80px; height: 80px; background: var(--wm-blue); }
.fv-map-blob-3 { top: 10%; right: 10%; width: 50px; height: 50px; background: var(--wm-green); }
.fv-map-pin { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--ink); border: 2px solid var(--bg-2); }
.fv-map-pin-1 { top: 30%; left: 22%; }
.fv-map-pin-2 { top: 55%; left: 62%; }
.fv-map-pin-3 { top: 22%; right: 16%; }

.fv-brand { position: relative; width: 100%; max-width: 460px; }
.fv-browser { background: var(--surface); border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.fv-browser-bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.fv-dot { width: 10px; height: 10px; border-radius: 50%; }
.fv-dot-r { background: #ff5f57; }
.fv-dot-y { background: #febc2e; }
.fv-dot-g { background: #28c840; }
.fv-url {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 12px;
  padding: 4px 12px;
  background: var(--bg-3);
  border-radius: 999px;
  font-size: 11px;
  font-family: var(--f-mono);
  color: var(--ink-2);
  flex: 1;
  justify-content: center;
}
.fv-browser-body { padding: 20px; background: var(--surface); color: var(--ink); }
.fv-site-logo { font-family: var(--f-display); font-size: 18px; font-weight: 500; color: var(--wm-pink); font-style: italic; }
.fv-site-nav { display: flex; gap: 16px; margin-top: 14px; font-size: 11px; color: var(--ink-3); padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.fv-site-hero { margin-top: 16px; }
.fv-site-h1 { height: 12px; width: 70%; background: var(--ink); border-radius: 4px; margin-bottom: 6px; }
.fv-site-h2 { height: 6px; width: 50%; background: var(--ink-3); border-radius: 4px; margin-bottom: 10px; }
.fv-site-cta { display: inline-block; padding: 6px 12px; background: var(--wm-green); color: #041608; font-size: 10px; font-weight: 700; border-radius: 999px; }
.fv-site-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: 14px; }
.fv-site-card { aspect-ratio: 1; background: var(--bg-3); border-radius: 6px; }
.fv-mp-badge {
  position: absolute;
  bottom: -14px; right: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.fv-support { width: 100%; max-width: 380px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.fv-chat-hd { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.fv-chat-av { width: 36px; height: 36px; border-radius: 50%; background: var(--wm-pink); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--f-display); }
.fv-chat-n { font-size: 13px; font-weight: 600; }
.fv-chat-s { font-size: 11px; color: var(--ink-3); display: flex; align-items: center; gap: 5px; }
.fv-online { width: 6px; height: 6px; border-radius: 50%; background: var(--wm-green); }
.fv-chat-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.fv-msg { max-width: 80%; padding: 8px 12px; border-radius: 14px; line-height: 1.4; }
.fv-msg-in { background: var(--bg-2); align-self: flex-start; border-bottom-left-radius: 4px; }
.fv-msg-out { background: var(--wm-blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.fv-msg-time { background: none; color: var(--ink-3); font-size: 10px; padding: 2px 0; }

/* HOW */
.section-how { background: var(--bg-2); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.how-card { padding: 36px 28px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.how-n { font-family: var(--f-display); font-size: 56px; line-height: 1; font-weight: 400; letter-spacing: -0.04em; color: var(--wm-pink); margin-bottom: 40px; }
.how-card:nth-child(2) .how-n { color: var(--wm-blue-2); }
[data-theme="light"] .how-card:nth-child(2) .how-n { color: var(--wm-blue); }
.how-card:nth-child(3) .how-n { color: var(--wm-green); }
.how-line { height: 1px; background: var(--line); margin-bottom: 18px; }
.how-t { font-size: 20px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.015em; }
.how-d { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* SOCIAL */
.section-social { background: var(--bg); }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.t-card { padding: 36px 28px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); margin: 0; display: flex; flex-direction: column; }
.t-quote-mark { font-family: var(--f-display); font-size: 72px; line-height: 0.5; color: var(--wm-pink); margin-bottom: 20px; font-style: italic; }
.t-quote { font-size: 16px; line-height: 1.5; margin: 0 0 auto; color: var(--ink); padding-bottom: 24px; }
.t-cite { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); margin-top: 20px; }
.t-av { width: 36px; height: 36px; border-radius: 50%; background: var(--wm-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; }
.t-card:nth-child(2) .t-av { background: var(--wm-pink); }
.t-card:nth-child(3) .t-av { background: var(--wm-green); color: #041608; }
.t-name { font-size: 13px; font-weight: 600; }
.t-role { font-size: 12px; color: var(--ink-3); }

/* CONTACT */
.section-contact { background: var(--bg-2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-left .section-h2 { font-size: clamp(36px, 4vw, 52px); }
.contact-bullets { list-style: none; padding: 0; margin: 40px 0 0; display: flex; flex-direction: column; gap: 14px; }
.contact-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.contact-bullets svg { color: var(--wm-green); margin-top: 2px; flex: none; }
.contact-privacy { margin-top: 40px; font-size: 12px; color: var(--ink-3); padding-top: 24px; border-top: 1px solid var(--line); }
.contact-form { background: var(--bg); padding: 36px; border-radius: var(--radius-lg); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; color: var(--ink-3); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field-err input, .field-err select, .field-err textarea { border-color: var(--wm-pink); }
.btn-submit { margin-top: 8px; justify-content: center; padding: 16px 20px; font-size: 16px; }
.contact-sent { padding: 40px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.contact-sent-icon { color: var(--wm-green); }
.contact-sent-t { font-family: var(--f-display); font-size: 22px; line-height: 1.2; max-width: 320px; }

/* FAQ */
.section-faq { background: var(--bg); }
.faq-list { margin-top: 56px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.015em;
  text-align: left;
}
.faq-plus { font-family: var(--f-sans); font-size: 28px; font-weight: 300; color: var(--ink-3); transition: transform .2s; }
.faq-a-wrap { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-open .faq-a-wrap { max-height: 240px; }
.faq-a { padding-bottom: 28px; color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 640px; }

/* FOOTER */
.footer { background: var(--bg); padding: 80px var(--pad-x) 40px; border-top: 1px solid var(--line); }
.footer-inner { max-width: var(--wrap); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 64px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.footer-logo { height: 48px; width: auto; margin-bottom: 20px; }
.footer-tag { font-family: var(--f-display); font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; max-width: 320px; margin: 0 0 24px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col-t { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { padding: 6px 0; font-size: 14px; }
.footer-cols a { color: var(--ink-2); transition: color .2s; }
.footer-cols a:hover { color: var(--ink); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-3); }

/* TWEAKS PANEL */
.tweaks {
  position: fixed; right: 16px; bottom: 16px;
  z-index: 100;
  width: 260px;
  background: color-mix(in oklab, var(--bg-2) 92%, transparent);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  font-size: 12px;
  overflow: hidden;
}
.tweaks-hd { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.tweaks-hd b { font-size: 13px; font-weight: 600; }
.tweaks-x { width: 24px; height: 24px; border-radius: 6px; color: var(--ink-3); font-size: 16px; line-height: 1; }
.tweaks-x:hover { background: var(--bg-3); color: var(--ink); }
.tweaks-body { padding: 8px 14px 14px; display: flex; flex-direction: column; gap: 10px; }
.tweaks-sect { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); padding-top: 6px; }
.tweaks-row { display: flex; flex-direction: column; gap: 6px; }
.tweaks-lbl { color: var(--ink-2); font-weight: 500; }
.tweaks-radio {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  background: var(--bg-3);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
.tweaks-radio button {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all .15s;
}
.tweaks-radio button.on { background: var(--ink); color: var(--bg); }
.tweaks-toggle {
  position: fixed; right: 16px; bottom: 16px; z-index: 99;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform .15s;
}
.tweaks-toggle:hover { transform: scale(1.05); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: auto 1fr; }
  .hero { padding-top: 100px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .hero-visual { min-height: 460px; order: 2; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-stat-v { font-size: 24px; }
  .section { padding: 80px var(--pad-x); }
  .problem-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .feature-row-b .feature-copy { order: 0; }
  .feature-visual { min-height: 320px; }
  .how-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .hero-float-ticket { width: 200px; top: 0; right: 0; }
  .hero-float-kds { width: 200px; bottom: 0; left: 0; }
  .hero-stage-tilted { height: 460px; }
}
@media (max-width: 600px) {
  .nav-toggle { display: none; }
  .hero-h1 { font-size: 40px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .hero-stat:nth-child(3) { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .tweaks { width: calc(100vw - 32px); }
}
