@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&display=swap');

/* ─────────────────────────────────────────────────────────────
   Regulars — Marketing Site Design System
   Themes: for her (default, dark plum + gold) ·
           for him (very dark premium + gold)
   The PHYSICAL color tokens below shift with [data-theme=…];
   legacy variables (--night, --cream, --ink, …) are mapped to
   them so existing component CSS just works in every mode.
   ───────────────────────────────────────────────────────────── */

:root,
[data-theme="her"],
[data-theme="light"],
[data-theme="medium"] {
  /* === Surfaces (page → cards) === */
  --bg:        #2E1737;
  --surface:   #391C44;
  --surface-2: #432253;
  --surface-3: #532B66;
  --line:      #663978;
  --hairline:  rgba(232, 195, 130, 0.13);

  /* === Text === */
  --text:        #F4ECDE;
  --text-strong: rgba(244, 236, 222, 0.82);
  --text-mute:   rgba(244, 236, 222, 0.62);

  /* === Inverted "accent" panel (cream-on-dark) === */
  --accent-bg:        #F4ECDE;
  --accent-surface:   #FFFFFF;
  --accent-line:      #E2D4B8;
  --accent-text:      #170A1F;
  --accent-text-2:    #3D2C42;
  --accent-text-mute: #6A5566;

  /* === Plum / ember tints === */
  --plum-warm: #421E54;
  --plum-deep: #240F30;
  --ember:     #6B2440;
  --gold-glow:   rgba(232, 181, 104, 0.14);
  --gold-glow-2: rgba(232, 181, 104, 0.22);

  /* === Body ambient wash (theme-aware) === */
  --body-wash:
    radial-gradient(90% 50% at 50% 0%, rgba(232, 181, 104, 0.08), transparent 65%),
    radial-gradient(70% 45% at 100% 30%, rgba(214, 116, 100, 0.06), transparent 70%),
    radial-gradient(60% 40% at 0% 80%, rgba(197, 123, 220, 0.05), transparent 70%);

  /* === Translucent nav / overlays === */
  --bg-translucent: rgba(46, 23, 55, 0.72);
  --overlay-strong: rgba(36, 15, 48, 0.88);

  /* === Shadows === */
  --shadow-lift: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 30px 60px -30px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.03) inset, 0 20px 40px -24px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 12px 30px -12px rgba(229, 181, 100, 0.5);

  /* === Photo-surface base — restaurant-lighting feel === */
  --photo-base: linear-gradient(160deg, #4A2138 0%, #2C1326 70%, #1E0A1F 100%);

  /* Theme-aware marketing hero surfaces */
  --marketing-hero-bg: #2A1026;
  --marketing-hero-bg-rgb: 42, 16, 38;
  --marketing-hero-bg-2-rgb: 18, 7, 21;
  --marketing-hero-overlay-strong: rgba(42, 16, 38, 0.96);
  --marketing-hero-overlay-mid: rgba(42, 16, 38, 0.78);
  --marketing-hero-overlay-soft: rgba(42, 16, 38, 0.24);
  --marketing-hero-overlay-faint: rgba(18, 7, 21, 0.10);
  --marketing-hero-card: rgba(27, 12, 24, 0.66);
  --marketing-hero-card-strong: rgba(47, 18, 42, 0.86);
  --marketing-hero-border: rgba(255, 248, 235, 0.18);
  --marketing-hero-copy: rgba(255, 248, 235, 0.78);

  /* === Receipt paper (always cream — it IS a paper receipt) === */
  --paper:     #F4ECDE;
  --paper-ink: #170A1F;
}

