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

    :root {
      --bg-base: #0F1115;
      --bg-elevated: #15181E;
      --bg-surface: #181B22;
      --bg-surface-2: #20242D;
      --border: #272C36;
      --border-strong: #363D4A;
      --text: #F3F4F6;
      --text-muted: #9AA1AD;
      --text-faint: #646B78;
      --accent: #FF6600;
      --accent-hover: #FF802B;
      --accent-press: #DB5800;
      --accent-soft: rgba(255, 102, 0, 0.14);
      --on-accent: #160C02;
      --success: #34D39A;
      --success-soft: rgba(52, 211, 154, 0.15);
      --danger: #F25C54;
      --danger-soft: rgba(242, 92, 84, 0.15);
      --warning: #F6B23C;
      --warning-soft: rgba(246, 178, 60, 0.15);
      --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    }

    body {
      background-color: var(--bg-base);
      /* Subtle orange ambient radial glow + technical dark grid */
      background-image: 
        radial-gradient(ellipse 65% 35% at 50% 0%, rgba(255, 102, 0, 0.12), transparent 75%),
        linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 100% 100%, 32px 32px, 32px 32px;
      background-position: center top;
      color: var(--text);
      font-family: var(--font-sans);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      line-height: 1.5;
      padding: 28px 16px 40px;
    }

    .landing-container {
      width: 100%;
      max-width: 1060px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    html {
      scrollbar-width: thin;
      scrollbar-color: #272C36 #0F1115;
    }

    ::-webkit-scrollbar {
      width: 7px;
      height: 7px;
    }

    ::-webkit-scrollbar-track {
      background: #0F1115;
    }

    ::-webkit-scrollbar-thumb {
      background: #272C36;
      border-radius: 9999px;
      border: 1px solid #181B22;
      transition: background 0.2s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #363D4A;
    }

    ::-webkit-scrollbar-corner {
      background: #0F1115;
    }

    /* --- PAGE ENTRANCE ANIMATIONS --- */
    @keyframes heroEntrance {
      from {
        opacity: 0;
        transform: translateY(-16px) scale(0.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes stageEntrance {
      from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes fadeInStagger {
      from {
        opacity: 0;
        transform: translateY(14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Page Entrance Animations */
    .hero-header {
      animation: heroEntrance 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .stage-wrapper {
      animation: stageEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
    }

    .features-pill-row {
      animation: fadeInStagger 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
    }

    .quickstart-box {
      animation: fadeInStagger 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
    }

    .landing-footer {
      animation: fadeInStagger 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both;
    }

    /* --- BRANDING HEADER --- */
    .hero-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 28px;
    }

    /* Hero Nav Actions (GitHub, Docs, Telegram) */
    .hero-nav-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 16px;
      flex-wrap: wrap;
    }

    .nav-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 12.5px;
      font-weight: 600;
      padding: 7px 14px;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    }

    .nav-btn:hover {
      background: var(--bg-surface-2);
      border-color: var(--border-strong);
      color: #FFFFFF;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }

    .nav-btn:active {
      transform: translateY(0);
    }

    .nav-btn-github:hover {
      border-color: rgba(255, 255, 255, 0.35);
    }

    .nav-btn-telegram:hover {
      border-color: #229ED9;
      color: #229ED9;
    }

    .nav-badge {
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 10px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 6px;
      font-family: var(--font-mono);
    }

    .logo-wrapper {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }

    .logo-glow {
      position: absolute;
      width: 80px;
      height: 80px;
      background: var(--accent);
      filter: blur(32px);
      opacity: 0.35;
      border-radius: 50%;
      pointer-events: none;
    }

    .logo-svg {
      width: 58px;
      height: 58px;
      position: relative;
      z-index: 1;
      display: block;
    }

    .brand-title {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--text);
      display: inline-flex;
      align-items: baseline;
    }

    .brand-dot {
      color: var(--accent);
      margin-left: 1px;
    }

    .brand-tagline {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* --- DUAL PHONES STAGE (19.5:9 Screen Ratio) --- */
    .stage-wrapper {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: start;
      justify-content: center;
      gap: 28px;
      width: 100%;
      max-width: 860px;
      position: relative;
      animation: stageEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
    }

    .phone-column {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      width: 100%;
    }

    .phone-header-label {
      width: 100%;
      max-width: 320px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 4px;
    }

    .phone-role-text {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .role-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }

    .role-dot.buyer {
      background: var(--success);
    }

    .phone-sub-tag {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-faint);
    }

    .phone-device {
      width: 100%;
      max-width: 320px;
      height: 670px;
      background: #14171D;
      border-radius: 40px;
      padding: 9px;
      box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 24px 60px rgba(0, 0, 0, 0.9);
      border: 1px solid var(--border-strong);
      position: relative;
      display: flex;
      flex-direction: column;
      user-select: none;
    }

    .screen-glass {
      width: 100%;
      height: 100%;
      background: var(--bg-base);
      border-radius: 32px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      border: 1px solid var(--border);
    }

    .phone-statusbar {
      height: 28px;
      background: var(--bg-elevated);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      font-size: 10px;
      font-weight: 600;
      color: var(--text-muted);
      border-bottom: 1px solid var(--border);
      z-index: 50;
      flex-shrink: 0;
    }

    .phone-notch {
      width: 54px;
      height: 10px;
      background: #0B0D11;
      border-radius: 6px;
    }

    .phone-viewport {
      flex: 1;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      overflow-x: hidden;
      position: relative;
      background: var(--bg-base);
      scrollbar-width: none;
    }

    .phone-viewport::-webkit-scrollbar {
      display: none;
    }

    .app-header {
      height: 48px;
      background: var(--bg-elevated);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 10px;
      position: sticky;
      top: 0;
      z-index: 40;
      flex-shrink: 0;
    }

    .app-header-left {
      display: flex;
      align-items: center;
      width: 24px;
      color: var(--text-muted);
    }

    .app-header-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .app-header-title svg {
      color: var(--accent);
    }

    .indicators-group {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .indicator-pill {
      align-items: center;
      background: rgba(52, 211, 154, 0.15);
      border: 1px solid rgba(52, 211, 154, 0.3);
      border-radius: 999px;
      color: var(--success);
      display: inline-flex;
      font-size: 10px;
      font-weight: 700;
      gap: 4px;
      height: 22px;
      padding: 0 7px;
      white-space: nowrap;
    }

    .indicator-pill.syncing {
      background: rgba(246, 178, 60, 0.15);
      border-color: rgba(246, 178, 60, 0.3);
      color: var(--warning);
    }

    .indicator-pill.offline {
      background: rgba(242, 92, 84, 0.15);
      border-color: rgba(242, 92, 84, 0.3);
      color: var(--danger);
    }

    .indicator-pill .indicator-dot {
      background: currentColor;
      border-radius: 999px;
      height: 5px;
      width: 5px;
    }

    .indicator-pill.syncing .indicator-dot {
      animation: pulse-dot 1.5s ease-in-out infinite;
    }

    @keyframes pulse-dot {
      50% { opacity: 0.35; }
    }

    .app-btn {
      display: inline-flex;
      height: 44px;
      width: 100%;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 12px;
      padding: 0 16px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.15s ease;
      text-decoration: none;
      user-select: none;
    }

    .app-btn-primary {
      background: var(--accent);
      color: var(--on-accent);
    }

    .app-btn-secondary {
      background: var(--bg-surface-2);
      color: var(--text);
      border: 1px solid var(--border);
    }

    .app-btn-secondary:hover {
      border-color: var(--border-strong);
    }

    .app-field-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 10px;
    }

    .app-field-label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-muted);
    }

    .app-input {
      height: 40px;
      width: 100%;
      border-radius: 12px;
      background: var(--bg-surface-2);
      border: 1px solid var(--border);
      padding: 0 12px;
      font-size: 13px;
      color: var(--text);
      outline: none;
      display: flex;
      align-items: center;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .app-input.mono {
      font-family: var(--font-mono);
      font-size: 12px;
    }

    .app-input.focused {
      border-color: var(--accent);
      box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.25);
    }

    .app-hub-link {
      display: flex;
      align-items: center;
      gap: 10px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: var(--bg-surface);
      padding: 10px 14px;
      color: var(--text);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
    }

    .app-hub-link span:first-child {
      color: var(--accent);
      display: flex;
      align-items: center;
    }

    .app-banner {
      width: 100%;
      height: 105px;
      background: #14171E;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .app-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .app-avatar {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      border: 2px solid var(--bg-base);
      background: var(--bg-surface-2);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 10;
      margin-top: -29px;
      margin-left: 14px;
      margin-bottom: 8px;
      overflow: hidden;
    }

    .app-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .p2p-divider {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 670px;
      width: 1px;
      background: var(--border);
    }

    .touch-cursor {
      position: absolute;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.35);
      border: 1.5px solid #FFFFFF;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
      pointer-events: none;
      z-index: 999;
      transform: translate(-50%, -50%);
      transition: left 0.45s cubic-bezier(0.25, 1, 0.5, 1), top 0.45s cubic-bezier(0.25, 1, 0.5, 1), transform 0.15s ease, opacity 0.25s ease;
      opacity: 0;
    }

    .touch-cursor.clicking {
      transform: translate(-50%, -50%) scale(0.75);
      background: rgba(255, 102, 0, 0.7);
      border-color: #FF6600;
    }

    .view-panel {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      background: var(--bg-base);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
      overflow-y: auto;
      scrollbar-width: none;
    }

    .view-panel::-webkit-scrollbar {
      display: none;
    }

    .view-panel.active {
      opacity: 1;
      pointer-events: auto;
    }

    .chat-viewport {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 12px;
      gap: 8px;
      overflow: hidden;
      background: var(--bg-base);
    }

    .chat-pinned-event {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 7px 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

    .chat-event-indicator {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .chat-event-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 6px var(--success);
    }

    .chat-event-title {
      color: var(--success);
      font-weight: 700;
      font-size: 10.5px;
      letter-spacing: 0.04em;
    }

    .chat-event-amount {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      color: var(--accent);
    }

    .chat-pinned-badge {
      background: var(--bg-surface-2);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 5px 8px;
      font-size: 10px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      font-weight: 500;
    }

    .chat-thread-stream {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-end; /* ANCHORS ALL MESSAGES TO BOTTOM */
      gap: 8px;
      min-height: 0;
      padding-bottom: 2px;
    }

    .chat-bubble-container {
      display: flex;
      flex-direction: column;
      gap: 3px;
      max-width: 84%;
      opacity: 0;
      transform: translateY(22px) scale(0.92);
      transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      transform-origin: bottom;
      will-change: transform, opacity;
    }

    .chat-bubble-container.pop-in {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .chat-bubble-container.me {
      align-self: flex-end;
      align-items: flex-end;
    }

    .chat-bubble-container.other {
      align-self: flex-start;
      align-items: flex-start;
    }

    .chat-msg-bubble {
      padding: 9px 13px;
      font-size: 12.5px;
      line-height: 1.4;
      word-break: break-word;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .chat-msg-bubble.me {
      background: var(--accent);
      color: var(--on-accent);
      font-weight: 600;
      border-radius: 16px 16px 4px 16px;
    }

    .chat-msg-bubble.other {
      background: var(--bg-surface);
      color: var(--text);
      border: 1px solid var(--border);
      border-radius: 16px 16px 16px 4px;
    }

    .chat-time-meta {
      font-size: 10px;
      color: var(--text-faint);
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0 2px;
      font-family: var(--font-mono);
    }

    .chat-time-receipt {
      color: var(--success);
      font-weight: 800;
      letter-spacing: -1px;
      font-size: 11px;
    }

    .chat-input-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      padding-top: 4px;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    .chat-input-field {
      height: 38px;
      flex: 1;
      background: var(--bg-surface-2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0 12px;
      font-size: 12px;
      color: var(--text);
      display: flex;
      align-items: center;
      outline: none;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .chat-input-field.placeholder {
      color: var(--text-faint);
    }

    .chat-action-btn {
      width: 36px;
      height: 36px;
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
      flex-shrink: 0;
      transition: transform 0.15s ease, background 0.15s ease;
    }

    .chat-action-btn.attach {
      background: var(--bg-surface-2);
      border: 1px solid var(--border);
      color: var(--text-muted);
    }

    .chat-action-btn.send {
      background: var(--accent);
      color: var(--on-accent);
    }

    .feature-ticker-container {
      width: 100%;
      max-width: 320px;
      height: 48px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin-top: 4px;
    }

    .ticker-item {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.45;
      color: #FFFFFF;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.35s cubic-bezier(0.2, 0, 0, 1), transform 0.35s cubic-bezier(0.2, 0, 0, 1);
      pointer-events: none;
      padding: 0 8px;
      letter-spacing: -0.01em;
    }

    .ticker-item.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .ticker-item.exiting {
      opacity: 0;
      transform: translateY(12px);
    }

    .onion-spin-ring {
      width: 44px;
      height: 44px;
      border: 3px solid var(--border-strong);
      border-top-color: var(--accent);
      border-radius: 50%;
      animation: spin 0.9s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .qr-modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(15, 17, 21, 0.92);
      backdrop-filter: blur(4px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
      z-index: 60;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }

    .qr-modal-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .qr-art-box {
      background: #FFFFFF;
      padding: 10px;
      border-radius: 12px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }

    .qr-center-watermark {
      position: absolute;
      width: 32px;
      height: 32px;
      background: #FFFFFF;
      border-radius: 7px;
      padding: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .features-pill-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 30px;
      max-width: 860px;
      animation: fadeInStagger 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
    }

    .feature-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 6px 12px;
      font-size: 11.5px;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 0.01em;
      transition: all 0.2s ease;
    }

    .feature-chip:hover {
      border-color: var(--border-strong);
      color: var(--text);
      transform: translateY(-1px);
    }

    .quickstart-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      background: #13161C;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 8px 10px 8px 14px;
      margin-top: 18px;
      max-width: 500px;
      width: 100%;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      animation: fadeInStagger 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
    }

    .quickstart-code {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--text);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .quickstart-prompt {
      color: var(--accent);
      font-weight: 700;
      user-select: none;
    }

    .quickstart-copy {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: var(--bg-surface-2);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 5px 10px;
      font-size: 11px;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }

    .quickstart-copy:hover {
      background: var(--bg-surface);
      color: var(--text);
      border-color: var(--border-strong);
    }

    .quickstart-copy.copied {
      background: var(--success-soft);
      border-color: var(--success);
      color: var(--success);
    }

    /* Footer */
    .landing-footer {
      margin-top: 36px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: var(--text-faint);
      font-size: 11px;
      font-family: var(--font-mono);
      text-align: center;
      animation: fadeInStagger 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.15s ease;
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    @media (max-width: 780px) {
      .stage-wrapper {
        grid-template-columns: 1fr;
        max-width: 320px;
      }
      .p2p-divider {
        display: none;
      }
    }
