/* =========================================================================
   Mimos — Landing page styles
   Design tokens + components, organized: tokens → base → layout → sections.
   ========================================================================= */

@import url("https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@500,700,800&f[]=general-sans@400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap");

/* ---- Tokens ----------------------------------------------------------- */
:root {
  --color-terracotta-50:  #FBEFE8;
  --color-terracotta-100: #F4D6C6;
  --color-terracotta-200: #ECB89E;
  --color-terracotta-300: #E29874;
  --color-terracotta-400: #D67654;
  --color-terracotta-500: #C25C3C;
  --color-terracotta-600: #A14828;
  --color-terracotta-700: #7C361D;

  --color-sage-50:  #ECF0EC;
  --color-sage-100: #D1DCD2;
  --color-sage-200: #A6BCA9;
  --color-sage-300: #719278;
  --color-sage-400: #4A6B53;
  --color-sage-500: #2C5249;
  --color-sage-600: #1F3E37;
  --color-sage-700: #142B27;

  --color-honey-50:  #FBF3DF;
  --color-honey-100: #F5E4B0;
  --color-honey-200: #EFD27D;
  --color-honey-300: #E8B14F;
  --color-honey-400: #D69730;
  --color-honey-500: #B07919;

  --color-cream-50:  #FBF7EE;
  --color-cream-100: #F7F2E8;
  --color-cream-200: #EFE8D6;
  --color-cream-300: #E3D9C0;
  --color-cream-400: #C9BC9C;

  --color-ink-50:  #8B8478;
  --color-ink-100: #6B6458;
  --color-ink-200: #4A453D;
  --color-ink-300: #2E2A24;
  --color-ink-400: #1A1610;
  --color-ink-500: #0F0C08;

  --color-white: #FFFFFF;

  --color-success: #4A8A5F;
  --color-success-bg: #E4EFE4;
  --color-warning: #D69730;
  --color-warning-bg: #FBF3DF;
  --color-danger:  #C24A3C;
  --color-danger-bg: #FBE8E4;
  --color-info:    #3F6F8E;
  --color-info-bg: #E3EDF3;

  --fg-1: var(--color-ink-400);
  --fg-2: var(--color-ink-200);
  --fg-3: var(--color-ink-100);
  --fg-4: var(--color-ink-50);
  --fg-on-brand: var(--color-cream-50);
  --fg-on-dark:  var(--color-cream-100);
  --fg-link:     var(--color-terracotta-500);

  --bg-1: var(--color-cream-100);
  --bg-2: var(--color-cream-50);
  --bg-3: var(--color-white);
  --bg-4: var(--color-cream-200);
  --bg-inverse: var(--color-sage-700);
  --bg-brand:   var(--color-terracotta-400);

  --border-1: rgba(26, 22, 16, 0.10);
  --border-2: rgba(26, 22, 16, 0.18);
  --border-strong: var(--color-ink-400);

  --font-display: "Cabinet Grotesk", "DM Sans", system-ui, sans-serif;
  --font-body:    "General Sans", "DM Sans", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --shadow-xs: 0 1px 2px rgba(54, 36, 20, 0.06);
  --shadow-sm: 0 2px 6px rgba(54, 36, 20, 0.08);
  --shadow-md: 0 8px 20px -6px rgba(54, 36, 20, 0.12), 0 2px 4px rgba(54, 36, 20, 0.06);
  --shadow-lg: 0 24px 40px -16px rgba(54, 36, 20, 0.18), 0 4px 8px rgba(54, 36, 20, 0.06);
  --shadow-xl: 0 40px 80px -24px rgba(54, 36, 20, 0.24), 0 8px 16px rgba(54, 36, 20, 0.08);

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:     cubic-bezier(0.55, 0, 0.7, 0.2);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --dur-fast:   120ms;
  --dur-normal: 200ms;
  --dur-slow:   320ms;
}