/* ─── FOR HIM — dark premium live-site mode ─────────────────── */
[data-theme="him"],
[data-theme="dark"] {
  --bg:        #0D0B16;
  --surface:   #161224;
  --surface-2: #1E1A2E;
  --surface-3: #2A243A;
  --line:      rgba(255, 248, 235, 0.15);
  --hairline:  rgba(255, 248, 235, 0.10);

  --text:        #FFF8EB;
  --text-strong: rgba(255, 248, 235, 0.82);
  --text-mute:   rgba(216, 204, 186, 0.66);

  --accent-bg:        #F4ECDE;
  --accent-surface:   #FFFFFF;
  --accent-line:      #E2D4B8;
  --accent-text:      #170A1F;
  --accent-text-2:    #33243D;
  --accent-text-mute: #6A5566;

  --plum-warm: #1E1A2E;
  --plum-deep: #0D0B16;
  --ember:     #3A1B2B;
  --gold-glow:   rgba(241, 189, 91, 0.14);
  --gold-glow-2: rgba(241, 189, 91, 0.22);

  --body-wash:
    radial-gradient(70% 48% at 50% 0%, rgba(241, 189, 91, 0.08), transparent 66%),
    radial-gradient(65% 44% at 100% 30%, rgba(70, 44, 88, 0.14), transparent 70%),
    radial-gradient(50% 35% at 0% 80%, rgba(95, 62, 120, 0.10), transparent 72%);

  --shadow-lift: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 34px 70px -34px rgba(0, 0, 0, 0.70);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.03) inset, 0 24px 54px -28px rgba(0, 0, 0, 0.62);
  --shadow-gold: 0 12px 30px -12px rgba(241, 189, 91, 0.42);

  --photo-base: linear-gradient(160deg, #241625 0%, #151020 70%, #090711 100%);

  --marketing-hero-bg: #0D0B16;
  --marketing-hero-bg-rgb: 13, 11, 22;
  --marketing-hero-bg-2-rgb: 9, 7, 17;
  --marketing-hero-overlay-strong: rgba(9, 7, 17, 0.96);
  --marketing-hero-overlay-mid: rgba(13, 11, 22, 0.84);
  --marketing-hero-overlay-soft: rgba(13, 11, 22, 0.42);
  --marketing-hero-overlay-faint: rgba(9, 7, 17, 0.16);
  --marketing-hero-card: rgba(13, 11, 22, 0.72);
  --marketing-hero-card-strong: rgba(20, 16, 31, 0.88);
  --marketing-hero-border: rgba(255, 248, 235, 0.14);
  --marketing-hero-copy: rgba(255, 248, 235, 0.76);

  --bg-translucent: rgba(13, 11, 22, 0.78);
  --overlay-strong: rgba(9, 7, 17, 0.9);
}

/* ═════════════════════════════════════════════════════════════
   LEGACY ALIASES — keep old variable names working.
   Components written before the theme system used these names;
   they now resolve to whichever theme is active.
   ═════════════════════════════════════════════════════════════ */
