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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--header-h) + 0.5rem);
    }

    :root {
      --primary: #ea4f17;
      --primary-hover: #d44614;
      --secondary: #1c1a16;
      --bg: #f7f5f2;
      --bg-elevated: #ffffff;
      --muted: rgba(28, 26, 22, 0.58);
      --muted-light: rgba(28, 26, 22, 0.38);
      --line: rgba(28, 26, 22, 0.12);
      --hero-panel: #efe9df;
      --camel: #8c7355;
      --sans: "DM Sans", system-ui, sans-serif;
      --display: "Cormorant Garamond", Georgia, serif;
      --header-h: 4rem;
      --radius: 10px;
      --shadow-card: 4px 4px 0 var(--secondary);
      --shadow-card-hover: 6px 6px 0 var(--secondary);
      --ok: #5a9a72;
      --ok-bg: rgba(90, 154, 114, 0.14);
      --err: #e07070;
      --err-bg: rgba(224, 112, 112, 0.12);
    }

    body {
      font-family: var(--sans);
      font-size: clamp(15px, 2.2vw, 16px);
      font-weight: 400;
      line-height: 1.65;
      color: var(--secondary);
      background: var(--bg);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .wrap {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 clamp(1.25rem, 4vw, 2rem);
    }

    /* ─── Header ─── */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 300;
      height: var(--header-h);
      display: flex;
      align-items: center;
      transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    }

    .site-header.is-scrolled {
      background: rgba(247, 245, 242, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      width: 100%;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      text-decoration: none;
      color: var(--secondary);
      font-family: var(--display);
      font-weight: 600;
      font-size: 1.15rem;
      letter-spacing: -0.0125em;
      flex-shrink: 0;
    }

    .logo-icon {
      height: 2.125rem;
      width: auto;
      aspect-ratio: 280 / 460;
      flex-shrink: 0;
      display: block;
    }

    .logo-wordmark {
      font-family: var(--display);
      font-weight: 600;
      font-size: 1.15rem;
      letter-spacing: -0.0125em;
      color: inherit;
      line-height: 1;
    }

    .logo-accent {
      color: var(--primary);
    }

    .site-footer .logo {
      color: rgba(247, 245, 242, 0.95);
    }

    .site-footer .logo-accent {
      color: rgba(234, 79, 23, 0.92);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      margin-left: auto;
    }

    .lang {
      display: flex;
      border: 1.5px solid var(--line);
      border-radius: 999px;
      overflow: hidden;
      background: var(--bg-elevated);
    }

    .lang button {
      font-family: var(--sans);
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.38rem 0.72rem;
      border: none;
      background: transparent;
      cursor: pointer;
      color: var(--muted-light);
      transition: background 0.15s, color 0.15s;
    }

    .lang button.is-active {
      background: var(--secondary);
      color: var(--bg);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      font-family: var(--sans);
      font-weight: 600;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.15s, transform 0.12s, box-shadow 0.12s;
    }

    .btn-primary {
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.55rem 1rem;
      background: var(--primary);
      color: #fff;
      border-radius: 999px;
      box-shadow: 0 2px 10px rgba(234, 79, 23, 0.28);
    }

    .btn-primary:hover {
      background: var(--primary-hover);
      transform: translateY(-1px);
    }

    .btn-primary-lg {
      font-size: 0.82rem;
      padding: 0.85rem 1.45rem;
      box-shadow: 0 4px 18px rgba(234, 79, 23, 0.3);
    }

    .header-cta {
      font-size: 0.68rem;
      padding: 0.5rem 0.85rem;
    }

    @media (min-width: 420px) {
      .header-cta {
        font-size: 0.72rem;
        padding: 0.55rem 1rem;
      }
    }

    /* ─── Hero ─── */
    .hero {
      padding-top: calc(var(--header-h) + clamp(1.25rem, 3vw, 1.75rem));
      padding-bottom: clamp(1.5rem, 3vw, 2rem);
      border-bottom: 1px solid var(--line);
    }

    .hero-shell {
      display: grid;
      grid-template-columns: 1fr;
      min-height: clamp(26rem, 68svh, 36rem);
      border: 1px solid var(--line);
      border-radius: calc(var(--radius) + 4px);
      overflow: hidden;
      background: var(--bg-elevated);
    }

    @media (min-width: 900px) {
      .hero-shell {
        grid-template-columns: 1fr 1fr;
      }
    }

    .hero-copy {
      display: flex;
      align-items: center;
      background: var(--bg);
      padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 1.75rem);
    }

    @media (min-width: 900px) {
      .hero-copy {
        padding: clamp(2rem, 3.5vw, 2.75rem) clamp(1.5rem, 2.5vw, 2rem);
      }
    }

    .hero-copy-inner {
      width: 100%;
      max-width: 22.5rem;
    }

    .eyebrow {
      font-size: 0.66rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--camel);
      margin-bottom: clamp(1rem, 2vw, 1.35rem);
    }

    .hero h1 {
      font-family: var(--display);
      font-weight: 300;
      font-size: clamp(2.35rem, 4.5vw, 3.55rem);
      line-height: 1.06;
      letter-spacing: -0.035em;
      margin-bottom: clamp(1rem, 2vw, 1.35rem);
    }

    .hero h1 em {
      font-style: italic;
      color: var(--primary);
      font-weight: 300;
    }

    .lead {
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--muted);
      max-width: 32ch;
      margin-bottom: clamp(1.35rem, 2.5vw, 1.85rem);
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.85rem;
      margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem 1.1rem;
      font-size: 0.69rem;
      color: var(--muted);
    }

    .hero-trust span::before {
      content: "✓ ";
      color: var(--camel);
      font-size: 0.58rem;
    }

    .hero-cities {
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--muted-light);
      letter-spacing: 0.02em;
    }

    /* ─── Hero preview panel ─── */
    .hero-stage {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--hero-panel);
      padding: clamp(1.5rem, 3vw, 2rem);
      overflow: hidden;
    }

    .hero-stage::before {
      content: "";
      position: absolute;
      width: min(420px, 90vw);
      height: min(420px, 90vw);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(234, 79, 23, 0.09) 0%, transparent 68%);
      top: -12%;
      right: -18%;
      pointer-events: none;
    }

    .preview-app {
      position: relative;
      z-index: 1;
      width: min(100%, 21.5rem);
      background: var(--bg-elevated);
      border: 1px solid rgba(28, 26, 22, 0.1);
      border-radius: 14px;
      box-shadow:
        0 2px 4px rgba(28, 26, 22, 0.04),
        0 16px 48px rgba(28, 26, 22, 0.1);
      overflow: hidden;
    }

    .preview-chrome {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      padding: 0.55rem 0.85rem;
      background: var(--secondary);
      color: rgba(247, 245, 242, 0.72);
      font-size: 0.62rem;
      letter-spacing: 0.04em;
    }

    .preview-chrome strong {
      font-family: var(--display);
      font-weight: 600;
      font-size: 0.68rem;
      color: var(--bg);
      letter-spacing: 0;
      flex-shrink: 0;
    }

    .preview-chrome span {
      flex: 1;
      min-width: 0;
      text-align: right;
    }

    .preview-body {
      padding: 1rem 1rem 1.1rem;
    }

    .preview-label {
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted-light);
      margin-bottom: 0.55rem;
    }

    .preview-search {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--secondary);
      padding: 0.55rem 0.75rem;
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: 999px;
      margin-bottom: 0.85rem;
    }

    .preview-card {
      border: 1px solid var(--line);
      border-radius: 10px;
      overflow: hidden;
      background: var(--bg-elevated);
    }

    .preview-card-thumb {
      height: 7.5rem;
      overflow: hidden;
    }

    .preview-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .preview-card-body {
      padding: 0.85rem 0.9rem 0.95rem;
    }

    .preview-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.5rem;
      margin-bottom: 0.55rem;
    }

    .preview-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem;
    }

    .preview-tag {
      font-size: 0.56rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.18rem 0.45rem;
      background: var(--bg);
      color: var(--muted);
      border-radius: 4px;
    }

    .preview-status {
      font-size: 0.56rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #1a7a3a;
      display: flex;
      align-items: center;
      gap: 0.28rem;
      white-space: nowrap;
    }

    .preview-status::before {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #1a7a3a;
    }

    .preview-name {
      font-family: var(--display);
      font-weight: 600;
      font-size: 1.05rem;
      letter-spacing: -0.02em;
      margin-bottom: 0.12rem;
    }

    .preview-location {
      font-size: 0.76rem;
      color: var(--muted);
      margin-bottom: 0.65rem;
    }

    .preview-message {
      font-size: 0.8rem;
      font-weight: 300;
      font-style: italic;
      color: var(--muted);
      line-height: 1.55;
      padding: 0.55rem 0.65rem;
      background: var(--bg);
      border-radius: 6px;
      margin-bottom: 0.75rem;
    }

    .preview-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.45rem;
    }

    .preview-btn {
      font-family: var(--sans);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-align: center;
      padding: 0.52rem 0.4rem;
      border-radius: 6px;
      border: 1px solid var(--line);
      color: var(--secondary);
      background: transparent;
    }

    .preview-btn.is-primary {
      background: var(--secondary);
      color: var(--bg);
      border-color: var(--secondary);
    }

    /* ─── Problem ─── */
    .problem {
      background: var(--secondary);
      color: var(--bg);
      padding: clamp(4rem, 9vw, 6.5rem) 0;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(2.5rem, 5vw, 4rem);
      align-items: start;
    }

    @media (min-width: 900px) {
      .problem-grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
        gap: clamp(2.5rem, 5vw, 4rem);
        align-items: center;
      }
    }

    .problem-statement {
      font-family: var(--display);
      font-weight: 300;
      font-size: clamp(1.75rem, 2.9vw, 2.35rem);
      line-height: 1.24;
      letter-spacing: -0.025em;
      color: rgba(247, 245, 242, 0.88);
    }

    .problem-statement .stmt-block + .stmt-block {
      margin-top: 1.2em;
    }

    .problem-statement em {
      font-style: italic;
      color: rgba(234, 79, 23, 0.88);
      font-weight: 300;
    }

    .problem-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      list-style: none;
      margin: 0;
      padding: 0;
      border: 1px solid rgba(247, 245, 242, 0.14);
      border-radius: calc(var(--radius) + 2px);
      overflow: hidden;
      background: rgba(255, 255, 255, 0.05);
    }

    .problem-item {
      padding: clamp(1.5rem, 2.8vw, 2rem) clamp(1.35rem, 2.5vw, 1.85rem);
      border-bottom: 1px solid rgba(247, 245, 242, 0.1);
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1.1rem 1.25rem;
      align-items: start;
    }

    .problem-item:last-child {
      border-bottom: none;
    }

    .problem-index {
      font-family: var(--display);
      font-size: clamp(1.65rem, 2.5vw, 2rem);
      font-weight: 300;
      line-height: 1;
      color: rgba(234, 79, 23, 0.85);
      padding-top: 0.15rem;
      min-width: 2rem;
    }

    .problem-item h3 {
      font-family: var(--sans);
      font-size: clamp(1.02rem, 1.75vw, 1.15rem);
      font-weight: 600;
      letter-spacing: -0.015em;
      line-height: 1.4;
      color: rgba(247, 245, 242, 0.98);
      margin-bottom: 0.55rem;
    }

    .problem-item p {
      font-size: clamp(0.94rem, 1.55vw, 1rem);
      font-weight: 400;
      line-height: 1.68;
      color: rgba(247, 245, 242, 0.72);
      max-width: none;
    }

    /* ─── Solution (#how) ─── */
    .solution {
      padding: clamp(3.5rem, 8vw, 5.5rem) 0;
      background: var(--bg);
      border-bottom: 1px solid var(--line);
      scroll-margin-top: calc(var(--header-h) + 1rem);
    }

    .solution-block .section-intro {
      margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
    }

    .solution-block .eyebrow {
      margin-bottom: 0.85rem;
    }

    .solution-block + .solution-block {
      margin-top: clamp(2.5rem, 5vw, 3.5rem);
      padding-top: clamp(2.5rem, 5vw, 3.5rem);
      border-top: 1px solid var(--line);
    }

    .section-head-compact {
      max-width: 32rem;
      margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }

    .section-title {
      font-family: var(--display);
      font-weight: 300;
      font-size: clamp(1.75rem, 3vw, 2.35rem);
      line-height: 1.12;
      letter-spacing: -0.03em;
      margin-bottom: 0.5rem;
    }

    .section-title em {
      font-style: italic;
      color: var(--primary);
      font-weight: 300;
    }

    .section-intro {
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.65;
      max-width: 42ch;
    }

    /* Feature visuals — 4-up image cards */
    .visual-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(0.65rem, 1.5vw, 0.85rem);
    }

    @media (min-width: 900px) {
      .visual-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.85rem;
      }
    }

    .visual-card {
      border: 1px solid var(--line);
      border-radius: calc(var(--radius) + 2px);
      overflow: hidden;
      background: var(--bg-elevated);
    }

    .visual-card-media {
      aspect-ratio: 3 / 2;
      overflow: hidden;
      background: var(--hero-panel);
    }

    .visual-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
    }

    .visual-card:hover .visual-card-media img {
      transform: scale(1.04);
    }

    .visual-card-body {
      padding: 0.7rem 0.85rem 0.85rem;
    }

    .visual-card-body h3 {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1.35;
      color: var(--secondary);
      margin: 0;
    }

    .visual-card-body p {
      display: none;
    }

    /* Journey — device mockups + flow panels + steps */
    .journey-wrap {
      border: 1px solid var(--line);
      border-radius: calc(var(--radius) + 4px);
      overflow: hidden;
      background: var(--bg-elevated);
    }

    .journey-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      padding: 0.75rem clamp(1rem, 2.5vw, 1.25rem);
      background: var(--bg);
      border-bottom: 1px solid var(--line);
    }

    .journey-tab {
      font-family: var(--sans);
      font-size: 0.78rem;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 999px;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
      white-space: nowrap;
    }

    .journey-tab.is-active {
      background: var(--secondary);
      color: var(--bg);
    }

    .journey-panel {
      display: none;
    }

    .journey-panel.is-active {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      padding: clamp(1.15rem, 2.5vw, 1.75rem);
      background: var(--hero-panel);
    }

    @media (min-width: 640px) and (max-width: 959px) {
      .journey-panel.is-active {
        grid-template-columns: auto 1fr;
        gap: 1.15rem;
      }

      .journey-steps-panel {
        grid-column: 1 / -1;
      }

      .flow-panels {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
        align-items: start;
      }

      .flow-panel {
        padding: 0.65rem 0.7rem;
      }
    }

    @media (min-width: 960px) {
      .journey-panel.is-active {
        grid-template-columns: auto minmax(180px, 210px) minmax(0, 1fr);
        align-items: start;
        gap: 1.35rem;
      }
    }

    .flow-device {
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }

    /* Shared phone frame — same size for shopper & boutique */
    .flow-phone {
      width: 220px;
      height: 410px;
      background: var(--secondary);
      border-radius: 28px;
      padding: 8px;
      display: flex;
      flex-direction: column;
      box-shadow:
        0 20px 48px rgba(28, 26, 22, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .flow-phone-island {
      width: 52px;
      height: 6px;
      background: #0a0908;
      border-radius: 4px;
      margin: 0 auto 6px;
      flex-shrink: 0;
    }

    .flow-phone-screen {
      flex: 1;
      min-height: 0;
      background: #f8f5ee;
      border-radius: 22px;
      overflow: hidden;
      padding: 10px 9px;
      display: flex;
      flex-direction: column;
    }

    .flow-phone-screen.is-dash {
      padding: 0;
    }

    .flow-phone-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 5px;
      flex-shrink: 0;
    }

    .flow-phone-step {
      font-size: 0.55rem;
      color: var(--camel);
      font-weight: 500;
    }

    .flow-phone-meta {
      font-size: 0.55rem;
      color: rgba(28, 26, 22, 0.32);
    }

    .flow-phone-title {
      font-family: var(--display);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--secondary);
      line-height: 1.1;
      margin-bottom: 0.4rem;
      flex-shrink: 0;
    }

    .flow-search {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      background: var(--bg-elevated);
      border: 0.5px solid rgba(28, 26, 22, 0.1);
      border-radius: 7px;
      padding: 0.32rem 0.5rem;
      margin-bottom: 0.4rem;
      flex-shrink: 0;
    }

    .flow-search-placeholder {
      font-size: 0.55rem;
      color: rgba(28, 26, 22, 0.32);
    }

    .flow-dropdowns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.3rem;
      margin-bottom: 0.4rem;
      flex-shrink: 0;
    }

    .flow-dropdown {
      background: var(--bg-elevated);
      border: 0.5px solid rgba(28, 26, 22, 0.1);
      border-radius: 6px;
      padding: 0.25rem 0.35rem;
      min-width: 0;
    }

    .flow-dropdown-label {
      font-size: 0.45rem;
      color: var(--muted);
      margin-bottom: 1px;
    }

    .flow-dropdown-val {
      font-size: 0.55rem;
      font-weight: 500;
      color: var(--secondary);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.15rem;
      flex-wrap: wrap;
    }

    .flow-dropdown-arrow {
      font-size: 0.5rem;
      color: var(--camel);
    }

    .flow-tag {
      font-size: 0.42rem;
      font-weight: 500;
      padding: 0.08rem 0.3rem;
      border-radius: 999px;
      background: var(--hero-panel);
      color: var(--camel);
      border: 0.5px solid #d4b898;
    }

    .flow-phone-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.3rem;
      flex: 1;
      min-height: 0;
      align-content: start;
    }

    .flow-boutique-card {
      border-radius: 7px;
      overflow: hidden;
      background: var(--bg-elevated);
      border: 0.5px solid rgba(28, 26, 22, 0.07);
      min-width: 0;
    }

    .flow-boutique-card-img {
      height: 48px;
      overflow: hidden;
      background: var(--hero-panel);
    }

    .flow-boutique-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .flow-boutique-card-body {
      padding: 0.28rem 0.32rem 0.35rem;
    }

    .flow-boutique-card-name {
      font-family: var(--display);
      font-size: 0.6rem;
      font-weight: 600;
      color: var(--secondary);
      line-height: 1.15;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .flow-boutique-card-city {
      font-size: 0.45rem;
      color: var(--muted);
      margin-top: 1px;
      line-height: 1.25;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Dashboard content inside shared phone frame */
    .flow-dash-topbar {
      background: var(--secondary);
      padding: 0.35rem 0.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-shrink: 0;
      gap: 0.35rem;
    }

    .flow-dash-url {
      font-size: 0.45rem;
      color: rgba(255, 255, 255, 0.4);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      min-width: 0;
    }

    .flow-dash-dot {
      width: 5px;
      height: 5px;
      background: var(--primary);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .flow-dash-body {
      padding: 0.55rem 0.55rem 0.6rem;
      flex: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .flow-dash-title {
      font-family: var(--display);
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 0.45rem;
      text-align: center;
      flex-shrink: 0;
    }

    .flow-dash-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.25rem;
      margin-bottom: 0.45rem;
      flex-shrink: 0;
    }

    .flow-dash-stat {
      background: var(--bg-elevated);
      border-radius: 6px;
      padding: 0.35rem 0.2rem;
      text-align: center;
      border: 0.5px solid rgba(28, 26, 22, 0.07);
      min-width: 0;
    }

    .flow-dash-stat-num {
      font-family: var(--display);
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--primary);
      line-height: 1;
    }

    .flow-dash-stat-label {
      font-size: 0.42rem;
      color: var(--muted);
      margin-top: 2px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .flow-dash-section {
      font-size: 0.48rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--camel);
      margin-bottom: 0.3rem;
      flex-shrink: 0;
    }

    .flow-dash-requests {
      display: flex;
      flex-direction: column;
      gap: 0.28rem;
      flex: 1;
      min-height: 0;
    }

    .flow-appt {
      background: var(--bg-elevated);
      border-radius: 6px;
      padding: 0.35rem 0.4rem;
      border: 0.5px solid rgba(28, 26, 22, 0.07);
      border-left: 2.5px solid var(--primary);
      min-width: 0;
    }

    .flow-appt.is-dim {
      border-left-color: #d4b898;
      opacity: 0.65;
    }

    .flow-appt-name {
      font-size: 0.5rem;
      font-weight: 500;
      color: var(--secondary);
      margin-bottom: 1px;
      line-height: 1.25;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .flow-appt-occasion {
      font-size: 0.45rem;
      color: var(--camel);
      margin-bottom: 0.25rem;
      line-height: 1.25;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .flow-appt-btns {
      display: flex;
      gap: 0.2rem;
    }

    .flow-btn-accept,
    .flow-btn-shift {
      flex: 1;
      padding: 0.18rem 0.15rem;
      text-align: center;
      border-radius: 4px;
      font-size: 0.42rem;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      min-width: 0;
    }

    .flow-btn-accept {
      background: var(--primary);
      color: #fff;
    }

    .flow-btn-shift {
      background: var(--bg-elevated);
      border: 0.5px solid rgba(28, 26, 22, 0.15);
      color: var(--secondary);
    }

    /* Middle flow panels */
    .flow-panels {
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }

    .flow-panel {
      background: var(--bg-elevated);
      border-radius: 12px;
      padding: 0.75rem 0.85rem;
      border: 0.5px solid rgba(28, 26, 22, 0.08);
      box-shadow: 0 2px 10px rgba(28, 26, 22, 0.05);
    }

    .flow-panel-step {
      font-size: 0.55rem;
      font-weight: 500;
      color: var(--camel);
      letter-spacing: 0.04em;
      margin-bottom: 0.3rem;
    }

    .flow-panel-title {
      font-family: var(--display);
      font-size: 1rem;
      font-weight: 400;
      color: var(--secondary);
      line-height: 1.15;
      margin-bottom: 0.45rem;
    }

    .flow-panel-search {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      background: #f8f5ee;
      border: 0.5px solid rgba(28, 26, 22, 0.1);
      border-radius: 6px;
      padding: 0.3rem 0.45rem;
      margin-bottom: 0.3rem;
    }

    .flow-panel-search-text {
      font-size: 0.58rem;
      color: rgba(28, 26, 22, 0.32);
      flex: 1;
    }

    .flow-panel-location {
      font-size: 0.58rem;
      color: var(--muted);
    }

    .flow-panel-name {
      font-family: var(--display);
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--secondary);
      margin-bottom: 0.4rem;
    }

    .flow-panel-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.25rem;
      margin-bottom: 0.5rem;
    }

    .flow-panel-tag {
      font-size: 0.5rem;
      font-weight: 500;
      padding: 0.12rem 0.45rem;
      border-radius: 999px;
      background: var(--hero-panel);
      color: var(--camel);
      border: 0.5px solid #d4b898;
    }

    .flow-panel-tag.is-terra {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    .flow-panel-btn {
      width: 100%;
      padding: 0.4rem;
      text-align: center;
      border-radius: 7px;
      font-size: 0.62rem;
      font-weight: 500;
      margin-bottom: 0.28rem;
    }

    .flow-panel-btn.is-outline {
      border: 1px solid var(--secondary);
      color: var(--secondary);
      background: transparent;
    }

    .flow-panel-btn.is-solid {
      background: var(--primary);
      color: #fff;
      border: none;
    }

    .flow-appt-title {
      font-family: var(--display);
      font-size: 0.92rem;
      font-weight: 400;
      color: var(--secondary);
      margin-bottom: 0.28rem;
      line-height: 1.2;
    }

    .flow-appt-detail {
      font-size: 0.58rem;
      color: var(--secondary);
      font-weight: 500;
      margin-bottom: 1px;
    }

    .flow-appt-loc {
      font-size: 0.58rem;
      color: var(--primary);
      margin-bottom: 0.4rem;
    }

    .flow-note-box {
      background: #f8f5ee;
      border-radius: 6px;
      padding: 0.4rem 0.45rem;
      border: 0.5px solid rgba(28, 26, 22, 0.08);
    }

    .flow-note-label {
      font-size: 0.52rem;
      color: var(--secondary);
      font-weight: 500;
      margin-bottom: 0.15rem;
    }

    .flow-note-text {
      font-size: 0.52rem;
      color: var(--muted);
      line-height: 1.4;
    }

    .flow-profile-label {
      font-size: 0.5rem;
      color: var(--muted);
      margin-bottom: 2px;
    }

    .flow-profile-input {
      width: 100%;
      background: #f8f5ee;
      border: 0.5px solid rgba(28, 26, 22, 0.1);
      border-radius: 5px;
      padding: 0.3rem 0.4rem;
      font-size: 0.58rem;
      color: var(--secondary);
      margin-bottom: 0.4rem;
    }

    .flow-avail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.25rem;
      margin-bottom: 0.35rem;
    }

    .flow-avail-block {
      background: #f8f5ee;
      border-radius: 5px;
      padding: 0.3rem 0.4rem;
      border: 0.5px solid rgba(28, 26, 22, 0.08);
    }

    .flow-avail-day {
      font-size: 0.52rem;
      font-weight: 500;
      color: var(--secondary);
    }

    .flow-avail-time {
      font-size: 0.48rem;
      color: var(--camel);
      margin-top: 1px;
    }

    .flow-slots {
      display: flex;
      gap: 0.25rem;
      flex-wrap: wrap;
      margin-bottom: 0.45rem;
    }

    .flow-slot {
      padding: 0.18rem 0.4rem;
      border-radius: 4px;
      font-size: 0.48rem;
      font-weight: 500;
    }

    .flow-slot.is-on {
      background: var(--primary);
      color: #fff;
    }

    .flow-slot.is-off {
      background: var(--hero-panel);
      color: var(--muted);
      border: 0.5px solid #d4b898;
    }

    .flow-btn-save {
      width: 100%;
      padding: 0.35rem;
      text-align: center;
      background: var(--secondary);
      border-radius: 6px;
      font-size: 0.58rem;
      font-weight: 500;
      color: #fff;
    }

    .flow-reach-text {
      font-size: 0.58rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .journey-steps-panel {
      background: transparent;
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .journey-steps-label {
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--camel);
      margin-bottom: 0.65rem;
    }

    .journey-steps {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }

    .journey-step {
      display: grid;
      grid-template-columns: 2.15rem 1fr;
      gap: 0.75rem 0.85rem;
      align-items: start;
      padding: 0.85rem 0.95rem;
      background: var(--bg-elevated);
      border: 0.5px solid rgba(28, 26, 22, 0.08);
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(28, 26, 22, 0.05);
      transition: border-color 0.15s, box-shadow 0.15s;
    }

    .journey-step:hover {
      border-color: rgba(234, 79, 23, 0.22);
      box-shadow: 0 4px 18px rgba(28, 26, 22, 0.06);
    }

    .step-badge {
      width: 2.15rem;
      height: 2.15rem;
      border-radius: 8px;
      background: var(--primary);
      color: #fff;
      font-family: var(--sans);
      font-size: 0.85rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      line-height: 1;
    }

    .journey-step h3 {
      font-size: clamp(0.88rem, 1.4vw, 0.95rem);
      font-weight: 500;
      letter-spacing: -0.01em;
      line-height: 1.3;
      margin-bottom: 0.22rem;
      color: var(--secondary);
    }

    .journey-step p {
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.45;
      margin: 0;
    }

    /* ─── Placeholder sections (anchors for nav) ─── */
    .section-anchor {
      scroll-margin-top: calc(var(--header-h) + 1rem);
    }

    #join:target {
      outline: none;
    }

    /* ─── Trust ─── */
    .trust {
      padding: clamp(2.5rem, 6vw, 4rem) 0;
      background: var(--bg);
      border-top: 1px solid var(--line);
    }

    .trust-shell {
      border: 1px solid var(--line);
      border-radius: calc(var(--radius) + 4px);
      background: var(--hero-panel);
      padding: clamp(1.75rem, 3.5vw, 2.75rem);
      width: 100%;
    }

    @media (min-width: 768px) {
      .trust-shell {
        padding: clamp(2rem, 3.5vw, 3rem) clamp(2rem, 4vw, 3.25rem);
      }

      .trust-quote p {
        max-width: none;
        font-size: clamp(1.35rem, 2.4vw, 1.85rem);
      }
    }

    .trust-quote {
      margin: 0;
      padding: 0;
      border: none;
    }

    .trust-quote p {
      font-family: var(--display);
      font-size: clamp(1.25rem, 2.2vw, 1.65rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.48;
      letter-spacing: -0.02em;
      color: rgba(28, 26, 22, 0.9);
      margin-bottom: 1rem;
    }

    .trust-byline {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .trust-author {
      font-style: normal;
      font-family: var(--sans);
      font-size: 0.84rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--secondary);
    }

    .trust-location {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--camel);
    }

    .trust-aside {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    @media (min-width: 768px) {
      .trust-aside {
        padding-top: 0.25rem;
        border-left: 1px solid var(--line);
        padding-left: clamp(1.25rem, 2.5vw, 2rem);
      }
    }

    .trust-badge {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      padding: 0.85rem 0.95rem;
      background: var(--bg-elevated);
      border: 1px solid var(--line);
      border-radius: calc(var(--radius) + 2px);
      font-size: 0.82rem;
      font-weight: 500;
      line-height: 1.4;
      color: var(--secondary);
    }

    .trust-badge-icon {
      flex-shrink: 0;
      width: 1.35rem;
      height: 1.35rem;
      border-radius: 6px;
      background: rgba(234, 79, 23, 0.1);
      color: var(--primary);
      font-family: var(--display);
      font-size: 0.85rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    .trust-badge strong {
      display: block;
      font-weight: 600;
      font-size: 0.82rem;
      color: var(--secondary);
    }

    .trust-badge-desc {
      display: block;
      font-weight: 400;
      color: var(--muted);
      font-size: 0.76rem;
      margin-top: 0.15rem;
      line-height: 1.4;
    }

    /* ─── Waitlist (#join) ─── */
    .join {
      background: var(--secondary);
      color: var(--bg);
      padding: clamp(4rem, 9vw, 6.5rem) 0;
      scroll-margin-top: calc(var(--header-h) + 1rem);
    }

    .join-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(2rem, 4vw, 2.75rem);
      align-items: start;
    }

    @media (min-width: 900px) {
      .join-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: clamp(2.5rem, 5vw, 4rem);
        align-items: center;
      }
    }

    .join-copy .eyebrow {
      color: rgba(234, 79, 23, 0.92);
      margin-bottom: 0.85rem;
    }

    .join-title {
      font-family: var(--display);
      font-weight: 300;
      font-size: clamp(2rem, 3.8vw, 2.85rem);
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 0.75rem;
      color: rgba(247, 245, 242, 0.98);
    }

    .join-title em {
      font-style: italic;
      color: rgba(234, 79, 23, 0.9);
      font-weight: 300;
    }

    .join-copy .join-title {
      margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }

    .join-perks {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .join-perk {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      font-size: 0.84rem;
      font-weight: 400;
      line-height: 1.45;
      color: rgba(247, 245, 242, 0.72);
    }

    .join-perk-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(234, 79, 23, 0.85);
      flex-shrink: 0;
      margin-top: 0.45rem;
    }

    .join-card {
      background: var(--bg);
      border: 1px solid rgba(247, 245, 242, 0.1);
      border-radius: calc(var(--radius) + 4px);
      padding: clamp(1.35rem, 2.5vw, 1.85rem);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
    }

    .join-form-label {
      display: block;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--camel);
      margin-bottom: 0.65rem;
    }

    .role-fieldset {
      border: none;
      margin: 0 0 1.15rem;
      padding: 0;
    }

    .role-fieldset legend.join-form-label {
      display: block;
      margin-bottom: 0.65rem;
    }

    .role-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.65rem;
    }

    @media (max-width: 420px) {
      .role-row {
        grid-template-columns: 1fr;
      }
    }

    .role-btn {
      flex: 1 1 0;
      min-width: 0;
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      padding: 0.85rem 0.9rem;
      border: 1px solid var(--line);
      border-radius: calc(var(--radius) + 2px);
      background: var(--bg-elevated);
      cursor: pointer;
      text-align: left;
      transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
    }

    .role-btn:hover {
      border-color: rgba(234, 79, 23, 0.28);
    }

    .role-btn.is-active {
      border-color: rgba(234, 79, 23, 0.5);
      background: rgba(234, 79, 23, 0.04);
      box-shadow: 0 0 0 3px rgba(234, 79, 23, 0.08);
    }

    .role-btn input[type="radio"] {
      width: 1.05rem;
      height: 1.05rem;
      margin: 0.12rem 0 0;
      accent-color: var(--primary);
      flex-shrink: 0;
      cursor: pointer;
    }

    .role-text strong {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 0.18rem;
      line-height: 1.3;
    }

    .role-text small {
      display: block;
      font-size: 0.72rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.4;
    }

    .join-fields {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      margin-bottom: 0.85rem;
    }

    .join-input,
    .join-select,
    .join-textarea {
      font-family: var(--sans);
      font-size: 0.92rem;
      font-weight: 400;
      width: 100%;
      padding: 0.82rem 0.95rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--bg-elevated);
      color: var(--secondary);
      outline: none;
      transition: border-color 0.15s, box-shadow 0.15s;
    }

    .join-select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238c7355' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.95rem center;
      padding-right: 2.25rem;
    }

    .join-select:invalid,
    .join-select option[value=""] {
      color: var(--muted-light);
    }

    .join-select option:not([value=""]) {
      color: var(--secondary);
    }

    .join-input::placeholder,
    .join-textarea::placeholder {
      color: var(--muted-light);
    }

    .join-input:focus,
    .join-select:focus,
    .join-textarea:focus {
      border-color: rgba(234, 79, 23, 0.45);
      box-shadow: 0 0 0 3px rgba(234, 79, 23, 0.1);
    }

    .join-textarea {
      min-height: 4.25rem;
      resize: vertical;
      margin-bottom: 0;
    }

    .join-submit {
      font-family: var(--sans);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 0.9rem 1.35rem;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: background 0.15s;
      width: 100%;
    }

    .join-submit:hover {
      background: var(--primary-hover);
    }

    .join-submit:disabled {
      opacity: 0.6;
      cursor: progress;
    }

    .join-submit:disabled:hover {
      background: var(--primary);
    }

    .join-note {
      font-size: 0.72rem;
      font-weight: 300;
      color: var(--muted);
      margin-top: 0.9rem;
      line-height: 1.5;
    }

    .join-note a {
      color: var(--camel);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .join-note a:hover {
      color: var(--primary);
    }

    .join-msg {
      display: none;
      margin-top: 0.85rem;
      padding: 0.75rem 0.95rem;
      font-size: 0.85rem;
      border-radius: var(--radius);
      border: 1px solid;
    }

    .join-msg.is-ok {
      display: block;
      background: var(--ok-bg);
      border-color: rgba(90, 154, 114, 0.35);
      color: #2d6a4f;
    }

    .join-msg.is-bad {
      display: block;
      background: var(--err-bg);
      border-color: rgba(224, 112, 112, 0.35);
      color: #a04040;
    }

    /* ─── Footer ─── */
    .site-footer {
      background: var(--secondary);
      color: rgba(247, 245, 242, 0.55);
      padding: 1.75rem 0 2rem;
      font-size: 0.78rem;
      border-top: 1px solid rgba(247, 245, 242, 0.08);
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem 1.5rem;
    }

    .footer-inner .logo {
      color: rgba(247, 245, 242, 0.95);
    }

    .footer-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.65rem 1.15rem;
      font-size: 0.72rem;
      color: rgba(247, 245, 242, 0.42);
    }

    .footer-meta a {
      color: rgba(247, 245, 242, 0.55);
      text-decoration: none;
      transition: color 0.15s;
    }

    .footer-meta a:hover {
      color: rgba(234, 79, 23, 0.85);
    }

    /* ─── Mobile ─── */
    @supports (padding: max(0px)) {
      .site-header {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
      }

      .site-footer {
        padding-bottom: max(2rem, calc(1rem + env(safe-area-inset-bottom)));
      }

      .wrap {
        padding-left: max(clamp(1.25rem, 4vw, 2rem), env(safe-area-inset-left));
        padding-right: max(clamp(1.25rem, 4vw, 2rem), env(safe-area-inset-right));
      }
    }

    @media (max-width: 599px) {
      :root {
        --header-h: 3.25rem;
      }

      .wrap {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .logo-icon {
        height: 1.875rem;
        width: auto;
      }

      .logo-wordmark {
        font-size: 1rem;
      }

      .header-actions {
        gap: 0.4rem;
      }

      .lang {
        border-width: 1px;
      }

      .lang button {
        font-size: 0.56rem;
        letter-spacing: 0.06em;
        padding: 0.3rem 0.55rem;
        min-height: 0;
        min-width: 0;
      }

      .header-cta {
        font-size: 0.58rem;
        letter-spacing: 0.05em;
        padding: 0.34rem 0.65rem;
        min-height: 0;
        white-space: nowrap;
        box-shadow: 0 1px 6px rgba(234, 79, 23, 0.22);
      }

      .hero {
        padding-top: calc(var(--header-h) + 0.85rem);
        padding-bottom: 1.25rem;
      }

      .hero-shell {
        min-height: auto;
        border-radius: var(--radius);
      }

      .hero-copy {
        padding: 1.5rem 1.15rem 1.35rem;
      }

      .hero-copy-inner {
        max-width: none;
      }

      .hero h1 {
        font-size: clamp(1.95rem, 8.8vw, 2.55rem);
      }

      .lead {
        max-width: none;
        font-size: 0.9rem;
      }

      .hero-actions {
        width: 100%;
      }

      .hero-actions .btn-primary-lg {
        width: 100%;
      }

      .hero-stage {
        padding: 1rem 1rem 1.25rem;
      }

      .preview-app {
        width: 100%;
        max-width: 100%;
      }

      .preview-chrome {
        font-size: 0.58rem;
        gap: 0.35rem;
      }

      .preview-chrome span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .problem {
        padding: 3rem 0;
      }

      .problem-grid {
        gap: 2rem;
      }

      .problem-statement {
        font-size: clamp(1.55rem, 6.5vw, 1.85rem);
      }

      .problem-item {
        padding: 1.2rem 1rem;
        gap: 0.75rem 0.9rem;
      }

      .solution {
        padding: 3rem 0;
      }

      .visual-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
      }

      .visual-card-media {
        aspect-ratio: 16 / 10;
      }

      .visual-card-body {
        padding: 0.85rem 1rem 1rem;
      }

      .visual-card-body h3 {
        font-size: 0.9rem;
      }

      .journey-tabs {
        padding: 0.65rem 0.85rem;
        gap: 0.45rem;
      }

      .journey-tab {
        flex: 1 1 calc(50% - 0.25rem);
        text-align: center;
        font-size: 0.74rem;
        padding: 0.58rem 0.5rem;
        min-height: 2.75rem;
      }

      .journey-panel.is-active {
        padding: 1rem 0.85rem 1.15rem;
        gap: 1rem;
      }

      .flow-phone {
        width: 210px;
        height: 390px;
      }

      .journey-step {
        padding: 0.8rem 0.85rem;
        grid-template-columns: 2rem 1fr;
        gap: 0.6rem 0.75rem;
      }

      .step-badge {
        width: 2rem;
        height: 2rem;
        font-size: 0.78rem;
      }

      .trust {
        padding: 2.5rem 0;
      }

      .trust-shell {
        padding: 1.35rem 1.1rem;
      }

      .trust-quote p {
        font-size: clamp(1.15rem, 5vw, 1.35rem);
      }

      .join {
        padding: 3rem 0;
      }

      .join-grid {
        gap: 1.75rem;
      }

      .join-title {
        font-size: clamp(1.75rem, 7.5vw, 2.15rem);
      }

      .join-card {
        padding: 1.15rem;
      }

      .join-input,
      .join-select,
      .join-textarea {
        font-size: 16px;
        padding: 0.75rem 0.9rem;
      }

      .join-submit {
        min-height: 2.75rem;
        font-size: 0.82rem;
      }

      .role-btn {
        min-height: 3.25rem;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
      }

      .footer-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
      }
    }

    @media (max-width: 380px) {
      .logo-wordmark {
        font-size: 0.92rem;
      }

      .lang button {
        font-size: 0.52rem;
        padding: 0.26rem 0.48rem;
      }

      .header-cta {
        font-size: 0.52rem;
        padding: 0.28rem 0.55rem;
        letter-spacing: 0.04em;
      }
    }

    @media (hover: none) {
      .visual-card:hover .visual-card-media img {
        transform: none;
      }

      .btn-primary:hover {
        transform: none;
      }
    }

    /* ─── Legal pages ─── */
    .legal-main {
      padding-top: calc(var(--header-h) + 2.5rem);
      padding-bottom: 4rem;
    }

    .legal-back {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.45rem 0.95rem 0.45rem 0.75rem;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--bg-elevated);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--muted);
      text-decoration: none;
      margin-bottom: 2.25rem;
      transition: color 0.15s, border-color 0.15s, box-shadow 0.15s;
    }

    .legal-back:hover {
      color: var(--secondary);
      border-color: rgba(28, 26, 22, 0.26);
      box-shadow: 0 1px 3px rgba(28, 26, 22, 0.06);
    }

    .legal-back svg {
      flex-shrink: 0;
      transition: transform 0.15s;
    }

    .legal-back:hover svg {
      transform: translateX(-2px);
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.5rem 1rem;
    }

    .footer-nav a {
      color: rgba(247, 245, 242, 0.55);
      text-decoration: none;
      transition: color 0.15s;
    }

    .footer-nav a:hover {
      color: rgba(234, 79, 23, 0.85);
    }

    .footer-nav a[aria-current="page"] {
      color: rgba(247, 245, 242, 0.75);
    }

    /* ─── Impressum (simple layout) ─── */
    .impressum-wrap,
    .legal-wrap {
      max-width: 48rem;
      margin-left: auto;
      margin-right: auto;
    }

    .impressum-head,
    .legal-page-head {
      text-align: center;
      margin-bottom: 2.25rem;
    }

    .impressum-head h1,
    .legal-page-head h1 {
      font-family: var(--display);
      font-size: clamp(2rem, 5vw, 2.75rem);
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
    }

    .impressum-subtitle,
    .legal-subtitle {
      font-size: 0.92rem;
      color: var(--muted);
    }

    .legal-updated {
      font-size: 0.78rem;
      color: var(--muted-light);
      margin-bottom: 1rem;
    }

    .legal-intro {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
      text-align: left;
      max-width: 40rem;
      margin: 0 auto;
    }

    .legal-intro + .legal-intro {
      margin-top: 0.75rem;
    }

    .legal-card {
      background: var(--bg-elevated);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .legal-section {
      padding: 1.65rem clamp(1.25rem, 4vw, 2.25rem);
    }

    .legal-section + .legal-section {
      border-top: 1px solid var(--line);
    }

    .legal-section h2 {
      font-family: var(--sans);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted-light);
      margin-bottom: 0.75rem;
    }

    .legal-section h2.is-numbered {
      font-family: var(--display);
      font-size: 1.3rem;
      font-weight: 600;
      letter-spacing: -0.015em;
      text-transform: none;
      color: var(--secondary);
      margin-bottom: 0.9rem;
    }

    .legal-section h3 {
      font-family: var(--sans);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted-light);
      margin: 1rem 0 0.45rem;
    }

    .legal-section h3:first-of-type {
      margin-top: 0;
    }

    .legal-section p,
    .legal-section address {
      font-size: 0.88rem;
      color: var(--secondary);
      line-height: 1.65;
      margin: 0;
    }

    .legal-section p + p,
    .legal-section ul + p {
      margin-top: 0.65rem;
    }

    .legal-section address {
      font-style: normal;
      margin-top: 0.35rem;
    }

    .legal-section ul {
      margin: 0.25rem 0 0;
      padding-left: 1.15rem;
    }

    .legal-section li {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 0.3rem;
    }

    .legal-lead {
      font-weight: 500;
    }

    .legal-muted {
      color: var(--muted) !important;
      font-size: 0.85rem !important;
      margin-top: 0.2rem !important;
    }

    .legal-section a {
      color: var(--camel);
      text-decoration: none;
      transition: color 0.15s;
    }

    .legal-section a:hover {
      color: var(--primary);
    }

    .legal-note {
      margin-top: 0.9rem !important;
      padding-top: 0.9rem;
      border-top: 1px dashed var(--line);
      font-size: 0.83rem !important;
      color: var(--muted) !important;
    }

    .legal-closing {
      margin-top: 2rem;
      font-size: 0.78rem;
      color: var(--muted-light);
      text-align: center;
      line-height: 1.55;
    }