/* ---- Base ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-1);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
button { font-family: inherit; }
button:hover:not(:disabled) { filter: brightness(0.97); }
button:active:not(:disabled) { transform: translateY(1px); }
a { color: inherit; }
a:hover { opacity: 0.85; }
::selection { background: var(--color-honey-300); color: var(--color-ink-400); }
[id] { scroll-margin-top: 80px; }

@keyframes mimos-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,177,79,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(232,177,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,177,79,0); }
}

/* ---- Nav -------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 242, 232, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border-1);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.04em;
  color: var(--fg-1);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 24px;
  margin-left: 18px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  text-decoration: none;
  cursor: pointer;
}
.nav-right {
  margin-left: auto;
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: var(--color-sage-500);
  color: var(--fg-on-dark);
}
.lang-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: var(--color-cream-200);
  border: 1px solid var(--border-1);
}
.lang-btn {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: var(--fg-3);
  font-family: inherit;
}
.lang-btn[aria-pressed="true"] {
  background: var(--bg-3);
  color: var(--fg-1);
  box-shadow: var(--shadow-xs);
  cursor: default;
}

/* ---- Hero ------------------------------------------------------------- */
.hero {
  padding: 88px 32px 96px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  right: -160px;
  top: -80px;
  width: 760px;
  height: 760px;
  opacity: 0.07;
  pointer-events: none;
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-honey-500);
}
.dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-honey-300);
  animation: mimos-pulse 2s var(--ease-out) infinite;
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 20px 0 22px;
  color: var(--fg-1);
  text-wrap: balance;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0;
  text-wrap: pretty;
}
.hero-form-wrap { margin-top: 32px; }

/* ---- Waitlist form ---------------------------------------------------- */
.wl { max-width: 520px; }
.wl-field {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--bg-3);
  border: 1px solid var(--border-1);
  border-radius: 16px;
  box-shadow: 0 8px 20px -10px rgba(54, 36, 20, 0.18);
  align-items: stretch;
}
.wl-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 14px 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--fg-1);
  outline: none;
}
.wl-input::placeholder { color: var(--fg-3); }
.wl-submit {
  font-size: 16px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: var(--color-sage-500);
  color: var(--fg-on-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  font-family: inherit;
  transition: opacity var(--dur-normal) var(--ease-out);
}
.wl-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.wl-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--fg-3);
  cursor: pointer;
}
.wl-consent input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--color-sage-500);
  cursor: pointer;
  border-radius: 3px;
  outline-offset: 2px;
}
.wl-consent.is-error input { outline: 2px solid var(--color-danger); }
.wl-consent a {
  color: var(--color-sage-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wl-error {
  display: none;
  margin-top: 6px;
  margin-left: 26px;
  font-size: 12.5px;
  color: var(--color-danger);
  font-weight: 500;
}
.wl-error.is-visible { display: block; }
.wl-micro {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--fg-3);
}
.wl-success {
  background: var(--color-honey-50);
  border: 1px solid var(--color-honey-300);
  border-radius: 16px;
  padding: 14px 18px;
  display: none;
  align-items: center;
  gap: 14px;
}
.wl-success.is-visible { display: flex; }
.wl-success-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-honey-300);
  color: var(--color-ink-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wl-success-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-1);
}
.wl-success-body {
  font-size: 13.5px;
  color: var(--fg-3);
  margin-top: 2px;
}
.wl.is-success .wl-form,
.wl.is-success .wl-micro { display: none; }

/* Dark tone (inside the pricing card) */
.wl[data-tone="dark"] .wl-field {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}
.wl[data-tone="dark"] .wl-input { color: var(--fg-on-dark); }
.wl[data-tone="dark"] .wl-input::placeholder { color: rgba(251, 247, 238, 0.5); }
.wl[data-tone="dark"] .wl-submit {
  background: var(--color-honey-300);
  color: var(--color-ink-400);
}
.wl[data-tone="dark"] .wl-consent {
  color: rgba(251, 247, 238, 0.7);
}
.wl[data-tone="dark"] .wl-consent a { color: var(--color-honey-300); }
.wl[data-tone="dark"] .wl-consent input { accent-color: var(--color-honey-300); }
.wl[data-tone="dark"] .wl-success {
  background: rgba(232, 177, 79, 0.14);
}
.wl[data-tone="dark"] .wl-success-title { color: var(--fg-on-dark); }
.wl[data-tone="dark"] .wl-success-body { color: rgba(251, 247, 238, 0.7); }