:root {
  --night:          var(--bg);
  --night-1:        var(--surface);
  --night-2:        var(--surface-2);
  --night-3:        var(--surface-3);
  --night-line:     var(--line);
  --night-hairline: var(--hairline);
  --cream:          var(--text);
  --mute:           var(--text-mute);
  --mute-strong:    var(--text-strong);

  /* Inverted accent block — old names for the "cream-section" pattern */
  --cream-1:    var(--accent-surface);
  --cream-2:    var(--accent-surface);
  --cream-line: var(--accent-line);
  --ink:        var(--accent-text);
  --ink-2:      var(--accent-text-2);
  --ink-soft:   var(--accent-text-mute);

  /* === Theme-stable brand accents (DO NOT shift) === */
  --gold:        #E8B568;
  --gold-1:      #D49E45;
  --gold-deep:   #A87425;
  --gold-soft:   #F3D89B;
  --wine:        #7A2E45;
  --wine-deep:   #4A1A2A;
  --plum-bright: #C57BDC;
  --jade:        #8AB89A;
  --tomato:      #D26A4A;

  /* Receipt paper — always cream-paper-on-ink regardless of theme */
  --paper:     #F4ECDE;
  --paper-ink: #170A1F;
  --paper-line: rgba(23, 10, 31, 0.22);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Spacing scale */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  /* Type */
  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-wordmark: 'Newsreader', Georgia, serif;
  --font-ui:      'Switzer', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

/* ─── Reset ────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-ui);
  background: var(--body-wash), var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--night); }

@keyframes pulse-gold {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── Type system ──────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.015em;
}
.display-md {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.display-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.italic-accent { font-style: italic; color: var(--gold); }

.eyebrow {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--mute-strong);
  font-weight: 400;
  max-width: 56ch;
}
.body-md { font-size: 16px; line-height: 1.55; }
.body-sm { font-size: 14px; line-height: 1.5; }
.caption { font-size: 12px; letter-spacing: 0.04em; color: var(--mute); }

/* ─── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

.section {
  padding: 96px 0;
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
}

.cream-section {
  background: var(--cream);
  color: var(--ink);
}
.cream-section .eyebrow { color: var(--wine); }
.cream-section .lead { color: var(--ink-2); }
.cream-section .caption { color: var(--ink-soft); }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold);
  color: var(--night);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: var(--gold-soft); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--night-line);
}
.btn-ghost:hover { background: var(--night-2); border-color: var(--night-3); }

.cream-section .btn-ghost {
  color: var(--ink);
  border-color: rgba(23, 10, 31, 0.18);
}
.cream-section .btn-ghost:hover { background: rgba(23, 10, 31, 0.04); }

.btn-dark {
  background: var(--night);
  color: var(--cream);
}
.btn-dark:hover { background: var(--night-1); }

.btn-sm { padding: 9px 14px; font-size: 13px; }
.btn-lg { padding: 18px 28px; font-size: 16px; }

/* ─── Nav ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: var(--bg-translucent);
  border-bottom: 1px solid var(--hairline);
}
.cream-page .nav {
  background: rgba(244, 236, 222, 0.78);
  border-bottom: 1px solid rgba(23, 10, 31, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-wordmark);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.nav-pin {
  width: 22px; height: 22px;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--mute-strong);
  border-radius: var(--r-pill);
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--cream); background: var(--night-2); }
.nav-link.active { color: var(--cream); background: var(--night-2); }

.cream-page .nav-link { color: var(--ink-2); }
.cream-page .nav-link:hover, .cream-page .nav-link.active {
  background: rgba(23, 10, 31, 0.06); color: var(--ink);
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--night-line);
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--night-1) 84%, transparent);
  color: var(--cream);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset;
}
.mobile-menu-button span {
  position: relative;
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.mobile-menu-button span::before,
.mobile-menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.mobile-menu-button span::before { top: -6px; }
.mobile-menu-button span::after { top: 6px; }
.mobile-menu-button[aria-expanded="true"] span { background: transparent; }
.mobile-menu-button[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.mobile-menu-button[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu-panel {
  display: none;
  position: fixed;
  top: 76px;
  left: 16px;
  right: 16px;
  z-index: 90;
  padding: 16px;
  border: 1px solid var(--night-line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(80% 70% at 12% 0%, rgba(232,181,104,0.12), transparent 58%),
    color-mix(in srgb, var(--night) 96%, transparent);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
.mobile-menu-panel.is-open { display: block; }
.mobile-menu-links {
  display: grid;
  gap: 6px;
}
.mobile-menu-links a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-radius: var(--r-md);
  color: var(--cream);
  background: color-mix(in srgb, var(--night-1) 74%, transparent);
}
.mobile-menu-links a::after {
  content: "›";
  color: var(--gold);
}
.mobile-menu-controls,
.footer-mode-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.mobile-menu-controls {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--night-hairline);
}
.footer-mode-row {
  margin: 0 0 24px;
}
.footer-mode-row .marketing-theme-switch,
.footer-mode-row .marketing-language-switch {
  display: inline-flex;
}

.marketing-theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 38px;
  padding: 3px;
  border: 1px solid var(--night-line);
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--night-1) 82%, transparent);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset;
}
.marketing-theme-switch button {
  height: 30px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  color: var(--mute-strong);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  transition: background .16s ease, color .16s ease, opacity .16s ease;
}
.marketing-theme-switch button.is-active {
  background: var(--gold);
  color: var(--night);
}
.marketing-theme-switch button:not(.is-active):hover {
  color: var(--cream);
  background: color-mix(in srgb, var(--night-2) 72%, transparent);
}
.marketing-language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 38px;
  padding: 3px;
  border: 1px solid var(--night-line);
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--night-1) 82%, transparent);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset;
}
.marketing-language-switch button {
  height: 30px;
  min-width: 34px;
  padding: 0 10px;
  border-radius: var(--r-pill);
  color: var(--mute-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  transition: background .16s ease, color .16s ease, opacity .16s ease;
}
.marketing-language-switch button.is-active {
  background: var(--gold);
  color: var(--night);
}
.marketing-language-switch button:not(.is-active):hover {
  color: var(--cream);
  background: color-mix(in srgb, var(--night-2) 72%, transparent);
}
.marketing-theme-floating {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 80;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .mobile-menu-button { display: inline-flex; }
}
@media (max-width: 720px) {
  .nav-inner { gap: 12px; }
  .nav-logo { flex-shrink: 0; }
  .nav-cta > .nav-link,
  .nav-cta > .btn {
    display: none;
  }
  .nav-cta > .marketing-theme-switch { display: none; }
  .marketing-language-switch {
    height: 34px;
  }
  .marketing-language-switch button {
    height: 26px;
    min-width: 30px;
    padding-inline: 8px;
  }
  .nav-cta { gap: 8px; }
  .marketing-theme-floating {
    top: 14px;
    right: 14px;
  }
}
@media (max-width: 430px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .nav-logo { gap: 8px; font-size: 20px; }
  .nav-pin { width: 20px; height: 20px; }
  .nav-cta { gap: 6px; }
  .nav-cta > .marketing-language-switch { display: none; }
  .nav-cta .nav-link { padding-inline: 8px; }
  .nav-cta .btn-sm { padding-inline: 10px; }
}

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--night);
  color: var(--cream);
  padding: 84px 0 40px;
  border-top: 1px solid var(--night-hairline);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(5, minmax(110px, 1fr));
  gap: 48px;
  align-items: start;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (min-width: 721px) and (max-width: 980px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--mute-strong);
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--night-hairline);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 12px;
  color: var(--mute);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 16px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cream);
  font-family: var(--font-wordmark);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 24px;
}
.footer-logo::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 38px;
  background: url("/brand/regulars-logo-pin-gold-160.png") center / contain no-repeat;
}
.footer-copy {
  max-width: 34ch;
  color: var(--mute-strong);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 22px;
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}
.footer-actions .btn {
  display: inline-flex;
  padding: 8px 13px;
}
.footer-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--mute);
  font-size: 12px;
}
.footer-status span {
  border: 1px solid var(--night-line);
  border-radius: var(--r-pill);
  padding: 5px 9px;
}
.footer-status b {
  color: var(--gold);
  font-weight: 500;
}

/* ─── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.badge-gold {
  background: rgba(229, 181, 100, 0.14);
  color: var(--gold);
  border: 1px solid rgba(229, 181, 100, 0.28);
}
.badge-active {
  background: rgba(138, 184, 154, 0.14);
  color: var(--jade);
  border: 1px solid rgba(138, 184, 154, 0.28);
}
.badge-vote {
  background: rgba(167, 105, 201, 0.14);
  color: var(--plum-bright);
  border: 1px solid rgba(167, 105, 201, 0.28);
}
.badge-cream {
  background: var(--cream-1);
  color: var(--ink);
  border: 1px solid var(--cream-line);
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}

/* ─── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--night-1);
  border: 1px solid var(--night-hairline);
  border-radius: var(--r-lg);
  padding: 24px;
}
.card-cream {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-lg);
  padding: 24px;
}

/* ─── App / phone frame (for inline app previews) ──────────── */
.phone {
  position: relative;
  width: 320px;
  height: 660px;
  border-radius: 44px;
  background: var(--night-1);
  border: 1px solid var(--night-line);
  padding: 12px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 60px 100px -40px rgba(0,0,0,0.7),
    0 20px 40px -20px rgba(0,0,0,0.5);
  overflow: hidden;
  flex-shrink: 0;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: var(--night);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #000;
  border-radius: 18px;
  z-index: 5;
}
.phone-status {
  height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 22px 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  z-index: 4;
}
.phone-status-right {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px;
}
.phone-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.phone-screen.has-real-shot > :not(.real-app-shot) {
  display: none !important;
}
.phone.real-phone .phone-notch {
  display: none;
}
.real-app-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: filter 180ms ease, opacity 180ms ease;
}

