
    /* =========================================================
       GOFASTDIE.WTF
       Single-file landing page
       ========================================================= */

    :root {
      --bg: #020304;
      --bg-soft: #06080b;

      --panel: rgba(10, 12, 17, 0.76);
      --panel-strong: rgba(10, 12, 17, 0.94);

      --border: rgba(255, 255, 255, 0.08);
      --border-bright: rgba(255, 255, 255, 0.14);

      --text: #f5f7fb;
      --muted: #727b89;

      --red: #ff174f;
      --red-rgb: 255, 23, 79;

      --pink: #ff2a91;
      --pink-rgb: 255, 42, 145;

      --green: #65ff79;
      --green-rgb: 101, 255, 121;

      --blue: #35d9ff;
      --blue-rgb: 53, 217, 255;

      --violet: #b94dff;
      --violet-rgb: 185, 77, 255;

      --radius-xl: 24px;
      --radius-lg: 17px;
      --radius-md: 12px;

      --shadow:
        0 30px 80px rgba(0, 0, 0, 0.58),
        0 0 0 1px rgba(255, 255, 255, 0.02);

      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      min-height: 100vh;
      overflow-x: hidden;

      color: var(--text);

      font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

      background:
        radial-gradient(
          circle at 7% 9%,
          rgba(var(--red-rgb), 0.13),
          transparent 27%
        ),
        radial-gradient(
          circle at 94% 37%,
          rgba(var(--violet-rgb), 0.08),
          transparent 28%
        ),
        radial-gradient(
          circle at 82% 82%,
          rgba(var(--blue-rgb), 0.07),
          transparent 27%
        ),
        #020304;
    }

    body::selection {
      color: white;
      background: var(--red);
    }

    a,
    button,
    input {
      font: inherit;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin-inline: auto;
    }

    /* ---------------------------------------------------------
       Background atmosphere
       --------------------------------------------------------- */

    .site-grid,
    .scanlines,
    .noise,
    .ambient-orb {
      position: fixed;
      pointer-events: none;
    }

    .site-grid {
      inset: 0;
      z-index: -6;
      opacity: 0.36;

      background-image:
        linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);

      background-size: 46px 46px;

      mask-image:
        linear-gradient(to bottom, black, black 75%, transparent);
    }

    .scanlines {
      inset: 0;
      z-index: 1000;
      opacity: 0.055;

      background:
        repeating-linear-gradient(
          to bottom,
          transparent 0,
          transparent 3px,
          rgba(255,255,255,.10) 4px
        );
    }

    .noise {
      inset: 0;
      z-index: 1001;
      opacity: 0.025;
      mix-blend-mode: screen;

      background-image:
        repeating-radial-gradient(
          circle at 0 0,
          transparent 0,
          rgba(255,255,255,.35) 1px,
          transparent 2px
        );

      background-size: 6px 6px;
    }

    .ambient-orb {
      z-index: -5;
      width: 430px;
      aspect-ratio: 1;
      border-radius: 50%;
      filter: blur(110px);
      opacity: .1;
      animation: floatOrb 9s ease-in-out infinite alternate;
    }

    .ambient-orb.red {
      left: -230px;
      top: 160px;
      background: var(--red);
    }

    .ambient-orb.blue {
      right: -250px;
      top: 620px;
      background: var(--blue);
      animation-delay: -4s;
    }

    @keyframes floatOrb {
      from { transform: translate3d(0, -20px, 0) scale(.94); }
      to { transform: translate3d(30px, 28px, 0) scale(1.05); }
    }

    /* ---------------------------------------------------------
       Header
       --------------------------------------------------------- */

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 900;

      padding: 14px 0;

      background:
        linear-gradient(
          to bottom,
          rgba(2,3,4,.91),
          rgba(2,3,4,.68)
        );

      border-bottom: 1px solid rgba(255,255,255,.055);

      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .header-inner {
      min-height: 54px;

      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand-link {
      display: flex;
      align-items: center;
      gap: 11px;
      min-width: 0;
    }

    .brand-mini {
      position: relative;

      width: 40px;
      height: 40px;
      flex: 0 0 auto;

      overflow: hidden;

      border: 1px solid rgba(var(--red-rgb), .34);
      border-radius: 11px;

      background: #050608;

      box-shadow:
        0 0 18px rgba(var(--red-rgb), .13),
        inset 0 0 18px rgba(var(--red-rgb), .04);
    }

    .brand-mini img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.14);
    }

    .brand-copy strong {
      display: block;

      font-size: 13px;
      font-weight: 950;

      letter-spacing: .10em;
      white-space: nowrap;
    }

    .brand-copy strong span {
      color: var(--red);
      text-shadow: 0 0 16px rgba(var(--red-rgb), .7);
    }

    .brand-copy small {
      display: block;
      margin-top: 3px;

      color: #565e6a;

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 7px;
      font-weight: 800;

      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .desktop-nav a {
      position: relative;
      padding: 10px 12px;

      border-radius: 9px;

      color: #858d9a;

      font-size: 10px;
      font-weight: 800;

      letter-spacing: .08em;
      text-transform: uppercase;

      transition:
        color .2s ease,
        background .2s ease;
    }

    .desktop-nav a:hover {
      color: white;
      background: rgba(255,255,255,.035);
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;

      min-height: 39px;
      padding: 0 15px;

      border: 1px solid rgba(var(--red-rgb), .36);
      border-radius: 10px;

      color: white;
      background:
        linear-gradient(
          135deg,
          rgba(var(--red-rgb), .23),
          rgba(var(--pink-rgb), .09)
        );

      box-shadow:
        0 0 26px rgba(var(--red-rgb), .08),
        inset 0 1px rgba(255,255,255,.05);

      font-size: 9px;
      font-weight: 900;

      letter-spacing: .11em;
      text-transform: uppercase;

      transition:
        transform .25s var(--ease),
        border-color .25s ease,
        box-shadow .25s ease;
    }

    .header-cta:hover {
      transform: translateY(-2px);
      border-color: rgba(var(--red-rgb), .65);
      box-shadow: 0 0 32px rgba(var(--red-rgb), .16);
    }

    .mobile-menu-button {
      display: none;

      width: 42px;
      height: 42px;

      border: 1px solid var(--border);
      border-radius: 10px;

      background: rgba(255,255,255,.025);

      cursor: pointer;
    }

    .mobile-menu-button span {
      display: block;
      width: 17px;
      height: 1px;
      margin: 4px auto;
      background: #dce0e8;
    }

    .mobile-nav {
      display: none;
      padding: 10px 0 2px;
    }

    .mobile-nav.open {
      display: grid;
      gap: 4px;
    }

    .mobile-nav a {
      padding: 12px;

      border: 1px solid transparent;
      border-radius: 10px;

      color: #9aa2ae;
      background: rgba(255,255,255,.015);

      font-size: 10px;
      font-weight: 800;

      letter-spacing: .08em;
      text-transform: uppercase;
    }

    /* ---------------------------------------------------------
       Hero
       --------------------------------------------------------- */

    .hero {
      position: relative;
      z-index: 2;

      min-height: 100vh;

      display: grid;
      align-items: center;

      padding: 125px 0 78px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 66px;
      align-items: center;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 9px;

      color: var(--red);

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 9px;
      font-weight: 900;

      letter-spacing: .22em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 18px;
      height: 1px;

      background: var(--red);
      box-shadow: 0 0 10px var(--red);
    }

    .hero h1 {
      max-width: 700px;
      margin: 14px 0 18px;

      font-size: clamp(46px, 7.4vw, 88px);
      font-weight: 950;

      line-height: .91;
      letter-spacing: -.065em;
      text-transform: uppercase;
    }

    .hero h1 .hot {
      display: inline-block;

      color: var(--red);

      text-shadow:
        0 0 24px rgba(var(--red-rgb), .25),
        0 0 55px rgba(var(--pink-rgb), .12);
    }

    .hero-description {
      max-width: 600px;

      margin: 0;

      color: #828b99;

      font-size: 14px;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 11px;

      margin-top: 30px;
    }

    .btn {
      min-height: 48px;

      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;

      padding: 0 20px;

      border: 1px solid var(--border-bright);
      border-radius: 12px;

      background: rgba(255,255,255,.025);

      cursor: pointer;

      font-size: 10px;
      font-weight: 900;

      letter-spacing: .10em;
      text-transform: uppercase;

      transition:
        transform .28s var(--ease),
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.22);
      background: rgba(255,255,255,.045);
    }

    .btn-primary {
      border-color: rgba(var(--red-rgb), .50);

      background:
        linear-gradient(
          135deg,
          rgba(var(--red-rgb), .92),
          rgba(var(--pink-rgb), .82)
        );

      box-shadow:
        0 12px 35px rgba(var(--red-rgb), .18),
        0 0 35px rgba(var(--red-rgb), .10);
    }

    .btn-primary:hover {
      border-color: rgba(255,255,255,.25);

      box-shadow:
        0 16px 42px rgba(var(--red-rgb), .28),
        0 0 45px rgba(var(--pink-rgb), .14);
    }

    .hero-status {
      display: flex;
      flex-wrap: wrap;
      gap: 18px 24px;

      margin-top: 34px;
    }

    .hero-status-item {
      display: flex;
      align-items: center;
      gap: 8px;

      color: #59616e;

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 8px;
      font-weight: 800;

      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .hero-status-dot {
      width: 6px;
      height: 6px;

      border-radius: 50%;

      background: var(--green);

      box-shadow: 0 0 11px rgba(var(--green-rgb), .8);
    }

    .hero-status-dot.red {
      background: var(--red);
      box-shadow: 0 0 11px rgba(var(--red-rgb), .8);
    }

    /* Hero logo */

    .hero-visual {
      position: relative;

      display: grid;
      place-items: center;

      min-height: 590px;
    }

    .logo-glow {
      position: absolute;

      width: 74%;
      aspect-ratio: 1;

      border-radius: 50%;

      background:
        radial-gradient(
          circle,
          rgba(var(--red-rgb), .20),
          rgba(var(--violet-rgb), .08) 38%,
          transparent 70%
        );

      filter: blur(34px);

      animation: logoPulse 4.8s ease-in-out infinite alternate;
    }

    @keyframes logoPulse {
      from {
        opacity: .55;
        transform: scale(.94);
      }

      to {
        opacity: 1;
        transform: scale(1.04);
      }
    }

    .logo-frame {
      position: relative;
      z-index: 2;

      width: min(520px, 100%);

      padding: 12px;

      border: 1px solid rgba(255,255,255,.10);
      border-radius: 28px;

      background:
        linear-gradient(
          145deg,
          rgba(255,255,255,.055),
          rgba(255,255,255,.012)
        );

      box-shadow:
        0 35px 90px rgba(0,0,0,.58),
        0 0 55px rgba(var(--red-rgb), .08),
        0 0 75px rgba(var(--violet-rgb), .05);

      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);

      transform: rotate(1.2deg);
    }

    .logo-frame::before,
    .logo-frame::after {
      content: "";
      position: absolute;
      z-index: 4;

      width: 64px;
      height: 64px;

      pointer-events: none;
    }

    .logo-frame::before {
      left: -8px;
      top: -8px;

      border-left: 2px solid var(--red);
      border-top: 2px solid var(--red);

      filter: drop-shadow(0 0 8px rgba(var(--red-rgb), .5));
    }

    .logo-frame::after {
      right: -8px;
      bottom: -8px;

      border-right: 2px solid var(--green);
      border-bottom: 2px solid var(--green);

      filter: drop-shadow(0 0 8px rgba(var(--green-rgb), .4));
    }

    .logo-frame img {
      width: 100%;
      aspect-ratio: 1;

      object-fit: cover;

      border-radius: 19px;

      filter:
        saturate(1.03)
        contrast(1.04);
    }

    .floating-chip {
      position: absolute;
      z-index: 4;

      display: flex;
      align-items: center;
      gap: 8px;

      padding: 10px 12px;

      border: 1px solid var(--border);
      border-radius: 11px;

      color: #9da5b0;

      background: rgba(5,7,9,.80);

      box-shadow: 0 12px 35px rgba(0,0,0,.3);

      backdrop-filter: blur(10px);

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 8px;
      font-weight: 800;

      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .floating-chip.one {
      left: -8px;
      top: 17%;
    }

    .floating-chip.two {
      right: -3px;
      bottom: 15%;
    }

    .chip-light {
      width: 6px;
      height: 6px;
      border-radius: 50%;

      background: var(--green);
      box-shadow: 0 0 10px var(--green);
    }

    .chip-light.red {
      background: var(--red);
      box-shadow: 0 0 10px var(--red);
    }

    /* ---------------------------------------------------------
       Generic sections
       --------------------------------------------------------- */

    .section {
      position: relative;
      z-index: 2;

      padding: 105px 0;
    }

    .section-heading {
      max-width: 690px;
      margin-bottom: 42px;
    }

    .section-heading.center {
      margin-inline: auto;
      text-align: center;
    }

    .section-heading.center .eyebrow {
      justify-content: center;
    }

    .section-heading h2 {
      margin: 12px 0 12px;

      font-size: clamp(34px, 5vw, 57px);
      font-weight: 930;

      line-height: 1;
      letter-spacing: -.05em;
    }

    .section-heading p {
      margin: 0;

      color: var(--muted);

      font-size: 13px;
      line-height: 1.75;
    }

    .card {
      position: relative;

      border: 1px solid var(--border);
      border-radius: var(--radius-lg);

      background:
        linear-gradient(
          145deg,
          rgba(255,255,255,.04),
          rgba(255,255,255,.012)
        );

      box-shadow: inset 0 1px rgba(255,255,255,.025);
    }

    /* ---------------------------------------------------------
       Features
       --------------------------------------------------------- */

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .feature-card {
      min-height: 220px;

      padding: 24px;

      overflow: hidden;

      transition:
        transform .35s var(--ease),
        border-color .25s ease,
        background .25s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);

      border-color: rgba(255,255,255,.14);

      background:
        linear-gradient(
          145deg,
          rgba(255,255,255,.055),
          rgba(255,255,255,.016)
        );
    }

    .feature-card::before {
      content: "";

      position: absolute;
      left: -60px;
      top: -60px;

      width: 150px;
      height: 150px;

      border-radius: 50%;

      background:
        radial-gradient(
          circle,
          rgba(var(--red-rgb), .12),
          transparent 70%
        );

      filter: blur(10px);
    }

    .feature-card.green::before {
      background:
        radial-gradient(
          circle,
          rgba(var(--green-rgb), .09),
          transparent 70%
        );
    }

    .feature-card.blue::before {
      background:
        radial-gradient(
          circle,
          rgba(var(--blue-rgb), .10),
          transparent 70%
        );
    }

    .feature-icon {
      position: relative;

      width: 42px;
      height: 42px;

      display: grid;
      place-items: center;

      border: 1px solid rgba(var(--red-rgb), .20);
      border-radius: 11px;

      color: var(--red);
      background: rgba(var(--red-rgb), .065);

      box-shadow: 0 0 24px rgba(var(--red-rgb), .04);
    }

    .feature-card.green .feature-icon {
      color: var(--green);
      border-color: rgba(var(--green-rgb), .17);
      background: rgba(var(--green-rgb), .05);
    }

    .feature-card.blue .feature-icon {
      color: var(--blue);
      border-color: rgba(var(--blue-rgb), .17);
      background: rgba(var(--blue-rgb), .05);
    }

    .feature-icon svg {
      width: 20px;
      height: 20px;
    }

    .feature-card h3 {
      position: relative;

      margin: 22px 0 9px;

      font-size: 15px;
      font-weight: 850;

      letter-spacing: -.02em;
    }

    .feature-card p {
      position: relative;

      margin: 0;

      color: #6d7683;

      font-size: 11px;
      line-height: 1.7;
    }

    /* ---------------------------------------------------------
       UI Showcase
       --------------------------------------------------------- */

    .interface-section {
      overflow: hidden;
    }

    .interface-wrap {
      position: relative;
    }

    .interface-halo {
      position: absolute;
      inset: 8% 8% 0;

      z-index: -1;

      background:
        radial-gradient(
          circle at 20% 40%,
          rgba(var(--red-rgb), .14),
          transparent 30%
        ),
        radial-gradient(
          circle at 78% 70%,
          rgba(var(--blue-rgb), .10),
          transparent 30%
        );

      filter: blur(65px);
    }

    .mod-menu {
      --mouse-x: 50%;
      --mouse-y: 50%;

      position: relative;

      width: 100%;
      min-height: 620px;

      display: grid;
      grid-template-columns: 230px minmax(0, 1fr);

      overflow: hidden;

      border: 1px solid rgba(255,255,255,.09);
      border-radius: 25px;

      background:
        linear-gradient(
          145deg,
          rgba(255,255,255,.035),
          rgba(255,255,255,.005)
        ),
        rgba(8,10,14,.78);

      box-shadow:
        var(--shadow),
        -18px 0 100px rgba(var(--red-rgb), .045),
        18px 0 100px rgba(var(--blue-rgb), .04);

      backdrop-filter: blur(28px) saturate(130%);
      -webkit-backdrop-filter: blur(28px) saturate(130%);
    }

    .mod-menu::before {
      content: "";

      position: absolute;
      inset: 0;
      z-index: 30;

      pointer-events: none;

      background:
        radial-gradient(
          360px circle at var(--mouse-x) var(--mouse-y),
          rgba(255,255,255,.055),
          transparent 60%
        );
    }

    .mod-menu::after {
      content: "";

      position: absolute;
      inset: 0;
      z-index: 31;

      pointer-events: none;

      border-radius: inherit;

      box-shadow:
        inset 0 1px rgba(255,255,255,.055),
        inset 0 -1px rgba(0,0,0,.7);
    }

    .ui-sidebar {
      position: relative;
      z-index: 2;

      display: flex;
      flex-direction: column;

      padding: 26px 18px 18px;

      border-right: 1px solid var(--border);

      background:
        linear-gradient(
          180deg,
          rgba(255,255,255,.028),
          transparent 28%
        ),
        rgba(2,4,7,.28);
    }

    .ui-brand {
      padding: 4px 10px 28px;
    }

    .ui-brand-top {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .ui-brand-img {
      width: 38px;
      height: 38px;
      flex: 0 0 auto;

      overflow: hidden;

      border: 1px solid rgba(var(--red-rgb), .30);
      border-radius: 10px;

      box-shadow: 0 0 20px rgba(var(--red-rgb), .10);
    }

    .ui-brand-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.14);
    }

    .ui-brand-name {
      margin: 0;

      font-size: 13px;
      font-weight: 950;

      letter-spacing: .07em;
      white-space: nowrap;
    }

    .ui-brand-name span {
      color: var(--red);
      text-shadow: 0 0 18px rgba(var(--red-rgb), .7);
    }

    .ui-brand-sub {
      margin: 6px 0 0 48px;

      color: #535b66;

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 7px;
      font-weight: 800;

      letter-spacing: .17em;
      text-transform: uppercase;
    }

    .ui-nav-label {
      margin: 0 10px 10px;

      color: #444b55;

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 8px;
      font-weight: 800;

      letter-spacing: .20em;
      text-transform: uppercase;
    }

    .ui-nav {
      display: grid;
      gap: 7px;
    }

    .ui-nav-button {
      position: relative;

      width: 100%;
      min-height: 48px;

      display: flex;
      align-items: center;
      gap: 12px;

      padding: 0 13px;

      border: 1px solid transparent;
      border-radius: 12px;

      color: #7b8491;

      background: transparent;

      cursor: pointer;

      transition:
        color .25s ease,
        background .25s ease,
        transform .25s var(--ease);
    }

    .ui-nav-button:hover {
      color: #e8ebef;
      background: rgba(255,255,255,.035);
      transform: translateX(2px);
    }

    .ui-nav-button.active {
      color: white;

      border-color: rgba(var(--red-rgb), .16);

      background:
        linear-gradient(
          90deg,
          rgba(var(--red-rgb), .12),
          rgba(var(--red-rgb), .025)
        );

      box-shadow:
        inset 3px 0 var(--red),
        0 0 25px rgba(var(--red-rgb), .035);
    }

    .ui-nav-button.active::after {
      content: "";

      position: absolute;
      right: 12px;

      width: 5px;
      height: 5px;

      border-radius: 50%;

      background: var(--red);

      box-shadow:
        0 0 7px var(--red),
        0 0 15px rgba(var(--red-rgb), .65);
    }

    .ui-nav-button svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    .ui-nav-button span {
      font-size: 11px;
      font-weight: 800;
    }

    .ui-status {
      margin-top: auto;

      display: flex;
      align-items: center;
      gap: 9px;

      padding: 12px;

      border: 1px solid rgba(var(--green-rgb), .10);
      border-radius: 11px;

      background: rgba(var(--green-rgb), .025);
    }

    .ui-status-dot {
      width: 7px;
      height: 7px;

      border-radius: 50%;

      background: var(--green);

      box-shadow: 0 0 12px rgba(var(--green-rgb), .85);
    }

    .ui-status strong,
    .ui-status span {
      display: block;
    }

    .ui-status strong {
      color: #cfead3;

      font-size: 8px;
      font-weight: 850;

      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .ui-status span {
      margin-top: 3px;

      color: #4d7253;

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 7px;
    }

    .ui-main {
      position: relative;
      z-index: 2;

      min-width: 0;
      overflow: hidden;
    }

    .ui-topbar {
      min-height: 75px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      padding: 0 28px;

      border-bottom: 1px solid var(--border);

      background:
        linear-gradient(
          90deg,
          rgba(255,255,255,.018),
          transparent
        );
    }

    .ui-path {
      display: flex;
      gap: 8px;

      color: #474f5b;

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 9px;

      letter-spacing: .09em;
      text-transform: uppercase;
    }

    .ui-path strong {
      color: #b8c0ca;
      font-weight: 600;
    }

    .ui-dots {
      display: flex;
      gap: 7px;
    }

    .ui-dots span {
      width: 7px;
      height: 7px;

      border-radius: 50%;

      background: #3b424b;
    }

    .ui-dots span:first-child {
      background: var(--red);
      box-shadow: 0 0 8px rgba(var(--red-rgb), .45);
    }

    .ui-content {
      position: relative;
      min-height: 545px;
    }

    .ui-panel {
      position: absolute;
      inset: 0;

      padding: 29px 30px 34px;

      opacity: 0;
      visibility: hidden;
      transform: translateY(13px);

      transition:
        opacity .3s ease,
        transform .4s var(--ease),
        visibility .3s ease;
    }

    .ui-panel.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .ui-eyebrow {
      display: flex;
      align-items: center;
      gap: 8px;

      color: var(--red);

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 8px;
      font-weight: 850;

      letter-spacing: .20em;
      text-transform: uppercase;
    }

    .ui-eyebrow::before {
      content: "";

      width: 15px;
      height: 1px;

      background: var(--red);
      box-shadow: 0 0 8px rgba(var(--red-rgb), .8);
    }

    .ui-title {
      margin: 8px 0 7px;

      font-size: 31px;
      font-weight: 850;

      letter-spacing: -.045em;
    }

    .ui-description {
      max-width: 540px;

      margin: 0 0 24px;

      color: #68717d;

      font-size: 10px;
      line-height: 1.7;
    }

    .ui-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 11px;

      margin-bottom: 12px;
    }

    .ui-card {
      border: 1px solid var(--border);
      border-radius: 15px;

      background:
        linear-gradient(
          135deg,
          rgba(255,255,255,.04),
          rgba(255,255,255,.012)
        );
    }

    .ui-stat {
      min-height: 115px;
      padding: 17px;
    }

    .ui-stat-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .ui-stat-label {
      color: #656e7a;

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 7px;
      font-weight: 800;

      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .ui-stat-icon {
      width: 28px;
      height: 28px;

      display: grid;
      place-items: center;

      border-radius: 8px;

      color: var(--red);
      background: rgba(var(--red-rgb), .07);
    }

    .ui-stat-icon.green {
      color: var(--green);
      background: rgba(var(--green-rgb), .06);
    }

    .ui-stat-icon.blue {
      color: var(--blue);
      background: rgba(var(--blue-rgb), .06);
    }

    .ui-stat-icon svg {
      width: 14px;
      height: 14px;
    }

    .ui-stat-value {
      margin-top: 13px;

      font-size: 21px;
      font-weight: 850;
      letter-spacing: -.04em;
    }

    .ui-stat-unit {
      margin-left: 4px;

      color: #59616c;

      font-size: 8px;
      letter-spacing: .07em;
    }

    .ui-activity {
      padding: 19px;
    }

    .ui-activity-header {
      display: flex;
      align-items: center;
      justify-content: space-between;

      margin-bottom: 12px;
    }

    .ui-activity-header h3 {
      margin: 0;

      font-size: 10px;
      font-weight: 800;
    }

    .live-badge {
      padding: 5px 8px;

      border: 1px solid rgba(var(--green-rgb), .13);
      border-radius: 999px;

      color: var(--green);
      background: rgba(var(--green-rgb), .035);

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 6px;
      font-weight: 850;

      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .activity-list {
      display: grid;
    }

    .activity-row {
      display: grid;
      grid-template-columns: 8px 1fr auto;
      gap: 10px;
      align-items: center;

      padding: 10px 7px;

      border-bottom: 1px solid rgba(255,255,255,.035);
    }

    .activity-row:last-child {
      border-bottom: 0;
    }

    .activity-bullet {
      width: 5px;
      height: 5px;

      border-radius: 50%;

      background: #414852;
    }

    .activity-bullet.green {
      background: var(--green);
      box-shadow: 0 0 8px rgba(var(--green-rgb), .6);
    }

    .activity-bullet.red {
      background: var(--red);
      box-shadow: 0 0 8px rgba(var(--red-rgb), .65);
    }

    .activity-name {
      color: #a4acb7;
      font-size: 9px;
    }

    .activity-time {
      color: #4b535f;

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 7px;
    }

    .function-list {
      display: grid;
      gap: 10px;
    }

    .function-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;

      min-height: 88px;

      padding: 17px;

      border: 1px solid var(--border);
      border-radius: 14px;

      background:
        linear-gradient(
          90deg,
          rgba(255,255,255,.035),
          rgba(255,255,255,.01)
        );

      transition:
        transform .25s var(--ease),
        border-color .25s ease,
        background .25s ease;
    }

    .function-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.13);
    }

    .function-card.enabled {
      border-color: rgba(var(--red-rgb), .22);

      background:
        linear-gradient(
          90deg,
          rgba(var(--red-rgb), .07),
          rgba(255,255,255,.015) 42%
        );

      box-shadow: inset 2px 0 var(--red);
    }

    .function-card.enabled.green-accent {
      border-color: rgba(var(--green-rgb), .18);

      background:
        linear-gradient(
          90deg,
          rgba(var(--green-rgb), .055),
          rgba(255,255,255,.015) 42%
        );

      box-shadow: inset 2px 0 var(--green);
    }

    .function-info {
      display: flex;
      align-items: center;
      gap: 13px;
    }

    .function-icon {
      width: 38px;
      height: 38px;
      flex: 0 0 auto;

      display: grid;
      place-items: center;

      border: 1px solid rgba(255,255,255,.06);
      border-radius: 10px;

      color: #737b87;
      background: rgba(255,255,255,.025);
    }

    .function-card.enabled .function-icon {
      color: var(--red);
      border-color: rgba(var(--red-rgb), .18);
      background: rgba(var(--red-rgb), .07);
    }

    .function-card.green-accent.enabled .function-icon {
      color: var(--green);
      border-color: rgba(var(--green-rgb), .16);
      background: rgba(var(--green-rgb), .055);
    }

    .function-icon svg {
      width: 18px;
      height: 18px;
    }

    .function-copy h3 {
      margin: 0 0 4px;

      font-size: 11px;
      font-weight: 830;
    }

    .function-copy p {
      margin: 0;

      color: #636b77;

      font-size: 8px;
      line-height: 1.5;
    }

    .toggle {
      position: relative;

      width: 49px;
      height: 27px;
      flex: 0 0 auto;

      cursor: pointer;
    }

    .toggle input {
      position: absolute;
      width: 1px;
      height: 1px;

      opacity: 0;
      pointer-events: none;
    }

    .toggle-track {
      position: absolute;
      inset: 0;

      border: 1px solid rgba(255,255,255,.09);
      border-radius: 999px;

      background:
        linear-gradient(180deg, #1c2027, #101319);

      box-shadow: inset 0 2px 5px rgba(0,0,0,.45);

      transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
    }

    .toggle-thumb {
      position: absolute;

      left: 4px;
      top: 4px;

      width: 19px;
      height: 19px;

      border-radius: 50%;

      background:
        linear-gradient(145deg, #7b838f, #4a505a);

      box-shadow:
        0 3px 8px rgba(0,0,0,.45),
        inset 0 1px rgba(255,255,255,.2);

      transition:
        transform .38s var(--ease),
        background .25s ease,
        box-shadow .25s ease;
    }

    .toggle input:checked ~ .toggle-track {
      border-color: rgba(var(--red-rgb), .55);

      background:
        linear-gradient(
          90deg,
          rgba(var(--red-rgb), .55),
          rgba(var(--red-rgb), .15)
        );

      box-shadow:
        inset 0 0 12px rgba(var(--red-rgb), .25),
        0 0 17px rgba(var(--red-rgb), .18);
    }

    .toggle input:checked ~ .toggle-thumb {
      transform: translateX(22px);

      background: white;

      box-shadow:
        0 0 8px rgba(255,255,255,.75),
        0 0 18px rgba(var(--red-rgb), .8);
    }

    .toggle.green input:checked ~ .toggle-track {
      border-color: rgba(var(--green-rgb), .5);

      background:
        linear-gradient(
          90deg,
          rgba(var(--green-rgb), .48),
          rgba(var(--green-rgb), .13)
        );

      box-shadow:
        inset 0 0 12px rgba(var(--green-rgb), .2),
        0 0 17px rgba(var(--green-rgb), .12);
    }

    .toggle.green input:checked ~ .toggle-thumb {
      box-shadow:
        0 0 8px rgba(255,255,255,.75),
        0 0 18px rgba(var(--green-rgb), .7);
    }

    .function-footer {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 11px;

      margin-top: 15px;
    }

    .terminal,
    .profile-chip {
      border: 1px solid rgba(255,255,255,.055);
      border-radius: 11px;

      background: rgba(0,0,0,.2);
    }

    .terminal {
      padding: 12px 14px;

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 7px;
      line-height: 1.8;
    }

    .terminal div:first-child {
      color: #555e69;
    }

    .terminal-prefix {
      color: var(--red);
    }

    .terminal-status {
      color: #79c886;
    }

    .profile-chip {
      min-width: 125px;

      display: flex;
      flex-direction: column;
      justify-content: center;

      padding: 12px 14px;
    }

    .profile-chip span {
      color: #4d5560;

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 6px;
      font-weight: 800;

      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .profile-chip strong {
      margin-top: 5px;

      color: #b7bec8;

      font-size: 9px;
    }

    /* ---------------------------------------------------------
       How it works
       --------------------------------------------------------- */

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .step {
      padding: 25px;
    }

    .step-number {
      color: var(--red);

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 10px;
      font-weight: 900;

      letter-spacing: .12em;
    }

    .step h3 {
      margin: 17px 0 9px;

      font-size: 16px;
      font-weight: 850;
    }

    .step p {
      margin: 0;

      color: #6d7682;

      font-size: 11px;
      line-height: 1.7;
    }

    /* ---------------------------------------------------------
       Pricing
       --------------------------------------------------------- */

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .price-card {
      position: relative;

      padding: 26px;

      overflow: hidden;

      transition:
        transform .35s var(--ease),
        border-color .25s ease;
    }

    .price-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255,255,255,.15);
    }

    .price-card.featured {
      border-color: rgba(var(--red-rgb), .38);

      background:
        linear-gradient(
          145deg,
          rgba(var(--red-rgb), .075),
          rgba(255,255,255,.016)
        );

      box-shadow:
        0 0 45px rgba(var(--red-rgb), .065),
        inset 0 1px rgba(255,255,255,.035);
    }

    .popular {
      position: absolute;
      right: 16px;
      top: 16px;

      padding: 5px 8px;

      border: 1px solid rgba(var(--red-rgb), .23);
      border-radius: 999px;

      color: var(--red);
      background: rgba(var(--red-rgb), .06);

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 6px;
      font-weight: 900;

      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .price-card .period {
      color: #7b8490;

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 9px;
      font-weight: 900;

      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .price {
      margin: 15px 0 7px;

      font-size: 38px;
      font-weight: 930;

      letter-spacing: -.05em;
    }

    .price small {
      color: #555e69;

      font-size: 10px;
      letter-spacing: 0;
    }

    .price-note {
      margin: 0 0 19px;

      color: #646d79;

      font-size: 9px;
    }

    .price-list {
      display: grid;
      gap: 10px;

      margin: 19px 0 24px;
      padding: 19px 0 0;

      border-top: 1px solid rgba(255,255,255,.055);
    }

    .price-feature {
      display: flex;
      align-items: center;
      gap: 9px;

      color: #929aa6;

      font-size: 10px;
    }

    .price-feature::before {
      content: "✓";

      color: var(--green);

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-weight: 900;
    }

    .price-card .btn {
      width: 100%;
    }

    /* ---------------------------------------------------------
       FAQ
       --------------------------------------------------------- */

    .faq {
      display: grid;
      gap: 10px;

      max-width: 830px;
      margin-inline: auto;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-question {
      width: 100%;

      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;

      padding: 19px 20px;

      border: 0;

      color: #dce1e8;
      background: transparent;

      cursor: pointer;

      text-align: left;

      font-size: 11px;
      font-weight: 800;
    }

    .faq-plus {
      color: var(--red);

      font-size: 19px;
      font-weight: 300;

      transition: transform .3s var(--ease);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;

      transition: max-height .4s var(--ease);
    }

    .faq-answer p {
      margin: 0;
      padding: 0 20px 20px;

      color: #6f7885;

      font-size: 10px;
      line-height: 1.7;
    }

    .faq-item.open .faq-plus {
      transform: rotate(45deg);
    }

    .faq-item.open .faq-answer {
      max-height: 180px;
    }

    /* ---------------------------------------------------------
       CTA + Footer
       --------------------------------------------------------- */

    .final-cta {
      padding: 75px 0 100px;
    }

    .final-card {
      position: relative;

      overflow: hidden;

      padding: 55px 35px;

      text-align: center;

      border: 1px solid rgba(var(--red-rgb), .24);
      border-radius: 25px;

      background:
        radial-gradient(
          circle at 50% 140%,
          rgba(var(--red-rgb), .18),
          transparent 45%
        ),
        linear-gradient(
          145deg,
          rgba(255,255,255,.045),
          rgba(255,255,255,.01)
        );

      box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        0 0 60px rgba(var(--red-rgb), .05);
    }

    .final-card::before {
      content: "";

      position: absolute;
      inset: 0;

      pointer-events: none;

      background:
        linear-gradient(
          90deg,
          transparent,
          rgba(255,255,255,.035),
          transparent
        );

      transform: translateX(-100%);
      animation: sheen 6s ease-in-out infinite;
    }

    @keyframes sheen {
      0%, 65% { transform: translateX(-120%); }
      100% { transform: translateX(120%); }
    }

    .final-card h2 {
      margin: 12px auto 12px;

      max-width: 740px;

      font-size: clamp(34px, 5vw, 58px);
      font-weight: 930;

      line-height: 1;
      letter-spacing: -.055em;
    }

    .final-card p {
      max-width: 590px;
      margin: 0 auto 26px;

      color: #707986;

      font-size: 12px;
      line-height: 1.7;
    }

    footer {
      position: relative;
      z-index: 2;

      padding: 25px 0 35px;

      border-top: 1px solid rgba(255,255,255,.055);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .footer-brand {
      color: #6a7380;

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 8px;
      font-weight: 800;

      letter-spacing: .10em;
      text-transform: uppercase;
    }

    .footer-brand strong {
      color: #dfe4ea;
    }

    .footer-brand strong span {
      color: var(--red);
    }

    .footer-links {
      display: flex;
      gap: 15px;
    }

    .footer-links a {
      color: #555e69;

      font-size: 8px;
      font-weight: 800;

      letter-spacing: .09em;
      text-transform: uppercase;
    }

    .footer-links a:hover {
      color: var(--red);
    }

    /* ---------------------------------------------------------
       Toast
       --------------------------------------------------------- */

    .toast {
      position: fixed;
      z-index: 2000;

      left: 50%;
      bottom: 26px;

      display: flex;
      align-items: center;
      gap: 9px;

      padding: 11px 14px;

      border: 1px solid rgba(var(--green-rgb), .14);
      border-radius: 10px;

      color: #ccd5ce;

      background: rgba(7,12,9,.90);

      box-shadow:
        0 15px 45px rgba(0,0,0,.45),
        0 0 22px rgba(var(--green-rgb), .05);

      backdrop-filter: blur(12px);

      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 8px;

      opacity: 0;
      pointer-events: none;

      transform: translate(-50%, 18px);

      transition:
        opacity .3s ease,
        transform .4s var(--ease);
    }

    .toast.visible {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    .toast-dot {
      width: 5px;
      height: 5px;

      border-radius: 50%;

      background: var(--green);
      box-shadow: 0 0 9px var(--green);
    }

    /* ---------------------------------------------------------
       Responsive
       --------------------------------------------------------- */

    @media (max-width: 980px) {
      .desktop-nav {
        display: none;
      }

      .header-cta {
        margin-left: auto;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .hero {
        padding-top: 135px;
      }

      .hero-copy {
        text-align: center;
      }

      .hero-copy .eyebrow {
        justify-content: center;
      }

      .hero-description {
        margin-inline: auto;
      }

      .hero-actions,
      .hero-status {
        justify-content: center;
      }

      .hero-visual {
        min-height: auto;
        padding: 30px 0 0;
      }

      .logo-frame {
        width: min(520px, 88%);
      }

      .floating-chip.one {
        left: 2%;
      }

      .floating-chip.two {
        right: 2%;
      }

      .features-grid,
      .steps,
      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .feature-card {
        min-height: auto;
      }

      .mod-menu {
        grid-template-columns: 190px minmax(0, 1fr);
      }

      .ui-sidebar {
        padding-inline: 12px;
      }

      .ui-brand-name {
        font-size: 11px;
      }
    }

    @media (max-width: 760px) {
      .container {
        width: min(100% - 24px, 1180px);
      }

      .header-cta {
        display: none;
      }

      .mobile-menu-button {
        display: block;
      }

      .hero {
        min-height: auto;
        padding-bottom: 55px;
      }

      .hero h1 {
        font-size: clamp(43px, 15vw, 72px);
      }

      .hero-description {
        font-size: 12px;
      }

      .floating-chip {
        display: none;
      }

      .section {
        padding: 78px 0;
      }

      .mod-menu {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .ui-sidebar {
        padding: 14px;

        border-right: 0;
        border-bottom: 1px solid var(--border);
      }

      .ui-brand {
        padding: 0 4px 12px;
      }

      .ui-brand-sub,
      .ui-nav-label,
      .ui-status {
        display: none;
      }

      .ui-nav {
        grid-template-columns: 1fr 1fr;
      }

      .ui-nav-button {
        justify-content: center;
        min-height: 42px;
      }

      .ui-nav-button.active {
        box-shadow: inset 0 -2px var(--red);
      }

      .ui-nav-button.active::after {
        display: none;
      }

      .ui-topbar {
        min-height: 58px;
        padding: 0 18px;
      }

      .ui-content {
        min-height: 610px;
      }

      .ui-panel {
        padding: 22px 17px 28px;
      }

      .ui-stats {
        grid-template-columns: 1fr;
      }

      .ui-stat {
        min-height: 85px;
      }

      .function-footer {
        grid-template-columns: 1fr;
      }

      .profile-chip {
        min-width: 0;
      }

      .final-card {
        padding: 45px 20px;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 480px) {
      .brand-copy small {
        display: none;
      }

      .brand-copy strong {
        font-size: 11px;
      }

      .hero h1 {
        font-size: 45px;
      }

      .logo-frame {
        width: 96%;
        padding: 8px;
        border-radius: 21px;
      }

      .logo-frame img {
        border-radius: 14px;
      }

      .ui-brand-img {
        width: 32px;
        height: 32px;
      }

      .ui-brand-name {
        font-size: 10px;
      }

      .ui-content {
        min-height: 640px;
      }

      .function-card {
        gap: 10px;
        padding: 13px;
      }

      .function-copy p {
        max-width: 170px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
      }
    }
  