:root {
      --bg: #0a0a0a;
      --panel: rgba(22, 22, 22, .92);
      --panel-2: rgba(14, 14, 14, .88);
      --text: #ffffff;
      --muted: #a0a0a0;
      --accent: #ffd700;
      --accent-2: #ffbf00;
      --line: rgba(255, 255, 255, .08);
      --ok: #0f9d58;
      --warn: #ff9800;
      --shadow: 0 24px 64px rgba(0, 0, 0, .45);
      font-family: "Inter", sans-serif;
      --safe-top: env(safe-area-inset-top, 0px);
      --safe-right: env(safe-area-inset-right, 0px);
      --safe-bottom: env(safe-area-inset-bottom, 0px);
      --safe-left: env(safe-area-inset-left, 0px);
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
      background:
        radial-gradient(circle at 16% 8%, rgba(255, 215, 0, .10), transparent 24%),
        radial-gradient(circle at 84% 12%, rgba(255, 215, 0, .06), transparent 18%),
        radial-gradient(circle at 50% 118%, rgba(255, 215, 0, .05), transparent 28%),
        linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    }
    .bg-ambience {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      overflow: hidden;
    }
    .bg-orb {
      position: absolute;
      border-radius: 999px;
      filter: blur(10px);
      opacity: .72;
    }
    .bg-orb.one {
      top: 6%;
      left: -8%;
      width: 340px;
      height: 340px;
      background: radial-gradient(circle, rgba(255, 215, 0, .13), rgba(255, 215, 0, .03) 48%, transparent 72%);
      animation: ambientFloatOne 18s ease-in-out infinite;
    }
    .bg-orb.two {
      top: 32%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 236, 179, .10), rgba(255, 215, 0, .03) 44%, transparent 74%);
      animation: ambientFloatTwo 22s ease-in-out infinite;
    }
    .bg-orb.three {
      bottom: -80px;
      left: 22%;
      width: 420px;
      height: 220px;
      background: radial-gradient(circle, rgba(255, 215, 0, .08), rgba(255, 215, 0, .02) 52%, transparent 78%);
      animation: ambientFloatThree 20s ease-in-out infinite;
    }
    .bg-grain {
      position: absolute;
      inset: 0;
      opacity: .08;
      background-image:
        radial-gradient(rgba(255,255,255,.28) 0.55px, transparent 0.55px),
        radial-gradient(rgba(255,255,255,.18) 0.45px, transparent 0.45px);
      background-position: 0 0, 14px 14px;
      background-size: 28px 28px;
      mix-blend-mode: soft-light;
    }
    @keyframes ambientFloatOne {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
      50% { transform: translate3d(28px, 18px, 0) scale(1.06); }
    }
    @keyframes ambientFloatTwo {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
      50% { transform: translate3d(-26px, 24px, 0) scale(1.08); }
    }
    @keyframes ambientFloatThree {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
      50% { transform: translate3d(18px, -14px, 0) scale(1.04); }
    }
    .app {
      max-width: 1120px;
      margin: 0 auto;
      padding:
        max(0px, var(--safe-top))
        calc(14px + var(--safe-right))
        calc(36px + var(--safe-bottom))
        calc(14px + var(--safe-left));
    }
    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: calc(20px + var(--safe-top)) 0 14px;
      background: rgba(10,10,10,.78);
      backdrop-filter: blur(14px);
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--accent);
      font-weight: 800;
      letter-spacing: -.04em;
      text-transform: uppercase;
      font-size: 24px;
    }
    .logo-mark {
      width: 64px;
      height: 64px;
      object-fit: contain;
      filter:
        drop-shadow(0 0 22px rgba(255, 215, 0, .22))
        drop-shadow(0 14px 28px rgba(255, 215, 0, .24));
      flex: 0 0 auto;
    }
    .logo-word {
      display: inline-flex;
      flex-direction: column;
      line-height: 1;
    }
    .logo-word small {
      color: var(--text);
      font-size: 11px;
      letter-spacing: .18em;
      margin-top: 4px;
    }
    .hero, .panel, .plan-card, .stat-card {
      background: var(--panel);
      border: 1px solid #222;
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }
    .hero {
      border-radius: 30px;
      padding: 42px 36px;
      position: relative;
      overflow: hidden;
      min-height: 70vh;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
      gap: 28px;
      align-items: center;
      animation: heroRise .85s cubic-bezier(.2, .8, .2, 1);
    }
    .hero::after {
      content: "";
      position: absolute;
      right: -60px;
      top: -60px;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(255,215,0,.18), transparent 60%);
    }
    h1 {
      margin: 0 0 16px;
      font-size: clamp(40px, 8vw, 72px);
      line-height: 1.05;
      letter-spacing: -.05em;
      background: linear-gradient(180deg, #fff 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: glowShift 5s ease-in-out infinite alternate;
    }
    @keyframes heroRise {
      from {
        opacity: 0;
        transform: translateY(20px) scale(.985);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }
    @keyframes glowShift {
      from {
        filter: drop-shadow(0 0 0 rgba(255,215,0,0));
      }
      to {
        filter: drop-shadow(0 0 18px rgba(255,215,0,.12));
      }
    }
    h2, h3, h4, p { margin: 0; }
    p { color: var(--muted); }
    .hero-subtitle {
      max-width: 680px;
      font-size: clamp(16px, 2vw, 20px);
      line-height: 1.7;
    }
    .hero-copy {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
    .hero-brand {
      display: inline-flex;
      flex-direction: row;
      align-items: center;
      gap: 18px;
      margin-bottom: 18px;
    }
    .hero-logo {
      width: clamp(128px, 18vw, 164px);
      height: auto;
      object-fit: contain;
      filter:
        drop-shadow(0 0 30px rgba(255, 215, 0, .2))
        drop-shadow(0 20px 48px rgba(255, 215, 0, .24));
      margin-bottom: 0;
    }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,215,0,.14);
      background: rgba(255,255,255,.02);
      color: var(--accent);
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .hero-kicker::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 18px rgba(255, 215, 0, .45);
    }
    .hero-actions, .tabs, .grid, .stats, .inline-actions, .hero-features { display: flex; gap: 12px; flex-wrap: wrap; }
    .hero-actions { margin-top: 28px; justify-content: flex-start; }
    .hero-features {
      margin-top: 28px;
      justify-content: flex-start;
      gap: 12px;
    }
    .hero-feature {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-size: 13px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
    }
    .hero-feature-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 16px rgba(255, 215, 0, .45);
      animation: pulseDot 2.6s ease-in-out infinite;
    }
    @keyframes pulseDot {
      0%, 100% { transform: scale(1); opacity: .9; }
      50% { transform: scale(1.18); opacity: 1; }
    }
    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 26px;
      width: min(100%, 620px);
    }
    .hero-proof-card {
      padding: 16px 18px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    }
    .hero-proof-value {
      display: block;
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -.05em;
      color: var(--text);
      margin-bottom: 6px;
    }
    .hero-proof-label {
      display: block;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }
    .hero-showcase {
      position: relative;
      z-index: 1;
      border-radius: 28px;
      padding: 26px;
      border: 1px solid rgba(255,255,255,.08);
      background:
        radial-gradient(circle at top right, rgba(255,215,0,.12), transparent 28%),
        linear-gradient(180deg, rgba(24,24,24,.98), rgba(15,15,15,.96));
      box-shadow: 0 24px 54px rgba(0,0,0,.42);
    }
    .hero-showcase-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 20px;
    }
    .hero-showcase-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,215,0,.1);
      color: var(--accent);
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .hero-showcase-badge::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
    }
    .hero-showcase-price {
      font-size: 13px;
      color: var(--muted);
    }
    .hero-showcase h3 {
      font-size: 28px;
      line-height: 1.08;
      margin-bottom: 10px;
    }
    .hero-showcase p {
      line-height: 1.7;
    }
    .hero-showcase-list {
      display: grid;
      gap: 12px;
      margin: 22px 0;
    }
    .hero-showcase-item {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      padding: 12px;
      border-radius: 18px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.06);
    }
    .hero-showcase-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,215,0,.12);
      color: var(--accent);
      font-size: 18px;
      font-weight: 800;
    }
    .hero-showcase-item strong {
      display: block;
      margin-bottom: 4px;
      font-size: 14px;
      color: var(--text);
    }
    .hero-showcase-item span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }
    .hero-mini-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 18px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.07);
    }
    .tabs {
      margin: 22px 0 30px;
      justify-content: center;
    }
    .tab, button, .btn-link {
      border: 0;
      cursor: pointer;
      border-radius: 999px;
      padding: 13px 20px;
      min-height: 48px;
      font: inherit;
      transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
    }
    .btn-link {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }
    button:hover, .tab:hover, .btn-link:hover { transform: translateY(-2px); }
    .tab.active, .btn-primary {
      background: var(--accent);
      color: #000;
      box-shadow: 0 14px 34px rgba(255, 215, 0, .22);
    }
    .tab, .btn-secondary {
      background: transparent;
      color: var(--accent);
      border: 1px solid var(--line);
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 22px;
    }
    .plans-shell {
      margin-top: 10px;
      display: grid;
      gap: 22px;
    }
    .plans-intro {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 18px;
      align-items: stretch;
    }
    .plans-lead,
    .plans-highlight-row,
    .plan-card,
    .panel {
      border-radius: 24px;
      padding: 24px;
    }
    .plans-lead {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 88% 14%, rgba(255,215,0,.16), transparent 24%),
        radial-gradient(circle at 12% 108%, rgba(255,215,0,.08), transparent 30%),
        linear-gradient(180deg, rgba(20,20,20,.99), rgba(12,12,12,.96));
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: 0 28px 72px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255,255,255,.04);
    }
    .plans-lead::before {
      content: "";
      position: absolute;
      inset: auto -70px -110px auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,215,0,.2), transparent 70%);
      pointer-events: none;
    }
    .plans-lead::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(255,255,255,.035), transparent 32%),
        linear-gradient(0deg, rgba(255,215,0,.02), transparent 44%);
      pointer-events: none;
    }
    .plans-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 12px;
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }
    .plans-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      color: rgba(255,255,255,.84);
      font-size: 12px;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .plans-lead h3 {
      position: relative;
      z-index: 1;
      font-size: 34px;
      line-height: .98;
      margin: 10px 0 14px;
      max-width: 9ch;
      letter-spacing: -.05em;
      text-wrap: balance;
    }
    .plans-lead p {
      position: relative;
      z-index: 1;
      max-width: 52ch;
      color: var(--muted);
      margin-bottom: 0;
      font-size: 15px;
      line-height: 1.62;
    }
    .plans-stat-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
    }
    .plans-stat {
      padding: 14px 16px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
      border: 1px solid rgba(255,255,255,.08);
      backdrop-filter: blur(10px);
      position: relative;
      z-index: 1;
    }
    .plans-stat strong {
      display: block;
      font-size: 20px;
      letter-spacing: -.04em;
      margin-bottom: 6px;
      color: var(--accent);
    }
    .plans-stat span {
      display: block;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.45;
    }
    .plans-highlight-row {
      display: grid;
      gap: 12px;
      background: linear-gradient(180deg, rgba(20,20,20,.96), rgba(15,15,15,.94));
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: var(--shadow);
    }
    .plans-highlight {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .plans-highlight:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }
    .plans-highlight:first-child {
      padding-top: 0;
    }
    .plans-highlight-index {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,215,0,.1);
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .06em;
    }
    .plans-highlight strong,
    .plan-top strong,
    .plan-price-note strong {
      display: block;
    }
    .plans-highlight span,
    .plan-top span,
    .plan-price-note span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }
    .plan-card, .panel {
      border-radius: 24px;
      padding: 24px;
    }
    .plan-card {
      position: relative;
      overflow: hidden;
      transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
    }
    .plan-card:hover {
      transform: translateY(-8px);
      border-color: var(--accent);
      box-shadow: 0 28px 64px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 215, 0, .08);
    }
    .plan-card.popular {
      border-color: var(--accent);
      transform: translateY(-4px);
    }
    .plan-card.popular::after {
      content: "POPULAR";
      position: absolute;
      top: 22px;
      right: -34px;
      background: var(--accent);
      color: #000;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .14em;
      padding: 6px 38px;
      transform: rotate(45deg);
      box-shadow: 0 12px 24px rgba(255, 215, 0, .2);
    }
    .plan-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(255,215,0,.1), transparent 34%);
      pointer-events: none;
      transition: opacity .28s ease, transform .28s ease;
    }
    .plan-card:hover::before {
      opacity: 1;
      transform: scale(1.04);
    }
    .plan-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 12px;
    }
    .plan-brow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: rgba(255,255,255,.56);
      margin-top: 6px;
    }
    .plan-tier {
      min-width: 86px;
      padding: 12px 14px;
      border-radius: 18px;
      background: rgba(255,215,0,.08);
      border: 1px solid rgba(255,215,0,.14);
      text-align: right;
    }
    .plan-tier strong {
      font-size: 13px;
      color: var(--accent);
      margin-bottom: 4px;
    }
    .plan-tier span {
      display: block;
      font-size: 11px;
      color: rgba(255,255,255,.58);
      line-height: 1.35;
    }
    .plan-card h3, .panel h3 { font-size: 21px; margin-bottom: 8px; }
    .section-head {
      text-align: center;
      margin-bottom: 22px;
    }
    .section-head h2 {
      font-size: 32px;
      margin-bottom: 10px;
    }
    .section-head span { color: var(--accent); }
    .eyebrow {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--accent);
      margin-bottom: 10px;
    }
    .price {
      font-size: 38px;
      font-weight: 800;
      margin: 10px 0 4px;
      letter-spacing: -.04em;
    }
    .plan-price-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 14px;
      margin: 10px 0 12px;
    }
    .plan-price-note {
      text-align: right;
    }
    .kicker {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 14px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255,215,0,.08);
      color: var(--accent);
      font-size: 12px;
      margin-bottom: 12px;
    }
    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
    }
    .feature-list li {
      display: flex;
      gap: 10px;
      align-items: center;
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 10px;
    }
    .plan-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .plan-footer-copy {
      font-size: 12px;
      color: rgba(255,255,255,.56);
      line-height: 1.45;
      max-width: 24ch;
    }
    .check {
      color: var(--accent);
      font-weight: 700;
    }
    .panel-stack {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
    }
    .stat-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,215,0,.24);
    }
    .install-shell {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .install-app-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    .install-app-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      min-height: 88px;
      border-radius: 22px;
      padding: 18px 20px;
      border: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(180deg, rgba(29, 37, 58, .96), rgba(20, 26, 43, .96));
      color: var(--text);
      box-shadow: var(--shadow);
      cursor: pointer;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .install-app-card:hover,
    .install-app-card.active {
      transform: translateY(-3px);
      border-color: rgba(96, 176, 255, .45);
      box-shadow: 0 18px 34px rgba(0, 0, 0, .36), 0 0 0 1px rgba(96, 176, 255, .14);
    }
    .install-app-card.active {
      background: linear-gradient(180deg, rgba(28, 62, 96, .98), rgba(24, 49, 80, .98));
    }
    .install-app-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }
    .install-dot {
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background: #ffc94d;
      box-shadow: 0 0 18px rgba(255, 201, 77, .48);
      flex: 0 0 auto;
    }
    .install-app-name {
      font-size: 18px;
      color: #d8e3f0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .install-app-icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      color: rgba(230, 238, 247, .42);
      font-size: 29px;
      font-weight: 800;
      letter-spacing: -.04em;
      flex: 0 0 auto;
    }
    .install-app-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 18px;
      display: block;
    }
    .install-app-card.active .install-app-icon {
      color: rgba(230, 238, 247, .76);
      border-color: rgba(96, 176, 255, .28);
    }
    .install-panel {
      border-radius: 28px;
      padding: 28px;
      background: linear-gradient(180deg, rgba(28, 35, 54, .98), rgba(20, 27, 43, .98));
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: var(--shadow);
    }
    .install-panel-top {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 18px;
    }
    .install-badge {
      width: 68px;
      height: 68px;
      border-radius: 999px;
      border: 1px solid rgba(96, 176, 255, .32);
      background: rgba(26, 59, 89, .66);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #a8d1ff;
      font-size: 28px;
      flex: 0 0 auto;
      box-shadow: inset 0 0 0 1px rgba(96, 176, 255, .08);
    }
    .install-badge img {
      width: 42px;
      height: 42px;
      object-fit: cover;
      border-radius: 14px;
      display: block;
    }
    .install-panel h3 {
      font-size: 19px;
      margin-bottom: 10px;
      color: #dce8f6;
    }
    .install-panel p {
      color: #a9b7c7;
      line-height: 1.6;
    }
    .install-links {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      max-width: 360px;
      margin-left: 94px;
    }
    .install-link {
      min-height: 56px;
      border-radius: 20px;
      border: 1px solid rgba(74, 136, 199, .62);
      background: rgba(18, 34, 57, .26);
      color: #78bcff;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 20px;
      font-size: 18px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .install-link:hover {
      transform: translateY(-2px);
      border-color: rgba(120, 188, 255, .9);
      box-shadow: 0 14px 24px rgba(0, 0, 0, .22);
    }
    .order-item, .pending-item {
      padding: 18px 0;
      border-top: 1px solid var(--line);
    }
    .order-item:first-child, .pending-item:first-child { border-top: 0; padding-top: 0; }
    .status {
      display: inline-block;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      background: rgba(15,157,88,.12);
      color: var(--ok);
    }
    .status.pending {
      background: rgba(239,108,0,.12);
      color: var(--warn);
    }
    .status.cancelled {
      background: rgba(148,163,184,.16);
      color: var(--muted);
    }
    textarea, input, select {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 12px 14px;
      font: inherit;
      background: rgba(255,255,255,.03);
      color: var(--text);
    }
    label {
      display: block;
      margin-bottom: 8px;
      color: var(--text);
      font-size: 13px;
    }
    textarea { min-height: 110px; resize: vertical; }
    .form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
    }
    .dashboard-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 18px;
      margin-bottom: 18px;
    }
    .vault-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 18px;
      margin-bottom: 18px;
    }
    .support-shell {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 18px;
    }
    .support-layout {
      display: grid;
      grid-template-columns: 320px minmax(0, 1fr);
      gap: 18px;
    }
    .support-thread-list {
      display: grid;
      gap: 10px;
    }
    .support-thread-item {
      width: 100%;
      text-align: left;
      padding: 14px 16px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
      color: var(--text);
    }
    .support-thread-item.active {
      border-color: rgba(255,215,0,.22);
      background: rgba(255,215,0,.06);
      box-shadow: 0 10px 24px rgba(255,215,0,.08);
    }
    .support-thread-item strong {
      display: block;
      margin-bottom: 6px;
      font-size: 14px;
    }
    .support-thread-item span {
      display: block;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.45;
    }
    .support-chat {
      border-radius: 24px;
      padding: 20px;
      border: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(180deg, rgba(20,20,20,.98), rgba(14,14,14,.96));
      box-shadow: var(--shadow);
    }
    .support-chat-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }
    .support-chat-head h3 {
      font-size: 22px;
      margin-bottom: 6px;
    }
    .support-meta {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.45;
    }
    .support-messages {
      display: grid;
      gap: 10px;
      max-height: 460px;
      overflow-y: auto;
      padding-right: 4px;
      margin-bottom: 14px;
    }
    .support-bubble {
      max-width: min(88%, 560px);
      padding: 13px 15px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.07);
      background: rgba(255,255,255,.04);
      justify-self: start;
    }
    .support-bubble.admin {
      justify-self: end;
      background: rgba(255,215,0,.09);
      border-color: rgba(255,215,0,.16);
    }
    .support-bubble strong {
      display: block;
      font-size: 12px;
      margin-bottom: 6px;
      color: var(--text);
    }
    .support-bubble p {
      margin: 0;
      white-space: pre-wrap;
      line-height: 1.6;
      color: var(--text);
      font-size: 14px;
    }
    .support-bubble time {
      display: block;
      margin-top: 8px;
      font-size: 11px;
      color: var(--muted);
    }
    .support-compose textarea {
      min-height: 120px;
    }
    .support-compose input[type="file"] {
      display: none;
    }
    .support-compose-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 12px;
    }
    .support-attachment-preview {
      margin-top: 12px;
      padding: 12px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
    }
    .support-attachment-preview strong {
      display: block;
      font-size: 12px;
      margin-bottom: 8px;
      color: var(--text);
    }
    .support-attachment-preview img,
    .support-attachment img {
      display: block;
      width: 100%;
      max-width: 280px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.08);
      margin-top: 8px;
      object-fit: cover;
      background: rgba(0,0,0,.24);
    }
    .support-attachment {
      margin-top: 10px;
    }
    .support-attachment a {
      color: var(--accent);
      text-decoration: none;
      font-size: 12px;
    }
    .support-attachment a:hover {
      text-decoration: underline;
    }
    .support-unread {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 22px;
      height: 22px;
      padding: 0 8px;
      border-radius: 999px;
      background: rgba(255,215,0,.14);
      color: var(--accent);
      font-size: 11px;
      font-weight: 700;
      margin-left: 8px;
    }
    .vault-card {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      padding: 22px;
      border: 1px solid rgba(255,255,255,.08);
      background:
        radial-gradient(circle at top right, rgba(255,215,0,.1), transparent 34%),
        linear-gradient(180deg, rgba(20,20,20,.98), rgba(14,14,14,.96));
      box-shadow: var(--shadow);
    }
    .vault-card::before {
      content: "";
      position: absolute;
      inset: auto -70px -90px auto;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,215,0,.14), transparent 72%);
      pointer-events: none;
    }
    .vault-card h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }
    .vault-card p {
      line-height: 1.65;
    }
    .vault-meta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,215,0,.08);
      color: var(--accent);
      font-size: 12px;
      margin-bottom: 14px;
    }
    .profile-hero {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      margin-bottom: 18px;
    }
    .profile-card {
      border-radius: 24px;
      padding: 24px;
      border: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(180deg, rgba(20,20,20,.98), rgba(14,14,14,.96));
      box-shadow: var(--shadow);
    }
    .profile-card h3 {
      font-size: 28px;
      margin-bottom: 10px;
    }
    .profile-list {
      display: grid;
      gap: 12px;
      margin-top: 16px;
    }
    .profile-list-item {
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.06);
    }
    .profile-list-item strong {
      display: block;
      margin-bottom: 4px;
      font-size: 13px;
      color: var(--text);
    }
    .profile-list-item span {
      display: block;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.55;
    }
    .key-box {
      margin-top: 12px;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.06);
    }
    .key-box strong {
      display: block;
      margin-bottom: 8px;
      font-size: 13px;
      color: var(--text);
    }
    .key-hint {
      display: block;
      margin-bottom: 10px;
      font-size: 11px;
      color: rgba(255,255,255,.52);
      letter-spacing: .02em;
    }
    .key-tile {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 12px;
      align-items: start;
      padding: 14px 14px 12px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.025);
      cursor: pointer;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .key-tile:hover {
      transform: translateY(-1px);
      border-color: rgba(255,215,0,.22);
      background: rgba(255,255,255,.04);
    }
    .key-box code {
      display: block;
      white-space: pre-wrap;
      word-break: break-all;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.6;
      user-select: all;
      -webkit-user-select: all;
      transition: color .16s ease;
      margin: 0;
    }
    .key-tile:hover code {
      color: var(--text);
    }
    .key-tile-copy {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,215,0,.1);
      border: 1px solid rgba(255,215,0,.14);
      color: var(--accent);
      font-size: 15px;
      flex: 0 0 auto;
    }
    .key-box-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 12px;
    }
    .key-box-actions .btn-secondary,
    .key-box-actions .btn-primary,
    .key-box-actions .btn-link {
      min-width: 0;
    }
    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 14px;
    }
    .stat-card {
      border-radius: 22px;
      padding: 22px;
    }
    .stat-card h3 {
      font-size: 34px;
      margin-top: 8px;
    }
    .small { font-size: 13px; color: var(--muted); }
    .delivery {
      white-space: pre-wrap;
      padding: 14px;
      border-radius: 16px;
      background: rgba(255, 215, 0, .06);
      margin-top: 12px;
      border: 1px solid rgba(255, 215, 0, .08);
    }
    .hidden { display: none; }
    .toast {
      position: fixed;
      left: 50%;
      bottom: calc(18px + var(--safe-bottom));
      transform: translateX(-50%);
      background: #161616;
      color: white;
      padding: 12px 16px;
      border-radius: 999px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease, transform .2s ease;
      border: 1px solid #2a2a2a;
    }
    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(-4px);
    }
    .cookie-banner {
      position: fixed;
      left: 50%;
      bottom: calc(18px + var(--safe-bottom));
      transform: translateX(-50%);
      width: min(720px, calc(100vw - 20px));
      z-index: 120;
      padding: 16px 18px;
      border-radius: 22px;
      border: 1px solid rgba(255, 215, 0, .16);
      background: rgba(15, 15, 15, .96);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
      backdrop-filter: blur(14px);
    }
    .cookie-banner.hidden {
      display: none;
    }
    .cookie-title {
      color: var(--text);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .cookie-copy {
      font-size: 14px;
      line-height: 1.55;
      color: var(--muted);
    }
    .cookie-copy a {
      color: var(--accent);
      text-decoration: none;
    }
    .cookie-copy a:hover {
      text-decoration: underline;
    }
    .cookie-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 14px;
    }
    .auth-overlay {
      position: fixed;
      inset: 0;
      z-index: 130;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      background: rgba(0, 0, 0, .66);
      backdrop-filter: blur(10px);
    }
    .auth-overlay.hidden {
      display: none;
    }
    .auth-modal {
      width: min(520px, 100%);
      border-radius: 28px;
      padding: 26px;
      border: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(180deg, rgba(18,18,18,.98), rgba(12,12,12,.96));
      box-shadow: 0 24px 80px rgba(0,0,0,.48);
    }
    .auth-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
    }
    .auth-head h3 {
      font-size: 28px;
      margin-bottom: 8px;
    }
    .auth-head p {
      line-height: 1.6;
    }
    .auth-close {
      width: 42px;
      min-height: 42px;
      padding: 0;
      border-radius: 14px;
      background: rgba(255,255,255,.04);
      color: var(--text);
      border: 1px solid rgba(255,255,255,.08);
      flex: 0 0 auto;
    }
    .auth-switch {
      display: inline-flex;
      gap: 8px;
      padding: 6px;
      border-radius: 999px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      margin-bottom: 18px;
    }
    .auth-switch button {
      min-height: 40px;
      padding: 10px 16px;
    }
    .auth-panel {
      display: grid;
      gap: 12px;
    }
    .auth-note {
      margin-top: 12px;
      color: rgba(255,255,255,.56);
      font-size: 12px;
      line-height: 1.6;
    }
    .empty-state {
      text-align: center;
      padding: 40px 20px;
    }
    .site-footer {
      margin-top: 48px;
      border-top: 1px solid #202020;
      padding: 34px 0 calc(8px + var(--safe-bottom));
    }
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
      will-change: opacity, transform;
    }
    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }
    .stagger-1 { transition-delay: .05s; }
    .stagger-2 { transition-delay: .12s; }
    .stagger-3 { transition-delay: .19s; }
    .stagger-4 { transition-delay: .26s; }
    @media (prefers-reduced-motion: reduce) {
      .hero,
      h1,
      .hero-feature-dot,
      .bg-orb,
      .reveal,
      .plan-card,
      .stat-card {
        animation: none !important;
        transition: none !important;
      }
      .reveal {
        opacity: 1;
        transform: none;
      }
    }
    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 28px;
      flex-wrap: wrap;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 13px;
    }
    .footer-links a:hover {
      color: var(--accent);
    }
    .copyright {
      width: 100%;
      text-align: center;
      color: #4e4e4e;
      font-size: 12px;
      margin-top: 28px;
    }
    .mono {
      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 12px;
      color: var(--muted);
    }
    @media (max-width: 860px) {
      .panel-stack { grid-template-columns: 1fr; }
      .topbar { padding-top: calc(16px + var(--safe-top)); }
      h1 { font-size: 36px; }
      .hero {
        min-height: auto;
        padding: 34px 20px 26px;
        grid-template-columns: 1fr;
      }
      .hero-copy {
        align-items: center;
        text-align: center;
      }
      .hero-brand {
        flex-direction: column;
        gap: 12px;
      }
      .hero-actions,
      .hero-features {
        justify-content: center;
      }
      .hero-proof {
        width: 100%;
      }
    }
    @media (max-width: 640px) {
      .app {
        padding:
          max(0px, var(--safe-top))
          calc(10px + var(--safe-right))
          calc(26px + var(--safe-bottom))
          calc(10px + var(--safe-left));
      }
      .topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: calc(10px + var(--safe-top)) 0 8px;
      }
      .logo {
        font-size: 18px;
        text-align: left;
        justify-content: flex-start;
      }
      .logo-mark {
        width: 52px;
        height: 52px;
      }
      .logo-word small {
        font-size: 10px;
        letter-spacing: .14em;
      }
      .topbar .inline-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      .hero {
        border-radius: 24px;
        padding: 28px 16px 20px;
      }
      .hero::after {
        width: 140px;
        height: 140px;
        right: -24px;
        top: -24px;
      }
      .hero-brand {
        align-items: flex-start;
        margin-bottom: 12px;
      }
      h1 {
        font-size: 30px;
        margin-bottom: 10px;
      }
      .hero-logo {
        width: 104px;
      }
      .hero-subtitle {
        font-size: 14px;
        line-height: 1.55;
      }
      .hero-kicker {
        margin-bottom: 10px;
        padding: 8px 12px;
      }
      .hero-proof {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 16px;
      }
      .hero-proof-card {
        padding: 14px;
      }
      .hero-showcase {
        padding: 16px;
        border-radius: 22px;
      }
      .hero-showcase-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 14px;
      }
      .hero-showcase h3 {
        font-size: 22px;
        line-height: 1.08;
      }
      .hero-showcase p,
      .hero-showcase-item span,
      .hero-mini-cta span {
        font-size: 12px;
        line-height: 1.45;
      }
      .hero-showcase-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
      }
      .hero-showcase-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 15px;
      }
      .hero-mini-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 14px;
      }
      .hero-actions {
        width: 100%;
        gap: 10px;
        margin-top: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
      }
      .hero-actions button,
      .hero-actions .btn-link,
      .hero-actions .btn-secondary,
      .hero-actions .btn-primary {
        width: 100%;
        min-width: 0;
      }
      .hero-actions > :nth-child(4) {
        grid-column: 1 / -1;
      }
      .hero-features {
        margin-top: 18px;
        gap: 10px;
        justify-content: flex-start;
      }
      .hero-feature {
        width: 100%;
        min-height: 42px;
        font-size: 12px;
      }
      .tabs {
        margin: 16px 0 22px;
        gap: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 2px 2px 6px;
        scrollbar-width: none;
      }
      .tabs::-webkit-scrollbar {
        display: none;
      }
      .tab,
      button {
        min-height: 46px;
        padding: 12px 16px;
        font-size: 14px;
      }
      .tabs .tab {
        white-space: nowrap;
        flex: 0 0 auto;
        background: rgba(255,255,255,.03);
        border-color: rgba(255,255,255,.08);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
      }
      .section-head {
        margin-bottom: 16px;
      }
      .section-head h2 {
        font-size: 24px;
        line-height: 1.18;
      }
      .section-head p {
        font-size: 14px;
        line-height: 1.6;
      }
      .plans-intro,
      .plans-stat-row {
        grid-template-columns: 1fr;
      }
      .plans-lead h3 {
        font-size: 24px;
        max-width: none;
      }
      .plans-pill-row {
        gap: 8px;
        margin-top: 10px;
        margin-bottom: 16px;
      }
      .plans-pill {
        font-size: 11px;
        padding: 8px 12px;
      }
      .plans-highlight {
        grid-template-columns: auto 1fr;
      }
      .plans-highlight > strong,
      .plans-highlight > span {
        grid-column: 2;
      }
      .grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .plans-lead,
      .plan-card,
      .panel,
      .stat-card {
        border-radius: 20px;
        padding: 18px;
      }
      .plan-top,
      .plan-price-row,
      .plan-footer {
        flex-direction: column;
        align-items: flex-start;
      }
      .plan-tier,
      .plan-price-note {
        text-align: left;
      }
      .plan-card h3,
      .panel h3 {
        font-size: 18px;
      }
      .price {
        font-size: 30px;
        margin: 14px 0 8px;
      }
      .kicker,
      .feature-list li,
      .small,
      p {
        font-size: 13px;
      }
      .feature-list {
        margin-bottom: 16px;
      }
      .feature-list li {
        margin-bottom: 8px;
      }
      .plan-card.popular::after {
        top: 16px;
        right: -38px;
        font-size: 9px;
        padding: 5px 40px;
      }
      .badge {
        font-size: 11px;
        padding: 6px 10px;
      }
      .install-app-grid,
      .stats,
      .dashboard-grid,
      .profile-hero,
      .vault-grid,
      .form-grid,
      .support-layout {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .install-panel {
        padding: 20px;
        border-radius: 22px;
      }
      .install-panel-top {
        gap: 14px;
        margin-bottom: 14px;
      }
      .install-badge {
        width: 58px;
        height: 58px;
        font-size: 24px;
      }
      .install-app-card {
        min-height: 80px;
        padding: 16px;
      }
      .install-app-name {
        font-size: 16px;
      }
      .install-app-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
      }
      .install-links {
        max-width: none;
        margin-left: 0;
      }
      .install-link {
        min-height: 50px;
        font-size: 16px;
        border-radius: 18px;
      }
      .order-item,
      .pending-item {
        padding: 14px 0;
      }
      .delivery {
        padding: 12px;
        font-size: 13px;
      }
      .status {
        font-size: 11px;
      }
      textarea,
      input,
      select {
        min-height: 46px;
        padding: 11px 12px;
        font-size: 15px;
      }
      textarea {
        min-height: 96px;
      }
      .site-footer {
        margin-top: 32px;
        padding: 24px 0 calc(2px + var(--safe-bottom));
      }
      .footer-content {
        gap: 18px;
      }
      .footer-links {
        width: 100%;
        gap: 8px;
      }
      .footer-links a,
      .copyright {
        font-size: 12px;
      }
      .cookie-banner {
        width: calc(100vw - 16px);
        padding: 14px;
        border-radius: 18px;
      }
      .auth-modal {
        padding: 18px;
        border-radius: 22px;
      }
      .auth-head h3 {
        font-size: 24px;
      }
      .cookie-actions {
        display: grid;
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 390px) {
      .app {
        padding:
          max(0px, var(--safe-top))
          calc(8px + var(--safe-right))
          calc(22px + var(--safe-bottom))
          calc(8px + var(--safe-left));
      }
      .hero {
        padding: 30px 14px 18px;
      }
      h1 {
        font-size: 26px;
      }
      .logo-mark {
        width: 46px;
        height: 46px;
      }
      .hero-subtitle {
        font-size: 14px;
      }
      .hero-kicker,
      .hero-feature,
      .hero-showcase-badge {
        font-size: 11px;
      }
      .hero-proof-value {
        font-size: 22px;
      }
      .install-app-card {
        min-height: 74px;
        padding: 14px;
      }
      .install-panel {
        padding: 18px;
      }
      .install-badge {
        width: 52px;
        height: 52px;
        font-size: 22px;
      }
      .install-link {
        font-size: 15px;
      }
      .tab,
      button {
        min-height: 44px;
        padding: 11px 14px;
        font-size: 13px;
      }
      .plan-card,
      .panel,
      .stat-card {
        padding: 16px;
      }
      .plans-highlight-row {
        padding: 16px;
      }
      .price {
        font-size: 28px;
      }
      .eyebrow {
        font-size: 11px;
        letter-spacing: .1em;
      }
      .section-head h2 {
        font-size: 22px;
      }
    }