      :root {
        --ink: #0f172a;
        --text: #1e293b;
        --muted: #64748b;
        --line: #e2e8f0;
        --panel: #ffffff;
        --primary: #224f68;
        --primary-dark: #17384a;
        --primary-light: #e7f7fa;
        --accent: #8ddae1;
        --accent-soft: #e7f7fa;
        --green: #10b981;
        --green-bg: #ecfdf5;
        --red: #dc2626;
        --red-bg: #fee2e2;
        --amber: #f59e0b;
        --amber-bg: #fffbeb;
        --blue: #3b82f6;
        --bg: #f1f5f9;
        --sidebar-bg: #0f172a;
        --shadow-sm:
          0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
        --shadow:
          0 4px 24px rgba(15, 23, 42, 0.08), 0 1px 4px rgba(15, 23, 42, 0.04);
        --shadow-lg:
          0 20px 60px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06);
        --radius: 16px;
      }

      .announcement-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--primary);
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        padding: 9px 20px;
        text-align: center;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: hidden;
      }
      .announcement-badge {
        background: rgba(255,255,255,0.18);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        padding: 2px 8px;
        border-radius: 20px;
        flex-shrink: 0;
      }
      .announcement-bar span[data-i18n] {
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
      }
      .announcement-link {
        color: #fff;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 2px;
        white-space: nowrap;
        flex-shrink: 0;
        transition: opacity 0.15s;
      }
      .announcement-link:hover { opacity: 0.8; }

      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }

      body {
        font-family:
          Inter,
          ui-sans-serif,
          system-ui,
          -apple-system,
          BlinkMacSystemFont,
          "Segoe UI",
          sans-serif;
        color: var(--text);
        background: var(--bg);
        -webkit-font-smoothing: antialiased;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      .shell {
        width: min(1120px, calc(100vw - 40px));
        margin: 0 auto;
      }

      /* ── Header ── */
      .site-header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(248, 250, 252, 0.9);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--line);
      }

      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
        gap: 24px;
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: 800;
        font-size: 18px;
        color: var(--ink);
        letter-spacing: -0.03em;
      }

      .nav-logo-badge {
        font-size: 10px;
        font-weight: 700;
        line-height: 1;
        color: #224f68;
        background: #d8f3f7;
        padding: 2px 6px;
        border-radius: 4px;
        margin-left: -4px;
        vertical-align: middle;
        letter-spacing: 0;
      }

      .brand img {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        object-fit: contain;
      }

      .nav-links {
        display: inline-flex;
        align-items: center;
        gap: 28px;
        font-size: 14px;
        color: var(--muted);
        font-weight: 500;
      }

      .nav-links a:hover {
        color: var(--ink);
      }

      .nav-actions {
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .lang-select {
        height: 38px;
        padding: 0 12px;
        border-radius: 10px;
        border: 1px solid var(--line);
        background: white;
        color: var(--text);
        font-size: 13px;
        font-weight: 600;
        outline: none;
        cursor: pointer;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        height: 40px;
        padding: 0 18px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        border: 1px solid transparent;
        cursor: pointer;
        transition: all 140ms ease;
        white-space: nowrap;
      }

      .btn-primary {
        background: var(--primary);
        color: #fff;
        box-shadow:
          0 1px 3px rgba(34, 79, 104, 0.35),
          0 4px 12px rgba(34, 79, 104, 0.25);
      }
      .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow:
          0 2px 6px rgba(34, 79, 104, 0.4),
          0 8px 20px rgba(34, 79, 104, 0.3);
      }

      .btn-secondary {
        background: white;
        border-color: var(--line);
        color: var(--text);
      }
      .btn-secondary:hover {
        border-color: #cbd5e1;
        background: #f8fafc;
      }

      .btn-lg {
        height: 52px;
        padding: 0 28px;
        font-size: 15px;
        border-radius: 14px;
      }

      /* ── Hero ── */
      .hero {
        padding: 80px 0 56px;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: -120px;
        left: 50%;
        transform: translateX(-50%);
        width: 900px;
        height: 600px;
        background: radial-gradient(
          ellipse at center,
          rgba(34, 79, 104, 0.08) 0%,
          transparent 65%
        );
        pointer-events: none;
      }

      .hero-inner {
        display: grid;
        grid-template-columns: 1fr 480px;
        gap: 56px;
        align-items: center;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px 6px 8px;
        background: white;
        border: 1px solid rgba(34, 79, 104, 0.25);
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        box-shadow: var(--shadow-sm);
      }

      .hero-badge-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--primary);
        box-shadow: 0 0 0 3px rgba(34, 79, 104, 0.15);
      }

      .hero-copy h1 {
        margin-top: 20px;
        font-size: clamp(40px, 5.5vw, 66px);
        line-height: 1.02;
        letter-spacing: -0.05em;
        color: var(--ink);
        font-weight: 800;
      }

      .hero-copy h1 em {
        font-style: normal;
        background: linear-gradient(
          135deg,
          var(--primary) 0%,
          var(--accent) 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .hero-copy p {
        margin-top: 20px;
        font-size: 18px;
        line-height: 1.7;
        color: var(--muted);
        max-width: 500px;
      }

      .hero-actions {
        margin-top: 32px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
      }

      .hero-trust {
        margin-top: 24px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px 20px;
        font-size: 13px;
        color: var(--muted);
        align-items: center;
      }

      .trust-item {
        display: flex;
        align-items: center;
        gap: 6px;
      }

      .trust-item svg {
        width: 14px;
        height: 14px;
        fill: var(--green);
        flex-shrink: 0;
      }

      .trust-item--social {
        background: rgba(30, 80, 110, 0.07);
        border: 1px solid rgba(30, 80, 110, 0.15);
        border-radius: 999px;
        padding: 4px 12px 4px 8px;
        font-weight: 600;
        color: var(--heading);
        font-size: 13px;
      }

      .trust-social-icon {
        width: 15px !important;
        height: 15px !important;
        fill: #1e506e !important;
      }

      /* ── Hero visual ── */
      .hero-visual {
        position: relative;
      }

      .dashboard-card {
        background: white;
        border-radius: 20px;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
      }

      .card-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 18px;
        border-bottom: 1px solid var(--line);
        background: #fcfcfd;
      }

      .card-dots {
        display: flex;
        gap: 5px;
      }
      .card-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
      }
      .card-dots span:nth-child(1) {
        background: #ef4444;
      }
      .card-dots span:nth-child(2) {
        background: #f59e0b;
      }
      .card-dots span:nth-child(3) {
        background: #22c55e;
      }

      .card-title-bar {
        font-size: 12px;
        font-weight: 600;
        color: var(--muted);
      }

      .card-body {
        padding: 18px;
      }

      .stat-strip {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 14px;
      }

      .stat-tile {
        background: #f8fafc;
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 14px;
      }

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

      .stat-value {
        margin-top: 6px;
        font-size: 26px;
        font-weight: 800;
        color: var(--ink);
        letter-spacing: -0.04em;
      }

      .stat-value.green {
        color: var(--green);
      }
      .stat-value.purple {
        color: var(--primary);
      }

      .idea-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .idea-row {
        display: grid;
        grid-template-columns: 42px 1fr auto;
        align-items: center;
        gap: 12px;
        padding: 11px 14px;
        background: #fafafa;
        border: 1px solid var(--line);
        border-radius: 12px;
      }

      .idea-votes-box {
        background: rgba(34, 79, 104, 0.08);
        color: var(--primary);
        font-size: 13px;
        font-weight: 800;
        border-radius: 10px;
        padding: 7px 0;
        text-align: center;
      }

      .idea-text {
        font-size: 13px;
        font-weight: 600;
        color: var(--ink);
      }
      .idea-meta {
        font-size: 11px;
        color: var(--muted);
        margin-top: 2px;
      }

      .pill {
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        padding: 4px 9px;
        border-radius: 999px;
      }

      .pill-planned {
        background: rgba(34, 79, 104, 0.1);
        color: var(--primary);
      }
      .pill-live {
        background: rgba(16, 185, 129, 0.1);
        color: var(--green);
      }
      .pill-review {
        background: rgba(245, 158, 11, 0.1);
        color: var(--amber);
      }

      /* ── Hero card tabs ── */
      .hero-tabs {
        display: flex;
        gap: 2px;
        padding: 10px 14px 0;
        background: #fcfcfd;
        border-bottom: 1px solid var(--line);
      }
      .hero-tab {
        font-size: 12px;
        font-weight: 600;
        color: var(--muted);
        background: none;
        border: none;
        padding: 7px 13px;
        border-radius: 8px 8px 0 0;
        cursor: pointer;
        position: relative;
        transition: color 0.2s;
        letter-spacing: 0.01em;
      }
      .hero-tab:hover {
        color: var(--ink);
      }
      .hero-tab.active {
        color: var(--primary);
      }
      .hero-tab.active::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--primary);
        border-radius: 2px 2px 0 0;
      }
      .hero-panels-wrap {
        position: relative;
        height: 296px;
      }
      .hero-panel {
        position: absolute;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
      }
      .hero-panel.active {
        opacity: 1;
        pointer-events: auto;
        animation: heroPanelIn 0.35s ease;
      }
      @keyframes heroPanelIn {
        from {
          opacity: 0;
          transform: translateY(5px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      /* Poll bars */
      .poll-question {
        font-size: 14px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 14px;
        line-height: 1.4;
      }
      .poll-option {
        margin-bottom: 10px;
      }
      .poll-option-label {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: var(--ink);
        font-weight: 500;
        margin-bottom: 5px;
      }
      .poll-bar-track {
        height: 8px;
        background: #f1f5f9;
        border-radius: 99px;
        overflow: hidden;
      }
      .poll-bar-fill {
        height: 100%;
        border-radius: 99px;
        background: var(--primary);
        transition: width 0.6s ease;
      }
      .poll-bar-fill.accent {
        background: var(--accent, #8ddae1);
      }
      .poll-meta {
        font-size: 11px;
        color: var(--muted);
        margin-top: 14px;
        font-weight: 500;
      }
      /* Open question panel */
      .oq-question {
        font-size: 14px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 12px;
        line-height: 1.4;
      }
      .oq-response {
        display: flex;
        gap: 10px;
        padding: 10px 12px;
        background: #f8fafc;
        border: 1px solid var(--line);
        border-radius: 10px;
        margin-bottom: 8px;
      }
      .oq-avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(34, 79, 104, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 800;
        color: var(--primary);
        flex-shrink: 0;
      }
      .oq-text {
        font-size: 12px;
        color: var(--ink);
        line-height: 1.5;
      }
      .oq-time {
        font-size: 10px;
        color: var(--muted);
        margin-top: 2px;
      }
      .oq-input-mock {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        background: white;
        border: 1.5px solid var(--line);
        border-radius: 10px;
        margin-top: 10px;
      }
      .oq-input-placeholder {
        font-size: 12px;
        color: #cbd5e1;
        flex: 1;
      }
      .oq-send-btn {
        width: 26px;
        height: 26px;
        background: var(--primary);
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      /* ── Stats band ── */
      .stats-band {
        padding: 32px 0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        background: white;
      }

      .stats-band-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }

      .band-stat-value {
        font-size: 32px;
        font-weight: 800;
        color: var(--ink);
        letter-spacing: -0.05em;
      }

      .band-stat-label {
        margin-top: 4px;
        font-size: 13px;
        color: var(--muted);
        font-weight: 500;
      }

      .band-platform-label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 12px;
      }

      .platform-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
      }

      .platform-logos img {
        height: 22px;
        width: auto;
        object-fit: contain;
        opacity: 0.7;
        filter: grayscale(1);
        transition: opacity 0.2s, filter 0.2s;
      }

      .platform-logos img:hover {
        opacity: 1;
        filter: grayscale(0);
      }

      .platform-more {
        font-size: 12px;
        color: var(--muted);
        font-weight: 500;
        white-space: nowrap;
      }

      /* ── Features ── */
      .section {
        padding: 80px 0;
      }

      .section-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 56px;
      }

      .kicker {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 12px;
      }

      .section-header h2 {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 800;
        color: var(--ink);
        letter-spacing: -0.04em;
        line-height: 1.1;
      }

      .section-header p {
        margin-top: 14px;
        font-size: 17px;
        line-height: 1.7;
        color: var(--muted);
      }

      .feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }

      .feature-card {
        background: white;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 28px;
        box-shadow: var(--shadow-sm);
        transition:
          box-shadow 200ms,
          transform 200ms;
      }

      .feature-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-2px);
      }

      .feature-icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
      }

      .feature-icon-wrap svg {
        width: 22px;
        height: 22px;
      }

      .icon-purple {
        background: rgba(34, 79, 104, 0.1);
        color: var(--primary);
      }
      .icon-cyan {
        background: rgba(141, 218, 225, 0.15);
        color: var(--primary);
      }
      .icon-green {
        background: rgba(16, 185, 129, 0.1);
        color: var(--green);
      }
      .icon-amber {
        background: rgba(245, 158, 11, 0.1);
        color: var(--amber);
      }
      .icon-rose {
        background: rgba(244, 63, 94, 0.1);
        color: #f43f5e;
      }
      .icon-blue {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
      }

      .feature-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: var(--ink);
        letter-spacing: -0.02em;
      }

      .feature-card p {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.65;
        color: var(--muted);
      }

      /* ── How it works ── */
      .how-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
      }

      .how-card {
        background: white;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 32px;
        box-shadow: var(--shadow-sm);
      }

      .steps-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 28px;
      }

      .step-item {
        display: grid;
        grid-template-columns: 36px 1fr;
        gap: 14px;
        align-items: start;
      }

      .step-num {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: var(--primary);
        color: white;
        font-size: 14px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .step-item h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--ink);
      }

      .step-item p {
        margin-top: 4px;
        font-size: 14px;
        line-height: 1.6;
        color: var(--muted);
      }

      .code-block {
        margin-top: 24px;
        background: #0f172a;
        color: #cbd5e1;
        border-radius: 14px;
        padding: 20px;
        font-family:
          "SFMono-Regular", ui-monospace, Menlo, Monaco, Consolas, monospace;
        font-size: 13px;
        line-height: 1.7;
        overflow: auto;
      }

      .code-block .t {
        color: #8ddae1;
      }
      .code-block .a {
        color: #fbbf24;
      }
      .code-block .v {
        color: #34d399;
      }

      /* Why section */
      .why-card {
        background: white;
        border-radius: 20px;
        padding: 0 32px 32px;
        text-align: center;
      }

      .why-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 28px;
      }

      .why-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 16px 18px;
        background: #f8fafc;
        border: 1px solid var(--line);
        border-radius: 12px;
      }

      .why-item-text strong {
        display: block;
        font-size: 14px;
        font-weight: 700;
        color: var(--ink);
      }

      .why-item-text span {
        display: block;
        margin-top: 2px;
        font-size: 13px;
        color: var(--muted);
        line-height: 1.5;
      }

      .why-badge {
        flex-shrink: 0;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(34, 79, 104, 0.08);
        color: var(--primary);
      }

      /* ── Beta Deal ── */
      .beta-deal-card {
        background: white;
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 44px 320px 44px 48px;
        position: relative;
        overflow: hidden;
      }
      .beta-deal-right {
        position: absolute;
        top: 0; right: 0; bottom: 0;
        width: 260px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 32px 28px;
        background: #f8fbfd;
        border-left: 1px solid var(--line);
        border-radius: 0 24px 24px 0;
        text-align: center;
      }
      .beta-deal-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(34,79,104,0.04) 0%, transparent 60%);
        pointer-events: none;
      }
      .beta-deal-left { position: relative; }
      .beta-badge {
        display: inline-block;
        font-size: 10px;
        font-weight: 700;
        line-height: 1;
        color: #224f68;
        background: #d8f3f7;
        padding: 2px 6px;
        border-radius: 4px;
        letter-spacing: 0;
        text-transform: uppercase;
        margin-bottom: 10px;
      }
      .beta-deal-title-row {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 14px;
      }
      .beta-deal-title-row h2 { margin: 0; }
      .beta-counter {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 12px;
        font-weight: 600;
        color: #92400e;
        background: #fef3c7;
        border: 1px solid #fde68a;
        padding: 3px 10px;
        border-radius: 999px;
        white-space: nowrap;
        line-height: 1.4;
      }
      .beta-counter strong { color: #92400e; font-weight: 700; }
      .beta-deal-desc {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.65;
        margin: 0 0 24px;
      }
      .beta-deal-card h2 {
        font-size: clamp(22px, 2.5vw, 30px);
        font-weight: 800;
        color: var(--ink);
        letter-spacing: -0.03em;
        line-height: 1.15;
        margin-bottom: 0;
      }
      .beta-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 24px;
      }
      .beta-feature {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
      }
      .beta-feature::before {
        content: "";
        flex-shrink: 0;
        width: 16px; height: 16px;
        border-radius: 50%;
        background: rgba(52,211,153,0.15);
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9.5l3.5 3.5 6.5-7' stroke='%2334d399' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-size: 16px;
        background-repeat: no-repeat;
        background-position: center;
      }
      .beta-price-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 6px;
      }
      .beta-price {
        font-size: clamp(32px, 3.5vw, 44px);
        font-weight: 900;
        color: var(--ink);
        letter-spacing: -0.04em;
        line-height: 1.1;
        white-space: nowrap;
      }
      .beta-price sup {
        font-size: 22px;
        font-weight: 700;
        vertical-align: super;
        letter-spacing: 0;
      }
      .beta-price-alt {
        font-size: 13px;
        color: var(--muted);
        margin-top: 4px;
        margin-bottom: 20px;
      }
      .beta-cta-btn {
        display: block;
        background: var(--primary);
        color: white;
        font-size: 14px;
        font-weight: 700;
        padding: 13px 20px;
        border-radius: 10px;
        text-decoration: none;
        text-align: center;
        transition: background 0.15s;
        width: 100%;
      }
      .beta-cta-btn:hover { background: var(--primary-dark, #1a3d52); }
      .beta-stock {
        font-size: 12px;
        color: var(--muted);
        margin-top: 10px;
      }
      @media (max-width: 720px) {
        .beta-deal-card {
          padding: 28px 22px 0;
        }
        .beta-deal-right {
          position: static;
          width: auto;
          border-left: none;
          border-top: 1px solid var(--line);
          border-radius: 0 0 24px 24px;
          margin: 24px -22px 0;
          padding: 28px 22px;
          flex-direction: row;
          flex-wrap: wrap;
          justify-content: space-between;
          align-items: center;
          gap: 16px;
          text-align: left;
        }
        .beta-cta-btn { width: 100%; text-align: center; }
      }

      /* ── CTA ── */
      .cta-section {
        padding: 40px 0 80px;
      }

      .cta-card {
        position: relative;
        overflow: hidden;
        background: var(--sidebar-bg);
        border-radius: 24px;
        padding: 52px 48px;
        box-shadow: var(--shadow-lg);
      }

      .cta-card::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(34, 79, 104, 0.4) 0%,
          transparent 65%
        );
        pointer-events: none;
      }

      .cta-card::after {
        content: "";
        position: absolute;
        bottom: -60px;
        left: 30%;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(141, 218, 225, 0.15) 0%,
          transparent 65%
        );
        pointer-events: none;
      }

      .cta-inner {
        position: relative;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .cta-card h2 {
        font-size: clamp(36px, 5vw, 60px);
        font-weight: 800;
        color: white;
        letter-spacing: -0.05em;
        line-height: 1.05;
        text-wrap: balance;
        max-width: 14em;
      }

      .cta-card p:empty {
        display: none;
      }

      .cta-card p {
        margin-top: 16px;
        font-size: 17px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.7);
        max-width: 560px;
      }

      .cta-actions {
        margin-top: 28px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
      }

      .cta-micro {
        margin-top: 14px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        max-width: none;
      }

      .btn-white {
        background: white;
        color: var(--ink);
        border-color: white;
      }
      .btn-white:hover {
        background: #f1f5f9;
      }

      .btn-ghost {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
        color: white;
      }
      .btn-ghost:hover {
        background: rgba(255, 255, 255, 0.14);
      }

      /* ── Footer ── */
      .site-footer {
        padding: 22px 0 30px;
        border-top: 1px solid var(--line);
        color: var(--muted);
        font-size: 13px;
        background: white;
      }
      .site-footer .shell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
        /* Ensure links don't sit under the fixed widget FAB */
        padding-right: 80px;
      }
      .footer-brand {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        color: var(--muted);
      }
      .footer-links {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
      }
      .footer-links a {
        transition: color 120ms;
      }
      .footer-links a:hover {
        color: var(--ink);
      }

      /* ── Pricing ── */
      /* Pricing mobile tabs — hidden on desktop */
      .pricing-mobile-tabs {
        display: none;
        gap: 6px;
        background: #f1f5f9;
        border-radius: 14px;
        padding: 5px;
        margin-top: 28px;
      }
      .pricing-mobile-tab {
        flex: 1;
        padding: 9px 4px;
        font-size: 13px;
        font-weight: 600;
        color: var(--muted);
        background: none;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition:
          background 0.18s,
          color 0.18s;
        white-space: nowrap;
      }
      .pricing-mobile-tab.active {
        background: white;
        color: var(--primary);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
      }

      .pricing-section {
        padding: 80px 0;
      }

      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 48px;
        align-items: start;
      }

      /* ── Pricing comparison table ── */
      .pricing-grid {
        display: none;
      }

      .lp-compare-wrap {
        margin-top: 40px;
        border: 1px solid var(--line);
        border-radius: 16px;
        overflow: hidden;
        background: #fff;
      }
      .lp-compare-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        table-layout: fixed;
      }
      .lp-compare-table thead th:first-child {
        border-top-left-radius: 16px;
      }
      .lp-compare-table thead th:last-child {
        border-top-right-radius: 16px;
      }
      .lp-compare-table tfoot tr:last-child th:first-child {
        border-bottom-left-radius: 16px;
      }
      .lp-compare-table tfoot tr:last-child td:last-child {
        border-bottom-right-radius: 16px;
      }
      .lp-compare-table th,
      .lp-compare-table td {
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        padding: 12px 20px;
        font-size: 13.5px;
      }
      .lp-compare-table tr:last-child th,
      .lp-compare-table tr:last-child td {
        border-bottom: none;
      }
      .lp-compare-table thead th {
        background: #f8fafc;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-align: center;
        color: var(--text);
        padding: 16px 20px;
        vertical-align: bottom;
      }
      .lp-compare-table thead th:first-child {
        text-align: left;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--muted);
        width: 26%;
      }
      .lp-compare-table thead th.lp-col-featured {
        background: linear-gradient(
          180deg,
          rgba(231, 247, 250, 0.9) 0%,
          #f8fafc 100%
        );
        box-shadow: inset 0 0 0 1.5px rgba(34, 79, 104, 0.14);
      }
      .lp-compare-table tbody th {
        font-size: 13px;
        font-weight: 400;
        color: var(--muted);
        text-align: left;
      }
      .lp-compare-table tbody td {
        text-align: center;
        font-size: 13px;
        font-weight: 500;
        color: var(--text);
      }
      .lp-compare-table tbody tr:nth-child(odd) td,
      .lp-compare-table tbody tr:nth-child(odd) th {
        background: rgba(248, 250, 252, 0.5);
      }
      .lp-compare-table tbody td.lp-col-featured,
      .lp-compare-table tfoot td.lp-col-featured {
        background: rgba(231, 247, 250, 0.4);
        box-shadow:
          inset 1.5px 0 0 rgba(34, 79, 104, 0.1),
          inset -1.5px 0 0 rgba(34, 79, 104, 0.1);
      }
      .lp-compare-table tbody tr:nth-child(odd) td.lp-col-featured {
        background: rgba(214, 243, 248, 0.45);
      }
      .lp-compare-icon-yes {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: rgba(16, 185, 129, 0.12);
        color: #10b981;
      }
      .lp-compare-icon-no {
        color: #d1d5db;
        font-size: 14px;
      }
      .lp-compare-table tfoot th,
      .lp-compare-table tfoot td {
        background: #f8fafc;
        padding: 14px 20px;
        border-top: 1px solid rgba(226, 232, 240, 0.8);
        text-align: center;
      }
      .lp-compare-table tfoot th {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--muted);
        text-align: left;
      }
      .lp-compare-price {
        font-size: 20px;
        font-weight: 800;
        color: var(--ink);
        letter-spacing: -0.03em;
      }
      .lp-compare-price-period {
        font-size: 12px;
        font-weight: 500;
        color: var(--muted);
        margin-left: 2px;
      }
      .lp-compare-btn {
        display: inline-block;
        width: 100%;
        padding: 10px 0;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 600;
        text-align: center;
        background: var(--primary);
        color: #fff;
        transition: opacity 0.15s;
      }
      .lp-compare-btn:hover {
        opacity: 0.85;
      }
      .lp-compare-btn.lp-compare-btn-ghost {
        background: transparent;
        border: 1.5px solid var(--line);
        color: var(--text);
      }
      .lp-compare-btn.lp-compare-btn-ghost:hover {
        border-color: var(--primary);
        color: var(--primary);
        opacity: 1;
      }