html[data-regulars-mode="her"] .real-app-shot[data-theme-shot="safe"] {
  filter: saturate(1.14) brightness(1.08) contrast(0.96) sepia(0.08) hue-rotate(8deg);
}

html[data-regulars-mode="him"] .real-app-shot[data-theme-shot="safe"],
html[data-theme="him"] .real-app-shot[data-theme-shot="safe"] {
  filter: saturate(1.08) brightness(1.08) contrast(0.98);
}

/* ─── Restaurant card ──────────────────────────────────────── */
.rest-card {
  display: flex;
  flex-direction: column;
  background: var(--night-1);
  border: 1px solid var(--night-hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.rest-card:hover { transform: translateY(-2px); border-color: var(--night-3); }
.rest-photo {
  aspect-ratio: 4/3;
  background: var(--night-2);
  position: relative;
  overflow: hidden;
}
.rest-photo-tags {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; gap: 6px;
}
.rest-meta {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rest-name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  margin: 0;
}
.rest-sub {
  font-size: 13px;
  color: var(--mute);
}
.rest-pricing {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  background: rgba(229, 181, 100, 0.08);
  border: 1px solid rgba(229, 181, 100, 0.2);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rest-pricing-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
}
.rest-pricing-strike {
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 6px;
}

.rest-card.unclaimed .rest-photo {
  filter: grayscale(0.35);
}
.rest-vote {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  background: rgba(167, 105, 201, 0.08);
  border: 1px dashed rgba(167, 105, 201, 0.35);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--plum-bright);
}

/* ─── Forms / inputs ───────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 13px; font-weight: 500;
  color: var(--mute-strong);
}
.input {
  padding: 14px 16px;
  background: var(--night-1);
  border: 1px solid var(--night-line);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--cream);
  transition: border-color 0.15s, background 0.15s;
}
.input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--night-2);
}
.input::placeholder { color: rgba(244,236,222,0.35); }

.cream-section .input, .cream-page .input {
  background: #fff;
  border-color: var(--cream-line);
  color: var(--ink);
}
.cream-section .input::placeholder { color: rgba(23,10,31,0.35); }

/* ─── Theme toggle (Light / Dusk / Dark / Auto) ───────────── */
.theme-toggle {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  background: var(--overlay-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
  color: var(--text-strong);
  font-size: 12px;
}
[data-theme="light"] .theme-toggle { color: var(--accent-text-2); }
.theme-toggle-label {
  padding: 0 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--text-mute);
  border-right: 1px solid var(--line);
  margin-right: 4px;
  height: 18px;
  display: inline-flex;
  align-items: center;
}
[data-theme="light"] .theme-toggle-label { color: var(--accent-text-mute); }
.theme-toggle button {
  padding: 7px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  transition: opacity 0.15s, background 0.15s;
}
.theme-toggle button:hover { opacity: 1; }
.theme-toggle button.active {
  background: var(--gold);
  color: var(--night);
  opacity: 1;
}
.theme-toggle button.auto-resolved:not(.active) {
  background: rgba(232,181,104,0.16);
  color: var(--gold);
  opacity: 1;
}
@media (max-width: 720px) {
  .theme-toggle { right: 12px; bottom: 80px; padding: 4px; gap: 0; }
  .theme-toggle-label { display: none; }
  .theme-toggle button span { display: none; }
  .theme-toggle button { padding: 8px; }
}

/* Mobile-view simulation: when body.view-mobile, constrain to phone */
body.view-mobile .site-shell {
  max-width: 390px;
  margin: 32px auto;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.8), 0 0 0 12px var(--night-1), 0 0 0 13px var(--night-line);
  position: relative;
  border: 1px solid var(--night-3);
  min-height: 800px;
}
body.view-mobile { padding-bottom: 120px; }

