  /* ─── SERVICE OVERLAY ─── */
  .overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    pointer-events: none;
    /* Clip panels translated off-screen; their box-shadow was painting a dark strip on the viewport edge */
    overflow: hidden;
  }

  .overlay.open { pointer-events: all; }

  .overlay-backdrop {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 24% 30%, rgba(31,107,60,0.22), transparent 26%),
      radial-gradient(circle at 72% 70%, rgba(200,165,80,0.10), transparent 30%),
      rgba(7, 5, 3, 0.72);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s;
    cursor: pointer;
    overflow: hidden;
  }

  .overlay-backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(249,244,235,0.045) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(249,244,235,0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse 70% 70% at 36% 50%, black 35%, transparent 100%);
    opacity: 0.8;
  }

  .overlay.open .overlay-backdrop { opacity: 1; }

  .overlay-panel {
    position: absolute;
    top: 0; right: 0;
    width: min(820px, 100%);
    height: 100svh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: none;
  }

  .overlay.open .overlay-panel { transform: translateX(0); }

  .overlay-header {
    position: sticky;
    top: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    flex-shrink: 0;
  }

  .overlay-header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .overlay-num {
    font-family: 'DM Mono', 'JetBrains Mono', monospace;
    font-size: var(--sm);
    color: var(--accent);
  }

  .overlay-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .overlay-close {
    background: none;
    border: 1px solid var(--border2);
    color: var(--muted);
    cursor: pointer;
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .overlay-close:hover {
    border-color: var(--text);
    color: var(--text);
    transform: rotate(90deg);
  }

  .overlay-content {
    padding: 4rem 3rem;
    flex: 1;
  }

  .overlay-tagline {
    font-family: 'Syne', sans-serif;
    font-size: var(--xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 2.5rem;
  }

  .overlay-tagline em {
    font-style: italic;
    color: var(--accent);
    font-weight: 600;
  }

  .overlay-visual {
    height: 260px;
    background: var(--bg2);
    border: 1px solid var(--border);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
  }

  .overlay-visual-flow {
    height: 260px;
    align-items: center;
    justify-content: center;
    background: #161006;
    border: none !important;
  }

  .overlay-visual-flow .auto-journey {
    width: min(640px, 100%);
    height: 220px;
    border: none;
  }

  .overlay-body {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 3rem;
  }

  .overlay-body p + p { margin-top: 1.5rem; }
  .overlay-body strong { color: var(--text); font-weight: 600; }

  .overlay-section-label {
    font-family: 'DM Mono', 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-weight: 600;
  }

  .overlay-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 3rem;
  }

  .overlay-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--text);
    font-weight: 400;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: border-color 0.2s, background 0.2s;
  }

  @media (hover: hover) {
    .overlay-feature:hover { border-color: var(--accent); background: var(--accent-soft); }
  }

  .overlay-feature::before {
    content: '✓';
    color: var(--accent);
    flex-shrink: 0;
    font-weight: 700;
  }

  .overlay-divider {
    height: 1px;
    background: var(--border);
    margin: 2.5rem 0;
  }

  .overlay-who {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
  }

  .overlay-cta {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 2rem;
    font-family: 'DM Mono', 'JetBrains Mono', monospace;
    font-size: var(--sm);
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
  }

  .overlay-cta:hover { opacity: 0.88; transform: translateY(-2px); }

  /* ─── QUOTE OVERLAY ─── */
  .quote-overlay {
    position: fixed;
    inset: 0;
    z-index: 620;
    pointer-events: none;
    overflow: hidden;
  }
  .quote-overlay.open { pointer-events: all; }

  .quote-backdrop {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 18% 22%, rgba(31,107,60,0.2), transparent 28%),
      radial-gradient(circle at 78% 72%, rgba(200,165,80,0.12), transparent 32%),
      rgba(7, 5, 3, 0.76);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.35s;
    cursor: pointer;
  }
  .quote-overlay.open .quote-backdrop { opacity: 1; }

  .quote-panel {
    position: absolute;
    right: 0;
    top: 0;
    width: min(740px, 100%);
    height: 100svh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .quote-overlay.open .quote-panel { transform: translateX(0); }

  .quote-head {
    padding: 1.4rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface);
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .quote-title-wrap h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
  }
  .quote-title-wrap p {
    margin-top: 0.35rem;
    font-size: 0.88rem;
    color: var(--muted);
  }

  .quote-close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border2);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 1.05rem;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
  }
  .quote-close:hover {
    border-color: var(--text);
    color: var(--text);
    transform: rotate(90deg);
  }

  .quote-form {
    padding: 1.4rem 2rem 2rem;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .quote-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  .quote-field.full { grid-column: 1 / -1; }

  .quote-field label {
    font-family: 'DM Mono', 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .quote-input,
  .quote-select,
  .quote-textarea {
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 0.94rem;
    padding: 0.62rem 0.72rem;
    outline: none;
  }
  .quote-input:focus,
  .quote-select:focus,
  .quote-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(31,107,60,0.12);
  }

  .quote-textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.5;
  }

  .quote-grid-label {
    grid-column: 1 / -1;
    margin-top: 0.25rem;
    font-family: 'DM Mono', 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .quote-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .quote-check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border);
    background: var(--bg);
    padding: 0.48rem 0.56rem;
    font-size: 0.84rem;
    color: var(--text);
  }
  .quote-check-item input {
    accent-color: var(--accent);
    width: 14px;
    height: 14px;
    margin: 0;
    flex-shrink: 0;
  }

  .quote-field-hint {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.15rem;
  }

  .quote-consent {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: var(--muted);
    font-size: 0.84rem;
  }
  .quote-consent input { margin-top: 0.15rem; }

  .quote-actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  .quote-submit {
    border: none;
    background: var(--accent);
    color: #fff;
    padding: 0.7rem 1.2rem;
    font-family: 'DM Mono', 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
    cursor: pointer;
  }
  .quote-note {
    font-size: 0.8rem;
    color: var(--muted);
  }

  /* overlay mini-visuals */
  .ov-menu {
    width: 100%; height: 100%;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: radial-gradient(ellipse at center, rgba(31,107,60,0.1) 0%, transparent 70%);
  }

  .ov-menu-phone {
    width: min(260px, 90%);
    height: 168px;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 18px;
    padding: 0.85rem;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0.75rem;
    box-shadow: 0 18px 45px rgba(26,20,8,0.08);
    position: relative;
  }

  .ov-qr-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.45rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 3px;
    align-items: center;
    align-self: start;
  }

  .ov-qr-card span {
    background: var(--text);
    border-radius: 1px;
    aspect-ratio: 1;
  }

  .ov-qr-card span:nth-child(4n),
  .ov-qr-card span:nth-child(7n) { background: transparent; }
  .ov-qr-card span:nth-child(13) { background: var(--accent); }

  .ov-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
  }

  .ov-menu-item {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 0.45rem 0.6rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.76rem;
    color: var(--text);
    border-radius: 10px;
    transform: translateX(10px);
    opacity: 0;
    animation: menuSlide 3.2s ease-in-out infinite;
  }

  .ov-menu-item .price {
    font-family: 'DM Mono', 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    color: var(--accent);
    display: block;
    font-weight: 600;
  }

  .ov-menu-item:nth-child(2) { animation-delay: 0.18s; }
  .ov-menu-item:nth-child(3) { animation-delay: 0.36s; }

  @keyframes menuSlide {
    0%, 100% { opacity: 0.55; transform: translateX(8px); }
    20%, 82% { opacity: 1; transform: translateX(0); }
  }

  .ov-flow {
    width: 100%; height: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 0.55rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(31,107,60,0.08), transparent 60%);
  }

  .ov-node {
    min-width: 0;
    min-height: 76px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-align: center;
    border-radius: 12px;
    padding: 0.65rem 0.35rem;
    position: relative;
    overflow: hidden;
  }

  .ov-node::before {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: var(--accent);
    transform: translateX(-101%);
    animation: nodeFill 3s ease-in-out infinite;
  }

  .ov-node:nth-child(2)::before { animation-delay: 0.35s; }
  .ov-node:nth-child(3)::before { animation-delay: 0.7s; }
  .ov-node:nth-child(4)::before { animation-delay: 1.05s; }
  .ov-node:nth-child(5)::before { animation-delay: 1.4s; }

  .ov-node strong {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 0.15rem;
  }

  @keyframes nodeFill {
    0%, 18% { transform: translateX(-101%); }
    45%, 80% { transform: translateX(0); }
    100% { transform: translateX(101%); }
  }

  .ov-node.active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
    box-shadow: 0 0 12px rgba(31,107,60,0.12);
  }

  .ov-dash {
    width: 100%; height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    padding: 1.2rem 1.4rem 0.9rem;
  }

  .ov-bar {
    flex: 1;
    background: rgba(31,107,60,0.22);
    border-top: 2px solid rgba(31,107,60,0.65);
    position: relative;
    z-index: 1;
    animation: ovBarGlow 3.5s ease-in-out infinite;
  }

  .ov-bar:nth-child(1) { animation-delay: 0s; }
  .ov-bar:nth-child(2) { animation-delay: 0.5s; }
  .ov-bar:nth-child(3) { animation-delay: 1s; }
  .ov-bar:nth-child(4) { animation-delay: 1.5s; }
  .ov-bar:nth-child(5) { animation-delay: 2s; }
  .ov-bar:nth-child(6) { animation-delay: 2.5s; }
  .ov-bar:nth-child(7) { animation-delay: 3s; }
  .ov-bar:nth-child(8) { animation-delay: 0.25s; }

  @keyframes ovBarGlow {
    0%, 100% { background: rgba(31,107,60,0.18); border-top-color: rgba(31,107,60,0.5); box-shadow: none; }
    50%      { background: rgba(31,107,60,0.42); border-top-color: rgba(31,107,60,1); box-shadow: 0 -8px 22px rgba(31,107,60,0.35), 0 -2px 6px rgba(31,107,60,0.5); }
  }

  .ov-web {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg2);
  }

  .ov-browser-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .ov-dot { width: 8px; height: 8px; border-radius: 50%; }
  .ov-dot:nth-child(1) { background: #ff5f57; }
  .ov-dot:nth-child(2) { background: #febc2e; }
  .ov-dot:nth-child(3) { background: #28c840; }

  .ov-url {
    margin-left: 0.5rem;
    font-family: 'DM Mono', 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: var(--muted);
    background: var(--border);
    padding: 0.2rem 0.75rem;
    border-radius: 2px;
  }

  .ov-web-content {
    flex: 1;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
    position: relative;
  }

  .ov-web-hero {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
    overflow: hidden;
  }

  .ov-web-h,
  .ov-web-p,
  .ov-web-p2 {
    height: 10px;
    background: var(--border);
    border-radius: 999px;
    animation: shimmer 2s infinite;
  }
  .ov-web-h { height: 18px; width: 66%; background: rgba(31,107,60,0.22); }
  .ov-web-p { width: 92%; animation-delay: 0.1s; }
  .ov-web-p2 { width: 74%; animation-delay: 0.2s; }
  .ov-web-btn {
    height: 30px;
    background: var(--accent);
    width: 112px;
    border-radius: 999px;
    animation: ctaDrift 3s ease-in-out infinite;
  }

  .ov-web-side {
    display: grid;
    gap: 0.55rem;
  }

  .ov-web-card {
    min-height: 42px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transform: translateY(8px);
    animation: cardFloat 3s ease-in-out infinite;
  }
  .ov-web-card:nth-child(1) { animation-delay: 0s; }
  .ov-web-card:nth-child(2) { animation-delay: 0.35s; }
  .ov-web-card:nth-child(3) { animation-delay: 0.7s; }

  @keyframes ctaDrift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
  }

  @keyframes cardFloat {
    0%, 100% { transform: translateY(8px); opacity: 0.72; }
    50% { transform: translateY(0); opacity: 1; }
  }

  @keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  @media (max-width: 560px) {
    .overlay-visual { height: 240px; }
    .overlay-visual-flow { height: 240px; }
    .overlay-visual-flow .auto-journey {
      width: 100%;
      height: 210px;
      transform: scale(0.95);
      transform-origin: center;
    }
    .ov-flow-node {
      width: 44px;
      height: 44px;
      font-size: 0.45rem;
    }
    .ov-flow-node-icon { font-size: 0.85rem; }
    .ov-flow-line { width: 14px; }
    .ov-web-content {
      grid-template-columns: 1fr;
      gap: 0.65rem;
    }
    .ov-web-side {
      grid-template-columns: repeat(3, 1fr);
    }
    .ov-menu-phone {
      width: 100%;
    }
  }

  /* overlay visual v2 */
  .ov-menu,
  .ov-flow,
  .ov-dash,
  .ov-web {
    position: relative;
    isolation: isolate;
  }

  .ov-menu {
    padding: 0;
    background:
      radial-gradient(circle at 22% 22%, rgba(31,107,60,0.2), transparent 25%),
      radial-gradient(circle at 82% 74%, rgba(194,65,12,0.14), transparent 24%),
      linear-gradient(135deg, var(--bg2), var(--surface));
  }

  .ov-menu::before,
  .ov-menu::after,
  .ov-flow::before,
  .ov-web::before,
  .ov-web::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
  }

  .ov-menu::before {
    width: 120px;
    height: 120px;
    left: 12%;
    top: 14%;
    background: rgba(31,107,60,0.28);
  }

  .ov-menu::after {
    width: 90px;
    height: 90px;
    right: 13%;
    bottom: 10%;
    background: rgba(194,65,12,0.16);
  }

  .ov-menu-stage {
    width: min(440px, 92%);
    height: 162px;
    position: relative;
  }

  .ov-menu-scan {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 118px;
    height: 118px;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 1px solid rgba(31,107,60,0.5);
    background:
      linear-gradient(90deg, var(--text) 10px, transparent 10px 20px, var(--text) 20px 30px, transparent 30px 40px),
      linear-gradient(var(--text) 10px, transparent 10px 20px, var(--text) 20px 30px, transparent 30px 40px);
    background-size: 40px 40px;
    box-shadow: 0 0 0 18px rgba(31,107,60,0.05), 0 18px 45px rgba(26,20,8,0.12);
    animation: scanTurn 8s linear infinite;
  }

  .ov-menu-scan::after {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(31,107,60,0.22);
    animation: scanPulse 2s ease-in-out infinite;
  }

  .ov-menu-chip {
    position: absolute;
    background: rgba(249,244,235,0.84);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200,187,160,0.85);
    padding: 0.55rem 0.75rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    box-shadow: 0 12px 30px rgba(26,20,8,0.08);
    animation: chipDrift 4s ease-in-out infinite;
  }

  .ov-menu-chip span {
    display: block;
    margin-top: 0.08rem;
    font-family: 'DM Mono', 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    color: var(--accent);
    font-weight: 400;
  }

  .ov-menu-chip:nth-child(2) { left: 0; top: 8px; }
  .ov-menu-chip:nth-child(3) { right: 4px; top: 28px; animation-delay: 0.7s; }
  .ov-menu-chip:nth-child(4) { left: 40px; bottom: 0; animation-delay: 1.25s; }
  .ov-menu-chip:nth-child(5) { right: 54px; bottom: 8px; animation-delay: 1.8s; }

  @keyframes scanTurn {
    to { transform: translate(-50%, -50%) rotate(405deg); }
  }

  @keyframes scanPulse {
    0%, 100% { opacity: 0.25; transform: scale(0.94); }
    50% { opacity: 0.9; transform: scale(1.08); }
  }

  @keyframes chipDrift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .ov-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 1.5rem 1rem;
    background: #1a1408;
    background-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(31,107,60,0.12) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
  }

  .ov-flow::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(200,165,80,0.06) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(200,165,80,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }

  .ov-flow-node {
    width: clamp(48px, 11vw, 72px);
    height: clamp(48px, 11vw, 72px);
    border-radius: 12px;
    border: 1.5px solid rgba(200,165,80,0.35);
    background: rgba(26,20,8,0.9);
    box-shadow: 0 0 0 3px rgba(200,165,80,0.06);
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    color: rgba(200,165,80,0.65);
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1.35;
    padding: 0.3rem;
    animation: ovNodePulse 3.6s ease-in-out infinite;
  }

  .ov-flow-node-icon {
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.15rem;
    line-height: 1;
  }

  .ov-flow-line {
    width: clamp(18px, 5vw, 44px);
    height: 1px;
    background: rgba(200,165,80,0.22);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .ov-flow-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(31,107,60,0.95), transparent);
    transform: translateX(-100%);
    animation: lineSignal 2.4s ease-in-out infinite;
  }

  .ov-flow-node:nth-child(3) { animation-delay: 0.6s; }
  .ov-flow-node:nth-child(5) { animation-delay: 1.2s; }
  .ov-flow-node:nth-child(7) { animation-delay: 1.8s; }
  .ov-flow-node:nth-child(9) { animation-delay: 2.4s; }
  .ov-flow-line:nth-child(2)::after { animation-delay: 0.15s; }
  .ov-flow-line:nth-child(4)::after { animation-delay: 0.75s; }
  .ov-flow-line:nth-child(6)::after { animation-delay: 1.35s; }
  .ov-flow-line:nth-child(8)::after { animation-delay: 1.95s; }

  @keyframes ovNodePulse {
    0%, 15%  { border-color: rgba(200,165,80,0.3); box-shadow: 0 0 0 3px rgba(200,165,80,0.05); background: rgba(26,20,8,0.9); }
    30%, 55% { border-color: rgba(31,107,60,0.9); box-shadow: 0 0 0 6px rgba(31,107,60,0.12), 0 0 18px rgba(31,107,60,0.35); background: rgba(31,107,60,0.15); }
    70%, 100%{ border-color: rgba(200,165,80,0.3); box-shadow: 0 0 0 3px rgba(200,165,80,0.05); background: rgba(26,20,8,0.9); }
  }

  @keyframes lineSignal {
    0% { transform: translateX(-100%); opacity: 0; }
    25%, 75% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
  }

  .ov-dash {
    align-items: flex-end;
    gap: 5px;
    padding: 1.2rem 1.4rem 1rem;
    background: #1a1408;
    background-image: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(31,107,60,0.10) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
  }

  .ov-dash::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(200,165,80,0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(200,165,80,0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }

  .ov-web {
    background:
      linear-gradient(90deg, rgba(221,210,186,0.55) 1px, transparent 1px),
      linear-gradient(rgba(221,210,186,0.55) 1px, transparent 1px),
      var(--bg2);
    background-size: 34px 34px;
  }

  .ov-web::before {
    width: 170px;
    height: 170px;
    left: 12%;
    bottom: -28%;
    background: rgba(31,107,60,0.25);
    filter: blur(34px);
  }

  .ov-web::after {
    width: 150px;
    height: 150px;
    right: 10%;
    top: 18%;
    background: rgba(194,65,12,0.15);
    filter: blur(42px);
  }

  .ov-web-hero,
  .ov-web-card,
  .ov-url,
  .ov-web-btn {
    border-radius: 0;
  }

  .ov-web-hero {
    background: rgba(249,244,235,0.5);
    backdrop-filter: blur(16px);
    border-color: rgba(200,187,160,0.85);
  }

  .ov-web-card {
    background: rgba(249,244,235,0.42);
    backdrop-filter: blur(14px);
  }

  .ov-web-h,
  .ov-web-p,
  .ov-web-p2 {
    border-radius: 0;
  }

  @media (max-width: 560px) {
    .ov-menu-stage {
      width: 100%;
      height: 176px;
    }
    .ov-menu-chip {
      font-size: 0.68rem;
      padding: 0.45rem 0.55rem;
    }
    .ov-menu-scan {
      width: 96px;
      height: 96px;
    }
    .ov-flow {
      flex-direction: row;
      gap: 0;
    }
    .ov-flow-node {
      width: 42px;
      height: 42px;
      font-size: 0.58rem;
    }
    .ov-flow-line {
      width: 16px;
    }
  }


  /* original service overlay visuals */
  .ov-menu,
  .ov-flow,
  .ov-dash,
  .ov-web {
    isolation: auto;
  }

  .ov-menu::before,
  .ov-menu::after,
  .ov-flow::before,
  .ov-web::before,
  .ov-web::after {
    content: none;
  }

  .ov-menu {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    background: radial-gradient(ellipse at center, rgba(31,107,60,0.06) 0%, transparent 70%);
  }

  .ov-menu-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 0.75rem 1.25rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    color: var(--text);
    opacity: 1;
    transform: none;
    animation: menuFloat 3s ease-in-out infinite;
  }

  .ov-menu-item .price {
    font-family: 'DM Mono', 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    display: block;
    margin-top: 0.25rem;
    font-weight: 600;
  }

  .ov-menu-item:nth-child(1) { animation-delay: 0s; }
  .ov-menu-item:nth-child(2) { animation-delay: 0.5s; }
  .ov-menu-item:nth-child(3) { animation-delay: 1s; }

  @keyframes menuFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* overlay dark board */
  .ov-menu-board {
    width: 100%; height: 100%;
    background: #1a1408;
    background-image:
      radial-gradient(ellipse 60% 50% at 30% 20%, rgba(200,165,80,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 50% 60% at 75% 80%, rgba(200,130,40,0.08) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
  }
  .ov-menu-board::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(200,165,80,0.06) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(200,165,80,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
  }
  .ov-menu-board-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(200,165,80,0.65);
    margin-bottom: 0.6rem;
  }
  .ov-menu-dish-wrap {
    height: 2.6rem;
    position: relative;
    overflow: hidden;
  }
  .ov-menu-dish-cycle { display: contents; }
  .ov-menu-dish-name {
    position: absolute;
    inset: 0;
    height: 2.6rem;
    display: flex;
    align-items: center;
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: rgba(255,248,230,0.95);
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    animation: dishFade 9s ease-in-out infinite;
  }
  .ov-menu-dish-name:nth-child(1) { animation-delay: 0s; }
  .ov-menu-dish-name:nth-child(2) { animation-delay: 3s; }
  .ov-menu-dish-name:nth-child(3) { animation-delay: 6s; }

  .ov-menu-price-wrap {
    height: 1.8rem;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
  }
  .ov-menu-price-cycle { display: contents; }
  .ov-menu-price-item {
    position: absolute;
    inset: 0;
    height: 1.8rem;
    display: flex;
    align-items: center;
    font-family: 'DM Mono', monospace;
    font-size: 1rem;
    color: rgba(200,165,80,0.85);
    letter-spacing: 0.06em;
    opacity: 0;
    animation: dishFade 9s ease-in-out infinite;
  }
  .ov-menu-price-item:nth-child(1) { animation-delay: 0s; }
  .ov-menu-price-item:nth-child(2) { animation-delay: 3s; }
  .ov-menu-price-item:nth-child(3) { animation-delay: 6s; }
  .ov-menu-board-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(200,165,80,0.2);
    padding-top: 1rem;
    z-index: 1;
    position: relative;
  }
  .ov-menu-board-hint {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(200,165,80,0.45);
  }
  .ov-menu-board-qr-wrap { opacity: 0.7; }

  /* v3 dark board overrides */
  .ov-flow {
    width: 100%; height: 100%;
    background: #1a1408;
    background-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(31,107,60,0.12) 0%, transparent 70%);
    padding: 1.5rem 1rem;
  }

  .ov-dash {
    width: 100%; height: 100%;
    background: #1a1408;
    background-image: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(31,107,60,0.10) 0%, transparent 70%);
    padding: 1.2rem 1.4rem 0.9rem;
    gap: 6px;
    justify-content: center;
  }

  .ov-bar {
    flex: 1;
    background: rgba(31,107,60,0.22);
    border-top: 2px solid rgba(31,107,60,0.65);
    animation: ovBarGlow 3.5s ease-in-out infinite;
  }

  .ov-web {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
  }

  @media (max-width: 560px) {
    .ov-menu {
      flex-direction: column;
      gap: 0.6rem;
    }
    .ov-menu-item {
      width: min(220px, 100%);
    }
    .ov-flow {
      transform: scale(0.9);
    }
  }
