
    :root {
      --bg-dark: #050509;
      --bg-light: #f5f2ec;
      --accent-gold: #f5b342;
      --accent-deep-gold: #c7871c;
      --accent-red: #a2342a;
      --text-light: #f8f5ee;
      --text-dark: #1a130a;
      --muted-light: #b7aa97;
      --muted-dark: #6f6560;
      --card-dark: #161018;
      --card-light: #ffffff;
      --border-dark: #2b2220;
      --border-light: #ded2c0;
      --shadow-soft-dark: 0 22px 45px rgba(0,0,0,0.6);
      --shadow-soft-light: 0 18px 40px rgba(0,0,0,0.12);
      --radius-lg: 18px;
      --radius-md: 12px;
      --radius-sm: 999px;
      --transition-fast: 0.2s ease-out;
      --transition-med: 0.3s ease-in-out;
    }

    html[data-theme="dark"] {
      --bg: var(--bg-dark);
      --bg-alt: #0d090f;
      --text: var(--text-light);
      --muted: var(--muted-light);
      --card: var(--card-dark);
      --border: var(--border-dark);
      --shadow-soft: var(--shadow-soft-dark);
      --hero-glow: radial-gradient(circle at top left, rgba(245,179,66,0.32), transparent 55%);
      --hero-glow-2: radial-gradient(circle at bottom right, rgba(162,53,26,0.33), transparent 60%);
    }

    html[data-theme="light"] {
      --bg: var(--bg-light);
      --bg-alt: #fff9f2;
      --text: var(--text-dark);
      --muted: var(--muted-dark);
      --card: var(--card-light);
      --border: var(--border-light);
      --shadow-soft: var(--shadow-soft-light);
      --hero-glow: radial-gradient(circle at top left, rgba(245,179,66,0.28), transparent 55%);
      --hero-glow-2: radial-gradient(circle at bottom right, rgba(162,53,26,0.2), transparent 60%);
    }

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

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

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

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      min-height: 100vh;
      background:
        linear-gradient(145deg, rgba(0,0,0,0.9), rgba(5,3,10,0.96)),
        var(--hero-glow),
        var(--hero-glow-2);
      color: var(--text);
    }

    .page-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 20px 20px 64px;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 0 18px;
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(18px);
      background: linear-gradient(
        to bottom,
        rgba(5,3,10,0.96),
        rgba(5,3,10,0.86),
        transparent
      );
      border-bottom: 1px solid rgba(245,179,66,0.28);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background:
        radial-gradient(circle at 30% 18%, rgba(255,255,255,0.55), transparent 55%),
        radial-gradient(circle at 18% 88%, rgba(162,51,26,0.8), transparent 60%),
        radial-gradient(circle at 88% 40%, rgba(245,179,66,0.8), transparent 55%),
        #231310;
      box-shadow:
        0 0 0 1px rgba(245,179,66,0.4),
        0 14px 28px rgba(0,0,0,0.55);
      position: relative;
      overflow: hidden;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 20% 28%;
      border-radius: 50%;
      border: 2px solid rgba(0,0,0,0.7);
      box-shadow:
        inset 0 0 8px rgba(0,0,0,0.8),
        0 0 16px rgba(0,0,0,0.7);
    }

    .brand-text-main {
      font-weight: 600;
      letter-spacing: 0.04em;
      font-size: 14px;
      text-transform: uppercase;
    }

    .brand-text-sub {
      font-size: 11px;
      opacity: 0.7;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 7px 14px;
    }

    .brand-text-sub {
      font-size: 10px; /* Smaller subtext */
      opacity: 0.7;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 8px; /* Smaller padding */
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      padding: 7px 14px;
      font-size: 13px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      background: transparent;
      color: var(--text);
      transition: background var(--transition-fast), color var(--transition-fast),
                  border-color var(--transition-fast), transform 0.1s ease-out,
                  box-shadow 0.15s ease-out;
    }

    .btn-primary {
      background: linear-gradient(140deg, var(--accent-gold), var(--accent-deep-gold));
      color: #1a1308;
      border-color: rgba(255,255,255,0.1);
      box-shadow:
        0 12px 24px rgba(0,0,0,0.55),
        0 0 0 1px rgba(0,0,0,0.5);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow:
        0 16px 32px rgba(0,0,0,0.7),
        0 0 0 1px rgba(0,0,0,0.7);
      background: linear-gradient(150deg, #ffd27e, var(--accent-gold));
    }

    .btn-secondary {
      border-color: rgba(245,179,66,0.45);
      background: rgba(12,8,14,0.85);
    }

    .btn-secondary:hover {
      background: rgba(30,20,33,0.98);
      border-color: rgba(245,179,66,0.85);
    }

    .btn-ghost {
      border-color: rgba(140,120,105,0.5);
      background: rgba(10,7,12,0.7);
      font-size: 12px;
      padding: 6px 12px;
    }

    .btn-ghost:hover {
      background: rgba(26,19,28,0.95);
      border-color: rgba(245,179,66,0.8);
    }

    .theme-icon {
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 20%, #fff7d1, #f5b342 45%, #c07224 75%);
      box-shadow:
        0 0 10px rgba(245,179,66,0.8),
        inset 0 0 4px rgba(0,0,0,0.45);
    }

    .theme-icon.dark {
      background: radial-gradient(circle at 30% 20%, #f7f2d2, #f5b342 45%, #a2342a 85%);
    }

    .theme-icon.light {
      background: radial-gradient(circle at 30% 20%, #fffaf1, #ffe5a5 50%, #f0c46a 85%);
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 42px;
      padding: 40px 0 40px;
      align-items: center;
    }


    @media (max-width: 840px) {
      header {
        position: static;
      }
      .brand-text-sub {
        font-size: 9px;
        padding: 3px 6px;
      }
      .hero {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 28px;
      }
    }

    @media (max-width: 640px) {
      .brand-text-sub {
        font-size: 8.5px;
        display: none; /* Hide subtext on very small screens */
      }
      .header-actions .btn-ghost {
        display: none; /* Hide secondary button on tiny screens */
      }
    }

    .hero-kicker {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-kicker span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(10,5,3,0.75);
      border: 1px solid rgba(245,179,66,0.5);
      color: var(--accent-gold);
      box-shadow: 0 0 12px rgba(0,0,0,0.9);
    }

    .hero-title {
      font-size: clamp(30px, 4vw, 40px);
      line-height: 1.08;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .hero-title span {
      color: var(--accent-gold);
    }

    .hero-subtitle {
      font-size: 15px;
      color: var(--muted);
      max-width: 520px;
      margin-bottom: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 16px;
    }

    .hero-footnote {
      font-size: 11px;
      color: var(--muted);
      max-width: 420px;
    }

    .hero-footnote strong {
      color: var(--accent-gold);
      font-weight: 600;
    }

    .hero-panel {
      border-radius: 22px;
      padding: 14px 14px 16px;
      background:
        radial-gradient(circle at 20% 0%, rgba(245,179,66,0.27), transparent 55%),
        radial-gradient(circle at 100% 80%, rgba(162,53,26,0.6), transparent 55%),
        rgba(3,0,8,0.96);
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(245,179,66,0.45);
      position: relative;
      overflow: hidden;
    }

    .hero-panel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
    }

    .hero-panel-badge {
      padding: 3px 9px;
      border-radius: 999px;
      border: 1px solid rgba(245,179,66,0.6);
      background: rgba(5,0,0,0.85);
      color: var(--accent-gold);
    }

    .hero-panel-main {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 12px;
      align-items: flex-start;
    }

    @media (max-width: 640px) {
      .hero-panel-main {
        grid-template-columns: 1fr;
      }
    }

    .hero-preview {
      border-radius: 16px;
      background:
        radial-gradient(circle at 26% 20%, rgba(255,255,255,0.17), transparent 55%),
        radial-gradient(circle at 85% 80%, rgba(242,180,90,0.8), transparent 60%),
        #1b1012;
      border: 1px solid rgba(245,179,66,0.6);
      padding: 10px;
      position: relative;
      overflow: hidden;
    }

    .hero-preview-inner {
      aspect-ratio: 4 / 3;
      border-radius: 12px;
      background:
        radial-gradient(circle at 30% 15%, rgba(250,240,220,0.95), transparent 60%),
        radial-gradient(circle at 15% 80%, rgba(145,60,40,0.9), transparent 65%),
        radial-gradient(circle at 85% 60%, rgba(22,8,6,0.95), transparent 70%),
        linear-gradient(150deg, #2a1910, #090309);
      position: relative;
      overflow: hidden;
      box-shadow:
        inset 0 0 18px rgba(0,0,0,0.9),
        0 14px 40px rgba(0,0,0,0.85);
    }

    .hero-preview-figure {
      position: absolute;
      inset: 10% 18% 12% 40%;
      background: radial-gradient(circle at 40% 20%, #f8e8d4, #d4b599 50%, #5d3522 85%);
      border-radius: 50% 50% 44% 52%;
      box-shadow:
        12px 0 20px rgba(0,0,0,0.8),
        0 14px 20px rgba(0,0,0,0.9);
    }

    .hero-preview-figure::after {
      content: "";
      position: absolute;
      inset: 35% 10% 12% 14%;
      border-radius: 55% 50% 40% 60%;
      background: linear-gradient(135deg, rgba(0,0,0,0.8), transparent 20%, rgba(0,0,0,0.9));
    }

    .hero-preview-light {
      position: absolute;
      inset: 10% 55% 45% 16%;
      border-radius: 60%;
      background: radial-gradient(circle at 35% 15%, #fffef8, rgba(255,249,220,0.35), transparent 70%);
      mix-blend-mode: screen;
      opacity: 0.9;
    }

    .hero-preview-frame {
      position: absolute;
      inset: 7% 8%;
      border-radius: 12px;
      border: 2px solid rgba(70,49,24,0.9);
      box-shadow:
        inset 0 0 16px rgba(0,0,0,0.85),
        0 0 0 1px rgba(250,220,165,0.55);
    }

    .hero-preview-caption {
      position: absolute;
      left: 10px;
      bottom: 8px;
      padding: 4px 7px;
      border-radius: 999px;
      background: rgba(0,0,0,0.8);
      color: #f9f1dd;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-preview-caption span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #f5b342;
      box-shadow: 0 0 10px rgba(245,179,66,0.85);
    }

    .hero-preview-stats {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 8px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
    }

    .hero-preview-stats strong {
      color: var(--accent-gold);
      font-weight: 600;
    }

    .hero-meta {
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .hero-meta strong {
      color: var(--accent-gold);
      font-weight: 600;
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }

    .pill {
      font-size: 11px;
      padding: 4px 9px;
      border-radius: 999px;
      border: 1px solid rgba(245,179,66,0.55);
      background: rgba(12,0,0,0.75);
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .pill span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent-gold);
      opacity: 0.8;
    }

    .hero-login {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px dashed rgba(245,179,66,0.6);
    }

    .hero-login label {
      font-size: 11px;
      color: var(--muted);
    }

    .hero-login input {
      width: 100%;
      border-radius: 999px;
      border: 1px solid rgba(245,179,66,0.6);
      background: rgba(6,0,0,0.92);
      padding: 7px 10px;
      font-size: 12px;
      color: var(--text);
      outline: none;
    }

    .hero-login input::placeholder {
      color: rgba(200,180,152,0.7);
    }

    .hero-login button {
      width: 100%;
      justify-content: center;
    }

  /* Simplified, modernized hero preview styling */

  .hero-backdrop {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(
      circle at 40% 30%,
      rgba(245,179,66,0.25),
      rgba(5,0,0,0.9)
    );
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
    z-index: 1;
  }

  .hero-shape {
    position: absolute;
    inset: 20% 30% 25% 35%;
    border-radius: 50%;
    background: radial-gradient(
      circle at 50% 30%,
      rgba(250,239,213,0.95),
      rgba(194,141,60,0.9),
      rgba(30,18,12,1)
    );
    box-shadow: 0 10px 30px rgba(0,0,0,0.75);
    z-index: 2;
  }

  .hero-outline {
    position: absolute;
    inset: 6%;
    border-radius: 10px;
    border: 2px solid rgba(245,179,66,0.45);
    box-shadow: 0 0 25px rgba(245,179,66,0.25);
    z-index: 3;
  }

    main {
      margin-top: 18px;
    }

    section {
      padding: 22px 0;
      border-top: 1px solid rgba(104,74,58,0.5);
    }

    .section-header {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 12px;
    }

    .section-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--muted);
    }

    .section-title {
      font-size: 18px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .section-body {
      font-size: 14px;
      color: var(--muted);
      max-width: 720px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 18px;
      align-items: flex-start;
    }

    @media (max-width: 840px) {
      .grid-2 {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .card {
      border-radius: var(--radius-md);
      border: 1px solid rgba(245,179,66,0.45);
      background: rgba(6,0,0,0.85);
      padding: 14px;
      box-shadow: var(--shadow-soft);
    }

    .card h3 {
      font-size: 15px;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .card p {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .card-list {
      list-style: none;
      margin: 8px 0 0;
      padding: 0;
    }

    .card-list li {
      font-size: 13px;
      color: var(--muted);
      padding-left: 14px;
      position: relative;
      margin-bottom: 4px;
    }

    .card-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--accent-gold);
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 6px;
    }

    .pill-small {
      font-size: 11px;
      padding: 3px 8px;
      border-radius: 999px;
      border: 1px solid rgba(140,120,105,0.7);
      color: var(--muted);
      background: rgba(8,0,0,0.8);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 12px;
      margin-top: 12px;
    }

    .feature {
      border-radius: 14px;
      border: 1px solid rgba(104,74,58,0.8);
      padding: 10px 11px;
      background: rgba(6,0,0,0.9);
    }

    .feature h4 {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 4px;
    }

    .feature p {
      font-size: 12px;
      color: var(--muted);
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 12px;
      margin-top: 10px;
    }

    .timeline-step {
      border-radius: 12px;
      border: 1px dashed rgba(245,179,66,0.7);
      padding: 10px 11px;
      background: rgba(10,0,0,0.9);
      font-size: 12px;
      color: var(--muted);
    }

    .timeline-step strong {
      display: block;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent-gold);
      margin-bottom: 4px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 18px;
      align-items: flex-start;
    }

    @media (max-width: 840px) {
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 13px;
    }

    .contact-form label {
      display: flex;
      flex-direction: column;
      gap: 4px;
      color: var(--muted);
    }

    .contact-form input,
    .contact-form textarea {
      border-radius: 10px;
      border: 1px solid rgba(245,179,66,0.5);
      background: rgba(6,0,0,0.94);
      padding: 7px 10px;
      color: var(--text);
      font-size: 13px;
      outline: none;
    }

    .contact-form textarea {
      min-height: 90px;
      resize: vertical;
    }

    .contact-form button {
      align-self: flex-start;
      margin-top: 4px;
    }

    .contact-meta {
      font-size: 13px;
      color: var(--muted);
    }

    .contact-meta strong {
      color: var(--accent-gold);
    }

    footer {
      font-size: 11px;
      color: var(--muted);
      padding-top: 22px;
      border-top: 1px solid rgba(104,74,58,0.6);
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 8px;
    }

    footer a {
      text-decoration: underline;
      text-decoration-color: rgba(245,179,66,0.7);
    }

    body.dark main {
      background: transparent;
    }

    /* Flaming RStriking logo */
    .logo {
      display: inline-block;
      padding: 2px 5px;
      border: 2px solid #ff4400;
      border-radius: 8px;
      font-family: 'Trebuchet MS', sans-serif;
      font-weight: bold;
      font-size: 2.2rem;
      color: #ffcc77;
      background: linear-gradient(180deg, #330000 0%, #111 100%);
      letter-spacing: 2px;
      text-shadow: 0 0 10px #ff6600, 0 0 20px #ff3300, 0 0 40px #ff9933;
      animation: flicker 2s infinite ease-in-out alternate;
      box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
    }

    .logo span {
      color: #fff4d9;
      text-shadow: 0 0 20px #ffaa33, 0 0 30px #ff6600;
    }

    .logo-tm {
      font-size: 0.4em;
      vertical-align: super;
      margin-left: 0.15em;
      opacity: 0.9;
      color: var(--accent-gold);
    }

    .tagline {
      position: absolute;
      top: 60px;
      bottom: 6px;
      right: 10px;
      font-family: 'Trebuchet MS', sans-serif;
      font-size: 0.6rem;
      color: #ffcc77;
      opacity: 0.75;
      letter-spacing: 0.5px;
    }

    @keyframes flicker {
      0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255,69,0,0.4), 0 0 40px rgba(255,99,71,0.4);
      }
      20%, 24%, 55% {
        opacity: 0.85;
        box-shadow: 0 0 10px rgba(255,69,0,0.3), 0 0 20px rgba(255,99,71,0.3);
      }
    }    

    .logo-container {
      /* width: 40vw; */ /* responsive width */
      width: 268px;      /* set width */
      height: 60px;      /* set height */
      aspect-ratio: 3 / 1;     /* keeps rectangular shape */
      display: flex;
      justify-content: left;
      align-items: center;
      background: #000; /* optional background color */
      /* border: 2px solid #ff4400; */ /* optional border matching logo */
      /* border-radius: 12px; */       /* optional rounded box edges */
      margin: 40px auto;
      box-shadow: 0 0 30px rgba(255, 69, 0, 0.3);
      position: relative;
      /* padding: 10px 20px; */
    }
 
    /* Stealth mode login overlay - light blurring of background */
    /*
    .stealth-mode-login-gate-overlay {
      position: fixed;
      inset: 0;
      backdrop-filter: blur(16px);
      background: rgba(0,0,0,0.75);
      z-index: 1200;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    */

    /* Deeper, cross-browser background blur for stealth gate */
    .stealth-mode-login-gate-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.82); /* strong dark overlay */
      -webkit-backdrop-filter: blur(30px) brightness(0.3);
      backdrop-filter: blur(30px) brightness(0.3);
      z-index: 1200;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Optional extra fallback for browsers without blur support */
    @supports not ((backdrop-filter: blur(30px))) {
      .stealth-mode-login-gate-overlay {
        background: rgba(10, 10, 10, 0.95);
      }
    }

    .stealth-mode-login-gate-overlay .stealth-box {
      background: rgba(16,10,20,0.92);
      border-radius: 12px;
      border: 1px solid rgba(245,179,66,0.5);
      padding: 26px 28px 22px;
      max-width: 340px;
      width: 90%;
      color: #f8f5ee;
      text-align: center;
      box-shadow: 0 22px 45px rgba(0,0,0,0.7);
    }
    .stealth-box h2 {
      font-size: 1.2rem;
      color: #f5b342;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .stealth-box p {
      font-size: 0.9rem;
      color: #b7aa97;
      margin-bottom: 16px;
    }
    .stealth-box input {
      width: 100%;
      margin-bottom: 10px;
      padding: 9px;
      border-radius: 6px;
      border: 1px solid rgba(245,179,66,0.6);
      background: #0b060a;
      font-size: 13px;
      color: #f8f5ee;
      outline: none;
    }
    .stealth-box button {
      width: 100%;
      padding: 9px;
      background: linear-gradient(120deg, #f5b342, #c7871c);
      border: none;
      border-radius: 8px;
      font-weight: 600;
      color: #1a1308;
      cursor: pointer;
    }
    .stealth-box .status {
      margin-top: 10px;
      font-size: 0.85rem;
    }



    /* ++++++++++++ Overides: Broaden layout across all form factors ++++++++++++ */
    .page-inner,
    .hero,
    section {
      max-width: none !important;
      width: 100% !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      padding-left: 4vw;
      padding-right: 4vw;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-inner,
      .hero,
      section {
        padding-left: 5vw;
        padding-right: 5vw;
      }
    }

    /* Prevent unexpected body overflow on mobile */
    body, html {
      overflow-x: hidden;
    }