/* ---- Browser window (hero visual) ------------------------------------ */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.chrome-window {
  width: 560px;
  height: 560px;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  background: #35363a;
}
.chrome-bar {
  display: flex;
  align-items: center;
  height: 44px;
  background: #202124;
  padding-right: 8px;
}
.chrome-lights {
  display: flex;
  gap: 8px;
  padding: 0 14px;
}
.chrome-light { width: 12px; height: 12px; border-radius: 50%; }
.chrome-light--red    { background: #ff5f57; }
.chrome-light--yellow { background: #febc2e; }
.chrome-light--green  { background: #28c840; }
.chrome-tabs {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-left: 4px;
  flex: 1;
}
.chrome-tab {
  position: relative;
  height: 34px;
  align-self: flex-end;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #35363a;
  border-radius: 8px 8px 0 0;
  min-width: 120px;
  max-width: 220px;
  font-family: system-ui, sans-serif;
  font-size: 12px;
  color: #e8eaed;
}
.chrome-tab-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #5f6368;
  flex-shrink: 0;
}
.chrome-tab-title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chrome-tab-curve {
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 10px;
}
.chrome-tab-curve--left  { left: -8px; }
.chrome-tab-curve--right { right: -8px; transform: scaleX(-1); }
.chrome-toolbar {
  height: 40px;
  background: #35363a;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
}
.chrome-tb-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chrome-tb-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(154, 160, 166, 0.4);
}
.chrome-url {
  flex: 1;
  height: 30px;
  border-radius: 15px;
  background: #282a2d;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  margin: 0 6px;
}
.chrome-url-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(154, 160, 166, 0.4);
}
.chrome-url-text {
  flex: 1;
  color: #e8eaed;
  font-size: 13px;
  font-family: system-ui, sans-serif;
}
.chrome-body {
  flex: 1;
  background: #fff;
  overflow: hidden;
}

/* ---- Web app dashboard (hero visual content) ------------------------- */
.app {
  display: flex;
  height: 100%;
  background: var(--color-cream-50);
}
.app-side {
  width: 156px;
  background: var(--color-cream-100);
  border-right: 1px solid var(--border-1);
  display: flex;
  flex-direction: column;
  padding: 14px 10px 12px;
}
.app-side-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px 12px;
}
.app-side-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.04em;
  color: var(--fg-1);
}
.app-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.app-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 8px;
  border-radius: 7px;
  color: var(--fg-2);
  cursor: pointer;
}
.app-nav-item-label {
  font-size: 12px;
  font-weight: 500;
  flex: 1;
}
.app-nav-item.is-active {
  background: var(--color-sage-500);
  color: var(--fg-on-dark);
}
.app-nav-item.is-active .app-nav-item-label { font-weight: 600; }
.app-nav-badge {
  font-size: 9.5px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--color-honey-300);
  color: var(--color-ink-400);
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-side-spacer { flex: 1; }
.app-side-user {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 6px 6px;
  border-top: 1px solid var(--border-1);
  margin-top: 10px;
  cursor: pointer;
}
.app-side-user-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-honey-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  color: var(--color-ink-400);
  flex-shrink: 0;
}
.app-side-user-meta {
  flex: 1;
  min-width: 0;
}
.app-side-user-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--fg-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-side-user-shop {
  font-size: 10px;
  color: var(--fg-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-main {
  flex: 1;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.app-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.app-date { font-size: 11px; color: var(--fg-3); }
.app-day {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--fg-1);
}
.app-newbtn {
  font-size: 11px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--color-cream-200);
  color: var(--fg-2);
  border: 1px solid var(--border-1);
  cursor: pointer;
  font-family: inherit;
}
.app-banner {
  background: linear-gradient(135deg, var(--color-sage-500), var(--color-sage-600));
  color: var(--fg-on-dark);
  border-radius: 10px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
}
.app-banner-eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-honey-300);
}
.app-banner-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-success);
}
.app-banner-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  margin-top: 4px;
  line-height: 1.3;
}
.app-banner-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}
.wa-dot {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.app-banner-sub-text {
  flex: 1;
  min-width: 0;
  font-size: 10.5px;
}
.app-banner-time {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-honey-300);
}
.app-list-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}
.app-list-eyebrow {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.app-list-action {
  font-size: 9.5px;
  color: var(--color-honey-500);
  font-weight: 600;
  cursor: pointer;
}
.app-list {
  background: var(--bg-3);
  border-radius: 10px;
  border: 1px solid var(--border-1);
  overflow: hidden;
}
.app-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-top: 1px solid var(--border-1);
}
.app-row:first-child { border-top: 0; }
.app-row-time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--fg-3);
  min-width: 32px;
}
.app-row-dot { width: 5px; height: 18px; border-radius: 2px; flex-shrink: 0; }
.app-row-main { flex: 1; min-width: 0; }
.app-row-name { font-size: 11.5px; font-weight: 600; color: var(--fg-1); }
.app-row-svc { font-size: 10px; color: var(--fg-3); }
.app-row-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--color-success);
}
.app-row-tag--hi {
  background: var(--color-honey-50);
  color: var(--color-honey-500);
  border: 1px solid var(--color-honey-300);
}
.app-queue {
  background: var(--bg-3);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--color-honey-300);
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-queue-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-honey-50);
  color: var(--color-honey-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 11px;
}
.app-queue-main { flex: 1; min-width: 0; }
.app-queue-title { font-size: 11px; font-weight: 600; color: var(--fg-1); }
.app-queue-sub { font-size: 10px; color: var(--fg-3); }
.app-queue-cta {
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--color-sage-500);
  color: var(--fg-on-dark);
  white-space: nowrap;
}