/* ─── Utility ──────────────────────────────────────────────── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.text-center { text-align: center; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }

/* Reusable hairline divider */
.hairline {
  height: 1px;
  background: var(--night-hairline);
  width: 100%;
}
.cream-section .hairline { background: rgba(23,10,31,0.08); }

/* ─── Photo surface helpers ────────────────────────────────
   Layered CSS painting to suggest dim restaurant scenes / food
   warmth rather than abstract gradients. Use as a backdrop
   when no real photo is dropped in yet. */
.photo-surface {
  position: relative;
  overflow: hidden;
  background:
    /* warm overhead pendant glow */
    radial-gradient(40% 50% at 30% 25%, rgba(255, 195, 122, 0.32), transparent 60%),
    /* candle / warm bulb */
    radial-gradient(18% 22% at 78% 62%, rgba(255, 168, 110, 0.42), transparent 65%),
    /* table top warmth */
    radial-gradient(70% 40% at 50% 100%, rgba(140, 64, 60, 0.55), transparent 70%),
    /* base */
    linear-gradient(160deg, #4A2138 0%, #2C1326 70%, #1E0A1F 100%);
}
.photo-surface::before {
  content: "";
  position: absolute; inset: 0;
  background:
    /* film grain */
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,0.02) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 70% 80%, rgba(255,255,255,0.015) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.photo-surface.dim::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 50%, transparent 40%, rgba(15, 5, 20, 0.5) 100%);
  pointer-events: none;
}
/* Variations */
.photo-surface.bar {
  background:
    radial-gradient(30% 60% at 70% 30%, rgba(232, 181, 104, 0.35), transparent 65%),
    radial-gradient(40% 30% at 30% 100%, rgba(110, 30, 50, 0.45), transparent 70%),
    linear-gradient(180deg, #3D1A30 0%, #261027 80%, #1B0A1E 100%);
}
.photo-surface.pasta {
  background:
    radial-gradient(45% 55% at 50% 50%, rgba(220, 130, 70, 0.30), transparent 70%),
    radial-gradient(60% 60% at 50% 100%, rgba(80, 30, 40, 0.45), transparent 75%),
    linear-gradient(160deg, #5C2735 0%, #2C1228 100%);
}
.photo-surface.terrasse {
  background:
    radial-gradient(35% 40% at 20% 25%, rgba(255, 218, 158, 0.28), transparent 65%),
    radial-gradient(30% 35% at 80% 75%, rgba(214, 116, 100, 0.30), transparent 70%),
    linear-gradient(170deg, #432053 0%, #2A1438 100%);
}
.photo-surface.bistro {
  background:
    radial-gradient(30% 50% at 50% 30%, rgba(255, 180, 110, 0.30), transparent 65%),
    radial-gradient(50% 40% at 50% 100%, rgba(80, 25, 40, 0.50), transparent 70%),
    linear-gradient(180deg, #3A1735 0%, #1D0A20 100%);
}
.photo-surface.cafe {
  background:
    radial-gradient(40% 50% at 50% 30%, rgba(200, 130, 80, 0.32), transparent 65%),
    radial-gradient(60% 40% at 50% 100%, rgba(80, 40, 30, 0.45), transparent 70%),
    linear-gradient(180deg, #3D2024 0%, #1F0E1A 100%);
}
.photo-surface.izakaya {
  background:
    radial-gradient(25% 35% at 30% 30%, rgba(232, 100, 80, 0.35), transparent 65%),
    radial-gradient(30% 30% at 75% 70%, rgba(232, 181, 104, 0.30), transparent 70%),
    linear-gradient(170deg, #2D1532 0%, #1A0820 100%);
}

/* Margot marketing blocks */
.mgt {
  --mgt-bg: var(--night);
  --mgt-surface: var(--night-1);
  --mgt-surface2: var(--night-2);
  --mgt-surface3: var(--night-3);
  --mgt-ink: var(--cream);
  --mgt-ink-dim: var(--mute-strong);
  --mgt-ink-mute: var(--mute);
  --mgt-ink-faint: rgba(244, 236, 222, 0.32);
  --mgt-gold: var(--gold);
  --mgt-gold-deep: var(--gold-deep);
  --mgt-gold-glow: var(--gold-glow);
  --mgt-plum: var(--plum-bright);
  --mgt-hairline: var(--night-hairline);
  --mgt-border: rgba(244, 236, 222, 0.12);
  --mgt-border-gold: rgba(232, 181, 104, 0.28);
  container-type: inline-size;
  background: var(--mgt-bg);
  color: var(--mgt-ink);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  width: 100%;
}
.mgt * { box-sizing: border-box; }
.mgt ::selection { background: rgba(232, 181, 104, 0.30); }
.mgt-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mgt-gold);
  margin: 0;
}
.mgt-ava {
  position: relative;
  flex-shrink: 0;
}
.mgt-ava-ring {
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(150deg, var(--mgt-gold), var(--mgt-gold-deep) 60%, rgba(197, 123, 220, 0.62));
}
.mgt-ava-face {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(197, 123, 220, 0.45), transparent 60%),
    radial-gradient(120% 120% at 75% 90%, rgba(232, 181, 104, 0.28), transparent 55%),
    #2A2036;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--mgt-ink);
  overflow: hidden;
}
.mgt-ava-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mgt-ai {
  position: absolute;
  right: -4px;
  bottom: -4px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1B140A;
  background: var(--mgt-gold);
  padding: 1px 5px;
  border-radius: 999px;
  border: 2px solid var(--mgt-bg);
  line-height: 1.3;
}
.mgt-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: #1B140A;
  background: var(--mgt-gold);
  padding: 14px 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 22px rgba(232, 181, 104, 0.18);
}
.mgt-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(232, 181, 104, 0.28);
}
.mgt-cta span {
  font-size: 17px;
  transition: transform 0.15s ease;
}
.mgt-cta:hover span { transform: translateX(3px); }
.mgt-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: var(--mgt-gold);
  background: transparent;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid var(--mgt-border-gold);
  cursor: pointer;
}
.mgt-ghost:hover { background: var(--mgt-gold-glow); }
.mgt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mgt-chip {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  color: var(--mgt-ink-dim);
  background: transparent;
  border: 1px solid var(--mgt-border);
  border-radius: 999px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.mgt-chip:hover {
  border-color: var(--mgt-border-gold);
  color: var(--mgt-ink);
}
.mgt-chip[aria-pressed="true"] {
  background: var(--mgt-gold);
  border-color: var(--mgt-gold);
  color: #1B140A;
  font-weight: 600;
}
.mgt-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mgt-gold);
}
.mgt-chip[aria-pressed="true"] .dot { background: #1B140A; }
.mgt-home { padding: 80px 28px; }
.mgt-home-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.mgt-home-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 7cqi, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--mgt-ink);
  margin: 18px 0 0;
  text-wrap: balance;
}
.mgt-home-copy,
.mgt-mock,
.mgt-intake,
.mgt-poll,
.mgt-step {
  min-width: 0;
}
.mgt-home-copy .body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--mgt-ink-dim);
  margin: 22px 0 0;
  max-width: 46ch;
  overflow-wrap: break-word;
}
.mgt-home-copy .pricing {
  color: var(--mgt-gold);
  font-weight: 500;
}
.mgt-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}
.mgt-home-note {
  font-size: 12.5px;
  color: var(--mgt-ink-faint);
  margin: 16px 0 0;
}
.mgt-mock {
  background: var(--mgt-surface2);
  border: 1px solid var(--mgt-border-gold);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  max-width: 380px;
  width: 100%;
  justify-self: center;
}
.mgt-mock-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.mgt-mock-head .name,
.mgt-intake-head .name {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mgt-gold);
}
.mgt-mock-head .sub,
.mgt-intake-head .sub {
  font-size: 12px;
  color: var(--mgt-ink-mute);
  margin-top: 2px;
}
.mgt-ask {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.25;
  color: var(--mgt-ink);
  margin: 0 0 16px;
}
.mgt-reply {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(232, 181, 104, 0.06);
  border: 1px solid var(--mgt-hairline);
  border-left: 2px solid var(--mgt-gold);
}
.mgt-reply .who {
  font-family: var(--font-ui);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mgt-gold-deep);
  margin-bottom: 6px;
}
.mgt-reply p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--mgt-ink-dim);
  margin: 0;
}
.mgt-friends,
.mgt-how { padding: 80px 28px; }
.mgt-friends-inner,
.mgt-how-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.mgt-how-inner { max-width: 1040px; }
.mgt-friends-head,
.mgt-how-head {
  max-width: 56ch;
  margin-bottom: 44px;
}
.mgt-how-head {
  max-width: 60ch;
  margin-bottom: 48px;
}
.mgt-friends-head h2,
.mgt-how-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 5.4cqi, 44px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--mgt-ink);
  margin: 14px 0 0;
  text-wrap: balance;
}
.mgt-how-head h2 { line-height: 1.06; }
.mgt-friends-head .body,
.mgt-how-head .body {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--mgt-ink-dim);
  margin: 18px 0 0;
  overflow-wrap: break-word;
}
.mgt-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
.mgt-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mgt-ink-mute);
  padding: 2px 0;
}
.mgt-flow-arrow .line {
  height: 1px;
  flex: 1;
  background: var(--mgt-hairline);
  max-width: 60px;
}
.mgt-flow-arrow .glyph {
  color: var(--mgt-gold);
  font-family: var(--font-ui);
  font-size: 16px;
}
.mgt-intake,
.mgt-poll {
  background: var(--mgt-surface);
  border: 1px solid var(--mgt-border-gold);
  border-radius: 20px;
  padding: 22px;
}
.mgt-intake-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}
.mgt-rows {
  display: flex;
  flex-direction: column;
}
.mgt-row {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--mgt-hairline);
}
.mgt-row:first-child { border-top: 0; }
.mgt-row .k {
  font-family: var(--font-ui);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mgt-ink-mute);
  width: 116px;
  flex-shrink: 0;
}
.mgt-row .v {
  font-size: 15px;
  color: var(--mgt-ink);
  font-weight: 500;
}
.mgt-row .v small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--mgt-ink-mute);
  margin-top: 3px;
}
.mgt-poll-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.mgt-poll-title {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--mgt-ink);
  letter-spacing: -0.01em;
}
.mgt-poll-meta {
  font-size: 12px;
  color: var(--mgt-ink-mute);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.mgt-poll-meta .lead {
  color: var(--mgt-gold);
  font-weight: 600;
}
.mgt-badge {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
}
.mgt-badge.partner {
  color: var(--mgt-gold);
  background: var(--mgt-gold-glow);
}
.mgt-stack { display: flex; }
.mgt-stack .av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid var(--mgt-surface);
  background: var(--mgt-surface3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--mgt-ink-dim);
}
.mgt-stack .av:first-child { margin-left: 0; }
.mgt-opt {
  padding: 13px 0;
  border-top: 1px solid var(--mgt-hairline);
}
.mgt-opt:first-of-type { border-top: 0; }
.mgt-opt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 11px;
}
.mgt-opt-name {
  font-size: 14.5px;
  color: var(--mgt-ink);
  font-weight: 500;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mgt-opt-name small {
  color: var(--mgt-ink-mute);
  font-weight: 400;
  font-size: 12px;
  margin-left: 6px;
}
.mgt-opt-votes {
  font-size: 11.5px;
  color: var(--mgt-ink-mute);
  font-family: var(--font-ui);
  flex-shrink: 0;
}
.mgt-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(244, 236, 222, 0.06);
  overflow: hidden;
}
.mgt-bar > i {
  display: block;
  height: 100%;
  border-radius: 3px;
}
.mgt-bar > i.gold { background: linear-gradient(90deg, var(--mgt-gold-deep), var(--mgt-gold)); }
.mgt-bar > i.dim { background: rgba(244, 236, 222, 0.28); }
.mgt-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.mgt-step {
  background: var(--mgt-surface);
  border: 1px solid var(--mgt-hairline);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.mgt-step .num {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mgt-ink-faint);
}
.mgt-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15;
  color: var(--mgt-ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.mgt-step p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--mgt-ink-mute);
  margin: 0;
}
.mgt-step.is-margot {
  background: linear-gradient(160deg, rgba(232, 181, 104, 0.09), var(--mgt-surface) 55%);
  border-color: var(--mgt-border-gold);
}
.mgt-step.is-margot .num { color: var(--mgt-gold); }
.mgt-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-family: var(--font-ui);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mgt-gold);
  background: var(--mgt-gold-glow);
  padding: 4px 9px;
  border-radius: 999px;
}
@container (min-width: 720px) {
  .mgt-home-grid {
    grid-template-columns: 1fr 380px;
    gap: 56px;
  }
  .mgt-mock { justify-self: end; }
  .mgt-flow {
    grid-template-columns: 1fr auto 1fr;
    gap: 22px;
  }
  .mgt-flow-arrow {
    flex-direction: column;
    padding: 0;
  }
  .mgt-flow-arrow .line {
    width: 1px;
    height: 36px;
    max-width: none;
  }
  .mgt-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
  .mgt-step { padding: 20px 18px; }
  .mgt-step h3 { font-size: 18px; }
}
@container (min-width: 720px) and (max-width: 980px) {
  .mgt-steps { grid-template-columns: repeat(2, 1fr); }
}

/* Pin/logo SVG default */
.pin-logo,
.nav-pin {
  width: 40px !important;
  height: 40px !important;
  flex: 0 0 40px;
  object-fit: contain;
}
.pin-logo > *,
.nav-pin > * {
  display: none;
}