/* ── Responsive ── */
      @media (max-width: 980px) {
        .hero-inner,
        .how-grid {
          grid-template-columns: 1fr;
        }
        .feature-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .pricing-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 14px;
        }
        .pricing-card {
          padding: 26px;
        }
        .pricing-card.featured {
          transform: none;
        }
        .nav-links {
          display: none;
        }
        .hero-copy h1 {
          max-width: none;
        }
        .hero-card-wrap {
          max-width: 520px;
        }
        .section {
          padding: 64px 0;
        }
      }

      @media (max-width: 640px) {
        .shell {
          width: calc(100vw - 32px);
        }

        /* Header */
        .nav {
          height: 58px;
          gap: 10px;
        }
        .brand {
          font-size: 16px;
        }
        .brand img {
          width: 28px;
          height: 28px;
        }
        .nav-actions .btn-secondary {
          display: none;
        }
        .lang-select {
          padding: 0 8px;
          height: 34px;
          font-size: 12px;
        }
        .btn-primary.btn-lg,
        .nav-actions .btn-primary {
          height: 36px;
          padding: 0 14px;
          font-size: 13px;
        }

        /* Hero */
        .hero {
          padding: 36px 0 28px;
        }
        .hero-copy p {
          font-size: 16px;
        }
        .hero-actions,
        .cta-actions {
          flex-direction: column;
        }
        .hero-actions .btn,
        .cta-actions .btn {
          width: 100%;
          justify-content: center;
        }
        .hero-trust {
          gap: 6px 14px;
          font-size: 12px;
        }

        /* Dashboard card in hero */
        .stat-strip {
          grid-template-columns: 1fr 1fr;
        }
        .stat-value {
          font-size: 20px;
        }
        .idea-row {
          grid-template-columns: 34px 1fr auto;
          gap: 8px;
          padding: 9px 10px;
        }

        /* Sections */
        .section {
          padding: 48px 0;
        }
        .section-header {
          margin-bottom: 36px;
        }
        .section-header p {
          font-size: 15px;
        }

        /* Features */
        .feature-grid {
          grid-template-columns: 1fr;
        }
        .feature-card {
          padding: 22px;
        }

        .band-stat-value {
          font-size: 26px;
        }

        /* How / Why cards */
        .how-card,
        .why-card {
          padding: 22px;
        }
        .code-block {
          font-size: 11.5px;
          padding: 14px 16px;
          overflow-x: auto;
        }

        /* Pricing */
        .pricing-section {
          padding: 48px 0;
        }
        .lp-compare-wrap {
          display: none;
        }
        .pricing-mobile-tabs {
          display: flex;
        }
        .pricing-grid {
          display: grid;
          grid-template-columns: 1fr;
          gap: 14px;
          margin-top: 16px;
        }
        .pricing-card {
          padding: 24px 80px 24px 24px;
          display: none;
        } /* right padding clears the fixed widget FAB */
        .pricing-card.mobile-active {
          display: block;
        }
        .pricing-card.featured {
          transform: none;
        }
        .pricing-price-amount {
          font-size: 34px;
        }
        .pricing-price { min-height: 0 !important; }
        .pricing-desc { min-height: 0 !important; margin-bottom: 16px; }

        /* CTA */
        .cta-section {
          padding: 24px 0 56px;
        }
        .cta-card {
          padding: 32px 22px;
          border-radius: 20px;
        }
        .cta-card h2 {
          max-width: none;
        }

        /* Footer */
        .site-footer .shell {
          flex-direction: column;
          align-items: flex-start;
          gap: 12px;
          padding-right: 0;
        }
        .landing-widget-demo {
          right: 14px;
          bottom: 14px;
          left: 14px;
          align-items: stretch;
        }
        .landing-widget-panel {
          width: 100%;
        }
        .landing-widget-actions {
          flex-direction: column;
        }
        .landing-widget-actions .btn {
          width: 100%;
        }
        .landing-widget-fab {
          align-self: flex-end;
        }
      }

      @media (max-width: 400px) {
        .pricing-price-amount {
          font-size: 30px;
        }
        .why-item {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
        }
      }

      .pricing-card {
        background: white;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 32px;
        box-shadow: var(--shadow-sm);
        position: relative;
      }

      .pricing-card.featured {
        border-color: var(--primary);
        box-shadow:
          0 0 0 2px var(--primary),
          0 12px 40px rgba(34, 79, 104, 0.18);
        background: #f8fbfd;
        transform: translateY(-6px);
      }

      .pricing-badge {
        position: absolute;
        top: -13px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary);
        color: white;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 4px 14px;
        border-radius: 999px;
        white-space: nowrap;
      }

      .pricing-tier {
        font-size: 13px;
        font-weight: 700;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 12px;
      }

      .pricing-price {
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
        column-gap: 6px;
        row-gap: 4px;
        margin-bottom: 0;
        min-height: 72px;
      }

      .pricing-price-amount {
        font-size: 40px;
        font-weight: 800;
        color: var(--ink);
        letter-spacing: -0.03em;
        line-height: 1;
      }

      .pricing-price-period {
        font-size: 14px;
        color: var(--muted);
        font-weight: 500;
        white-space: nowrap;
      }

      .pricing-price-period:empty {
        display: none;
      }

      .pricing-desc {
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 24px;
        line-height: 1.5;
        min-height: 4.5em;
      }

      .pricing-btn {
        display: block;
        width: 100%;
        padding: 11px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
        border: 1px solid var(--line);
        background: white;
        color: var(--ink);
        cursor: pointer;
        transition: all 0.15s;
        margin-bottom: 28px;
      }

      .pricing-btn:hover {
        background: var(--bg);
        border-color: #cbd5e1;
      }

      .pricing-card.featured .pricing-btn {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
        box-shadow:
          0 1px 3px rgba(34, 79, 104, 0.35),
          0 4px 12px rgba(34, 79, 104, 0.25);
      }

      .pricing-card.featured .pricing-btn:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
      }

      .pricing-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .pricing-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: var(--text);
        line-height: 1.4;
      }

      .pricing-features li::before {
        content: "";
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        margin-top: 1px;
        background: var(--primary-light);
        border-radius: 50%;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 9l3 3 5-5' stroke='%23224f68' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-size: cover;
      }

      .pricing-features li.excluded {
        color: var(--muted);
      }

      .pricing-features li.excluded::before {
        background: var(--red-bg);
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 5.5l7 7M12.5 5.5l-7 7' stroke='%23dc2626' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
        background-size: cover;
      }

      .pricing-divider {
        border: none;
        border-top: 1px solid var(--line);
        margin: 24px 0;
      }

      .landing-widget-demo {
        position: fixed;
        right: 22px;
        bottom: 22px;
        z-index: 70;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
        pointer-events: none;
      }
      .landing-widget-demo > * {
        pointer-events: auto;
      }

      .landing-widget-panel {
        width: min(360px, calc(100vw - 28px));
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(34, 79, 104, 0.14);
        border-radius: 20px;
        box-shadow:
          0 24px 60px rgba(15, 23, 42, 0.16),
          0 8px 20px rgba(15, 23, 42, 0.08);
        overflow: hidden;
        opacity: 0;
        transform: translateY(18px) scale(0.96);
        pointer-events: none;
        visibility: hidden;
        transition:
          opacity 220ms ease,
          transform 220ms ease,
          visibility 0s linear 220ms;
      }

      .landing-widget-panel.open {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
        visibility: visible;
        transition:
          opacity 220ms ease,
          transform 220ms ease,
          visibility 0s linear 0s;
      }

      .landing-widget-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 16px 16px 14px;
        border-bottom: 1px solid var(--line);
      }

      .landing-widget-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
      }

      .landing-widget-brand-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        background: linear-gradient(135deg, #e7f7fa 0%, #d7f0f3 100%);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .landing-widget-brand-icon svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
      }

      .landing-widget-title {
        font-size: 21px;
        font-weight: 800;
        line-height: 1.05;
        color: var(--ink);
        letter-spacing: -0.03em;
      }

      .landing-widget-sub {
        margin-top: 4px;
        font-size: 13px;
        line-height: 1.45;
        color: var(--muted);
      }

      .landing-widget-close {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        border: 1px solid var(--line);
        background: #f8fafc;
        color: var(--muted);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .landing-widget-close:hover {
        color: var(--ink);
        border-color: #cbd5e1;
      }

      .landing-widget-close svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
      }

      .landing-widget-body {
        padding: 16px;
      }

      .landing-widget-copy {
        font-size: 15px;
        line-height: 1.65;
        color: var(--text);
      }

      .landing-widget-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
      }

      .landing-widget-actions .btn {
        flex: 1 1 auto;
        min-width: 0;
        white-space: nowrap;
      }

      .landing-widget-footer {
        padding: 12px 16px;
        border-top: 1px solid var(--line);
        font-size: 12px;
        font-weight: 700;
        color: #8ca0ba;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .landing-widget-footer svg {
        width: 14px;
        height: 14px;
        fill: #7cab2f;
      }

      .landing-widget-fab {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        border: none;
        background: var(--primary);
        color: white;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 24px rgba(34, 79, 104, 0.34);
        cursor: pointer;
      }

      .landing-widget-fab:hover {
        background: var(--primary-dark);
      }

      .landing-widget-fab svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
      }

      /* ── Widget Demo ── */
      .widget-demo-section { background: var(--bg); border-top: 1px solid var(--line); }

      .widget-demo-wrap {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 32px;
        align-items: stretch;
        margin-top: 48px;
      }

      .demo-controls { display: flex; flex-direction: column; gap: 24px; }

      .demo-control-group { display: flex; flex-direction: column; gap: 10px; }

      .demo-control-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
      }

      .demo-type-grid { display: flex; flex-direction: column; gap: 6px; }

      .demo-type-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 14px;
        border-radius: 10px;
        border: 1.5px solid var(--line);
        background: white;
        color: var(--text);
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        text-align: left;
        transition: border-color 0.15s, background 0.15s, color 0.15s;
      }
      .demo-type-btn svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.5; }
      .demo-type-btn.active { border-color: var(--primary); background: rgba(34,79,104,0.06); color: var(--primary); }
      .demo-type-btn.active svg { opacity: 1; }
      .demo-type-btn:hover:not(.active) { border-color: #c5cdd5; background: var(--surface); }

      .demo-colors { display: flex; gap: 8px; flex-wrap: wrap; }
      .demo-color-btn {
        width: 26px; height: 26px;
        border-radius: 50%;
        border: 2.5px solid transparent;
        background: var(--c);
        cursor: pointer;
        transition: transform 0.15s, border-color 0.15s;
      }
      .demo-color-btn.active { border-color: var(--ink); transform: scale(1.2); }
      .demo-color-btn:hover:not(.active) { transform: scale(1.1); }

      .demo-pos-btns { display: flex; gap: 8px; }
      .demo-pos-btn {
        flex: 1;
        padding: 9px;
        border-radius: 8px;
        border: 1.5px solid var(--line);
        background: white;
        font-size: 12px;
        font-weight: 600;
        color: var(--text);
        cursor: pointer;
        transition: border-color 0.15s, background 0.15s, color 0.15s;
      }
      .demo-pos-btn.active { border-color: var(--primary); background: rgba(34,79,104,0.06); color: var(--primary); }

      /* Browser */
      .demo-browser {
        border-radius: 16px;
        border: 1.5px solid var(--line);
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0,0,0,0.07);
        display: flex;
        flex-direction: column;
        background: #f0f2f5;
      }
      .demo-browser-bar {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 14px;
        background: white;
        border-bottom: 1px solid var(--line);
      }
      .demo-browser-dots { display: flex; gap: 5px; }
      .demo-browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
      .demo-browser-dots span:nth-child(1) { background: #f87171; }
      .demo-browser-dots span:nth-child(2) { background: #fbbf24; }
      .demo-browser-dots span:nth-child(3) { background: #34d399; }
      .demo-browser-url {
        flex: 1;
        text-align: center;
        font-size: 11px;
        color: var(--muted);
        background: var(--surface);
        border-radius: 6px;
        padding: 3px 12px;
        max-width: 150px;
        margin: 0 auto;
      }
      .demo-browser-body { position: relative; flex: 1; min-height: 400px; overflow: hidden; }

      /* Fake shop */
      .demo-shop { padding: 14px; }
      .demo-shop-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 10px;
        border-bottom: 1px solid #f0f2f5;
        margin-bottom: 10px;
      }
      .demo-skeleton {
        background: #dde1e8;
        border-radius: 4px;
        animation: demoPulse 1.8s ease-in-out infinite;
      }
      @keyframes demoPulse { 0%,100%{opacity:1} 50%{opacity:.45} }
      .demo-shop-logo { font-size: 13px; font-weight: 800; color: #1e293b; letter-spacing: -0.04em; }
      .demo-shop-logo-dot { color: #224f68; }
      .demo-nav-link { font-size: 9px; color: #94a3b8; font-weight: 500; }
      .demo-nav-sale { color: #f87171; }
      .demo-shop-chips { display: flex; gap: 5px; margin-bottom: 12px; }
      .demo-chip { font-size: 8px; font-weight: 500; color: #94a3b8; background: #f1f5f9; border-radius: 20px; padding: 2px 8px; }
      .demo-chip-active { color: #224f68; background: #dbeafe; font-weight: 600; }
      .demo-shop-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
      .demo-product-card { background: white; border-radius: 8px; padding: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
      .demo-product-img { width: 100%; height: 68px; border-radius: 5px; }
      .demo-product-name { font-size: 9.5px; font-weight: 500; color: #475569; margin-top: 7px; line-height: 1.3; }
      .demo-product-stars { font-size: 8px; color: #fbbf24; margin-top: 3px; line-height: 1; }
      .demo-product-price { font-size: 10px; font-weight: 700; color: #1e293b; margin-top: 3px; }

      /* Widget overlay */
      .demo-widget-wrap {
        position: absolute;
        bottom: 18px;
        left: calc(100% - 258px);
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        transition: left 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
        z-index: 10;
      }
      .demo-widget-wrap.pos-left { left: 18px; align-items: flex-start; }

      .demo-widget-trigger {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 9px 16px;
        border-radius: 50px;
        border: none;
        color: white;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 4px 14px rgba(0,0,0,0.2);
        transition: transform 0.15s;
        white-space: nowrap;
      }
      .demo-widget-trigger:hover { transform: scale(1.04); }

      .demo-widget-panel {
        background: white;
        border-radius: 14px;
        box-shadow: 0 8px 28px rgba(0,0,0,0.14);
        width: 240px;
        overflow: hidden;
      }
      .demo-panel-header {
        padding: 12px 14px;
        font-size: 13px;
        font-weight: 700;
        color: white;
      }
      .demo-panel-body { padding: 12px; }

      /* Ideas */
      .demo-idea-row { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid #f0f2f5; }
      .demo-idea-row:last-child { border-bottom: none; }
      .demo-upvote {
        display: flex; flex-direction: column; align-items: center;
        min-width: 30px; padding: 3px 5px; border-radius: 6px;
        border: 1.5px solid #e5e7eb; font-size: 10px; font-weight: 700;
        color: #9ca3af; cursor: pointer; background: white;
        transition: border-color 0.15s, color 0.15s; line-height: 1.3;
      }
      .demo-upvote:hover { border-color: var(--demo-color,#224f68); color: var(--demo-color,#224f68); }
      .demo-idea-text { font-size: 11px; color: var(--ink); line-height: 1.4; }

      /* Poll */
      .demo-poll-q { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.4; }
      .demo-poll-opt { margin-bottom: 7px; }
      .demo-poll-opt-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--text); margin-bottom: 3px; }
      .demo-poll-bar-wrap { height: 5px; background: #f0f2f5; border-radius: 3px; overflow: hidden; }
      .demo-poll-bar { height: 100%; border-radius: 3px; transition: width 0.4s; }

      /* Open question */
      .demo-oq-q { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
      .demo-oq-textarea {
        width: 100%; height: 66px;
        border: 1.5px solid #e5e7eb; border-radius: 8px;
        padding: 7px 9px; font-size: 11px; color: var(--ink);
        resize: none; font-family: inherit; outline: none; box-sizing: border-box;
      }
      .demo-oq-textarea:focus { border-color: var(--demo-color,#224f68); }
      .demo-oq-btn {
        display: block; width: 100%; margin-top: 7px;
        padding: 8px; border-radius: 8px; border: none;
        color: white; font-size: 12px; font-weight: 600;
        cursor: pointer; transition: opacity 0.15s; font-family: inherit;
      }
      .demo-oq-btn:hover { opacity: 0.88; }

      .demo-icon-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
      .demo-icon-btn {
        display: flex; align-items: center; justify-content: center;
        width: 38px; height: 38px; border-radius: 8px;
        border: 1.5px solid var(--line); background: white;
        color: var(--muted); cursor: pointer;
        transition: border-color 0.15s, color 0.15s, background 0.15s;
      }
      .demo-icon-btn svg { width: 16px; height: 16px; }
      .demo-icon-btn.active { border-color: var(--primary); background: rgba(34,79,104,0.06); color: var(--primary); }
      .demo-icon-btn:hover:not(.active) { border-color: #c5cdd5; color: var(--ink); }

      .demo-text-input {
        width: 100%; padding: 9px 12px; border-radius: 8px;
        border: 1.5px solid var(--line); font-size: 13px;
        color: var(--ink); font-family: inherit; outline: none;
        box-sizing: border-box; transition: border-color 0.15s;
      }
      .demo-text-input:focus { border-color: var(--primary); }

      .demo-toggle-btn {
        width: 100%; padding: 10px; border-radius: 8px;
        border: 1.5px solid var(--line); background: white;
        font-size: 13px; font-weight: 600; color: var(--text);
        cursor: pointer; transition: border-color 0.15s, background 0.15s, color 0.15s;
      }
      .demo-toggle-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(34,79,104,0.04); }

      .demo-widget-panel {
        transition: opacity 0.2s, transform 0.2s;
        transform-origin: bottom right;
      }
      .demo-widget-panel.hidden {
        opacity: 0; pointer-events: none; transform: scale(0.92) translateY(6px);
      }
      .demo-widget-wrap.pos-left .demo-widget-panel { transform-origin: bottom left; }

      @media (max-width: 860px) {
        .widget-demo-wrap { grid-template-columns: 1fr; }
        .demo-browser-body { min-height: 340px; }
      }

      /* ── FAQ ── */
      .faq-list { display: flex; flex-direction: column; gap: 0; }
      .faq-item {
        border-bottom: 1px solid var(--line);
      }
      .faq-item:first-child { border-top: 1px solid var(--line); }
      .faq-question {
        width: 100%; display: flex; align-items: center; justify-content: space-between;
        gap: 16px; padding: 20px 4px; background: none; border: none;
        cursor: pointer; text-align: left;
        font-size: 16px; font-weight: 600; color: var(--ink); font-family: inherit;
      }
      .faq-question:hover { color: var(--primary); }
      .faq-chevron {
        flex-shrink: 0; color: var(--muted);
        transition: transform 0.2s;
      }
      .faq-item.open .faq-chevron { transform: rotate(180deg); }
      .faq-answer {
        display: none; padding: 0 4px 20px;
        font-size: 15px; line-height: 1.7; color: var(--muted);
      }
      .faq-item.open .faq-answer { display: block; }
      .faq-answer p { margin: 0; }