/* ---- Pillars section ------------------------------------------------- */
.pillars {
  padding: 110px 32px;
  background: var(--color-cream-100);
}
.pillars-inner { max-width: 1240px; margin: 0 auto; }
.pillars-head { max-width: 760px; margin-bottom: 64px; }
.pillars-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.pillars-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 600px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar-card {
  background: var(--bg-3);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--border-1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pillar-visual {
  height: 180px;
  background: var(--color-cream-100);
  border-radius: 14px;
  padding: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-1);
}
.pillar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.15;
}
.pillar-body {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}

/* Pillar 1 — Booking visual */
.bv {
  position: relative;
  height: 100%;
}
.bv-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-3);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bv-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-honey-300), var(--color-terracotta-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--fg-on-dark);
  flex-shrink: 0;
}
.bv-meta { flex: 1; min-width: 0; }
.bv-handle { font-weight: 600; font-size: 12px; }
.bv-url {
  font-size: 10.5px;
  color: var(--color-info);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bv-bottom {
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  background: var(--color-sage-500);
  color: var(--fg-on-dark);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow-md);
}
.bv-eyebrow {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-honey-300);
}
.bv-pet { font-weight: 600; font-size: 14px; margin-top: 4px; }
.bv-caption {
  font-size: 11.5px;
  color: rgba(251, 247, 238, 0.7);
  margin-top: 2px;
}

/* Pillar 2 — No-show visual */
.ns { display: flex; flex-direction: column; gap: 8px; height: 100%; }
.ns-card {
  background: var(--bg-3);
  border: 1px solid var(--border-1);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ns-wa {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ns-meta { flex: 1; }
.ns-eyebrow { font-size: 10px; font-weight: 600; color: var(--fg-3); }
.ns-msg { font-size: 12px; color: var(--fg-1); margin-top: 1px; }
.ns-read { font-size: 9.5px; color: var(--color-info); margin-top: 3px; font-weight: 600; }
.ns-dep {
  background: var(--color-success-bg);
  border: 1px solid var(--color-success);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ns-dep-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--color-success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ns-dep-meta { flex: 1; }
.ns-dep-eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-success);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ns-dep-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--fg-1);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Pillar 3 — Sustain visual */
.sv { display: flex; flex-direction: column; gap: 8px; height: 100%; }
.sv-suggest {
  background: var(--bg-3);
  border: 1px solid var(--border-1);
  border-radius: 10px;
  padding: 10px 12px;
}
.sv-suggest-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-honey-500);
}
.sv-chips {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.sv-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--color-cream-200);
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 4px;
}
.sv-chip.is-on {
  background: var(--color-sage-500);
  color: var(--fg-on-dark);
}
.sv-chip-price { opacity: 0.65; font-weight: 500; }
.sv-accepted {
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 8px;
}
.sv-accepted strong { color: var(--fg-1); }
.sv-review {
  background: var(--color-honey-50);
  border: 1px solid var(--color-honey-300);
  border-radius: 10px;
  padding: 10px 12px;
}
.sv-review-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sv-stars { display: flex; gap: 1px; }
.sv-review-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-honey-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sv-review-quote {
  font-size: 12.5px;
  color: var(--fg-1);
  margin-top: 6px;
  line-height: 1.4;
}
.sv-review-sent {
  font-size: 10.5px;
  color: var(--fg-3);
  margin-top: 4px;
}

/* More features chip strip */
.more {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.more-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  padding-right: 6px;
}
.more-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  background: var(--bg-3);
  border: 1px solid var(--border-1);
}

/* ---- Pricing section ------------------------------------------------- */
.pricing {
  padding: 110px 32px;
  background: var(--color-cream-50);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.pricing-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.pricing-h-accent { color: var(--color-terracotta-500); }
.pricing-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}
.pricing-card {
  background: var(--color-sage-500);
  color: var(--fg-on-dark);
  border-radius: 28px;
  padding: 52px 56px;
  box-shadow: 0 30px 60px -20px rgba(20, 43, 39, 0.4);
  position: relative;
  overflow: hidden;
}
.pricing-card-paw {
  position: absolute;
  right: -60px;
  bottom: -60px;
  opacity: 0.08;
  pointer-events: none;
  width: 300px;
  height: 300px;
}
.pricing-top {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(251, 247, 238, 0.14);
}
.pricing-top-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-honey-300);
}
.price-line {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 12px;
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(84px, 9.5vw, 132px);
  letter-spacing: -0.045em;
  line-height: 0.92;
}
.price-euro {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 44px);
}
.price-per {
  font-size: 17px;
  color: rgba(251, 247, 238, 0.7);
  margin-left: 6px;
}
.price-less {
  font-size: 17px;
  color: var(--color-honey-300);
  margin-top: 6px;
  font-weight: 500;
}
.pricing-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  margin-top: 40px;
}
.col-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-honey-300);
  margin-bottom: 20px;
}
.feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feat {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15.5px;
  color: rgba(251, 247, 238, 0.92);
}
.feat-check { color: var(--color-honey-300); flex-shrink: 0; }
.value-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-wrap: balance;
}
.value-line-accent { color: var(--color-honey-300); }
.math-line {
  font-size: 14.5px;
  color: rgba(251, 247, 238, 0.72);
  margin-top: 12px;
  line-height: 1.55;
}
.math-line strong {
  color: var(--fg-on-dark);
  font-weight: 600;
}
.pricing-card .wl { margin-top: 24px; }

/* ---- Footer ---------------------------------------------------------- */
.footer {
  background: var(--color-ink-400);
  color: var(--fg-on-dark);
  padding: 48px 32px 36px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(251, 247, 238, 0.15);
  padding-top: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: var(--fg-on-dark);
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 13.5px;
  color: rgba(251, 247, 238, 0.65);
  flex-wrap: wrap;
}
.footer-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.footer-copy {
  font-size: 12px;
  color: rgba(251, 247, 238, 0.45);
}

/* ---- Privacy / Terms page ------------------------------------------- */
.privacy {
  padding: 64px 32px 96px;
  background: var(--bg-1);
}
.privacy-inner {
  max-width: 760px;
  margin: 0 auto;
}
.privacy-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-honey-500);
}
.privacy-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 14px 0 12px;
  color: var(--fg-1);
  text-wrap: balance;
}
.privacy-meta {
  font-size: 13.5px;
  color: var(--fg-3);
  margin: 0 0 32px;
}
.privacy-intro {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 40px;
  text-wrap: pretty;
}
.privacy-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 56px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-1);
  color: var(--fg-1);
}
.privacy-h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.privacy-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.015em;
  margin: 36px 0 10px;
  color: var(--fg-1);
}
.privacy-h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0;
  margin: 18px 0 4px;
  color: var(--fg-1);
}
.privacy-p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 14px;
}
.privacy-ul {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 14px;
  padding-left: 22px;
}
.privacy-ul li { margin-bottom: 6px; }
.privacy-p a, .privacy-ul a {
  color: var(--color-sage-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-contact {
  margin-top: 56px;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: 14px;
  font-size: 15px;
  color: var(--fg-2);
}
.privacy-contact a {
  color: var(--color-sage-500);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Responsive ------------------------------------------------------ */
@media (max-width: 960px) {
  .hero-inner,
  .pricing-bottom,
  .pillars-grid { grid-template-columns: 1fr !important; }
  .pillars-grid { gap: 16px; }
  .chrome-window { width: 100%; max-width: 520px; height: auto; aspect-ratio: 1 / 1; }
  .nav-links { display: none; }
  .pricing-card { padding: 32px 24px; }
  .hero { padding: 56px 24px 64px; }
  .pillars, .pricing { padding: 72px 24px; }
}

@media (max-width: 560px) {
  .nav-inner { padding: 12px 18px; gap: 12px; }
  .nav-brand { font-size: 22px; }
  .hero-form-wrap { margin-top: 24px; }
  .footer-inner { justify-content: flex-start; }
}
