@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #070816;
  --bg-2: #0d1024;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.13);
  --stroke: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --muted: #b9c2d8;
  --soft: #dbeafe;
  --primary: #8b5cf6;
  --primary-2: #06b6d4;
  --accent: #f97316;
  --success: #22c55e;
  --danger: #fb7185;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(139, 92, 246, 0.22), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(6, 182, 212, 0.16), transparent 26%),
    linear-gradient(180deg, var(--bg), #0b1025 52%, #060713);
  color: var(--text);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.page-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
}

.page-glow-1 {
  background: #7c3aed;
  right: -160px;
  top: 80px;
}

.page-glow-2 {
  background: #0891b2;
  left: -180px;
  bottom: 40px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(7, 8, 22, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(139,92,246,1), rgba(6,182,212,1));
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.3);
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.nav-links a {
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
  transition: 0.25s ease;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a:hover {
  color: white;
  background: rgba(255,255,255,0.09);
}

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

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 34px rgba(139, 92, 246, 0.28);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}

.btn-glass {
  color: white;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
}

.btn-xl {
  padding: 15px 24px;
  font-size: 16px;
}

.full {
  width: 100%;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 15px;
  background: rgba(255,255,255,0.09);
  cursor: pointer;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background: white;
  display: block;
  margin: 5px auto;
  border-radius: 5px;
}

.hero {
  padding-top: 84px;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #a5f3fc;
  background: rgba(6, 182, 212, 0.10);
  border: 1px solid rgba(6, 182, 212, 0.20);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(34,197,94,0.55);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  to { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
}

.hero h1,
.section-head h2,
.preview-content h2,
.features-copy h2,
.launch-card h2,
.split-card h2 {
  margin: 22px 0 18px;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #fff, #a5f3fc, #c4b5fd);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text,
.section-head p,
.preview-content p,
.features-copy p,
.launch-card p,
.split-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  gap: 12px;
}

.hero-stats div {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  color: white;
  margin-bottom: 5px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.phone-frame {
  width: min(420px, 92vw);
  min-height: 600px;
  border-radius: 44px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto;
  height: 290px;
  background: radial-gradient(circle, rgba(139,92,246,.65), transparent 64%);
}

.phone-top {
  width: 126px;
  height: 26px;
  border-radius: 0 0 18px 18px;
  background: rgba(0,0,0,.32);
  margin: -26px auto 28px;
  position: relative;
  z-index: 2;
}

.h5-card {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(145deg, rgba(15,23,42,.95), rgba(67,56,202,.62));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  padding: 24px;
  min-height: 280px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}

.mini-label {
  color: #a5f3fc;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 900;
}

.h5-card h3 {
  margin: 13px 0 12px;
  font-size: 29px;
}

.score-line {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.score-line span {
  font-size: 48px;
  font-weight: 900;
}

.score-line em {
  font-style: normal;
  color: #86efac;
  background: rgba(34,197,94,.13);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
}

.market-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 110px;
  margin-top: 22px;
}

.market-bars i {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #22d3ee, #8b5cf6);
  animation: barFloat 2.4s ease-in-out infinite alternate;
}

.market-bars i:nth-child(even) { animation-delay: .35s; }

@keyframes barFloat {
  to { transform: scaleY(.76); opacity: .78; }
}

.floating-pill {
  position: absolute;
  z-index: 5;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
  font-weight: 900;
  font-size: 13px;
}

.pill-a { top: 172px; right: -20px; animation: floatY 3s ease-in-out infinite; }
.pill-b { top: 305px; left: -18px; animation: floatY 3.4s ease-in-out infinite reverse; }
.pill-c { bottom: 132px; right: 42px; animation: floatY 3.7s ease-in-out infinite; }

@keyframes floatY {
  50% { transform: translateY(-14px); }
}

.h5-mini-grid {
  z-index: 2;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.h5-mini-grid span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.11);
  color: var(--soft);
  font-weight: 900;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.045);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 18px 0;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--muted);
  font-weight: 900;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

.split-card,
.launch-card {
  border-radius: var(--radius);
  padding: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

.split-card {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
}

.mini-dashboard {
  display: grid;
  gap: 13px;
}

.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(2,6,23,.38);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--muted);
  font-weight: 800;
}

.dash-row b {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.section-head h2,
.preview-content h2,
.features-copy h2,
.launch-card h2,
.split-card h2 {
  font-size: clamp(30px, 3.2vw, 52px);
}

.section-head code {
  color: #a5f3fc;
  background: rgba(6,182,212,.08);
  border: 1px solid rgba(6,182,212,.16);
  padding: 2px 6px;
  border-radius: 8px;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.tab {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: .25s ease;
}

.tab.active,
.tab:hover {
  color: white;
  background: linear-gradient(135deg, rgba(139,92,246,.82), rgba(6,182,212,.72));
}

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

.script-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 30px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(var(--card-color), .38), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 54px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border .25s ease, background .25s ease;
}

.script-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.22);
}

.script-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  top: -70px;
  left: -65px;
  background: rgba(var(--card-color), .2);
  filter: blur(4px);
}

.script-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 30px;
  margin-bottom: 16px;
}

.script-card h3 {
  margin: 0 0 11px;
  font-size: 23px;
  line-height: 1.35;
}

.script-card p {
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 18px;
}

.script-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.script-tags span {
  font-size: 12px;
  font-weight: 900;
  color: #dbeafe;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  padding: 7px 10px;
  border-radius: 999px;
}

.script-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.script-link {
  width: 100%;
  justify-content: center;
}

.script-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(2,6,23,.32);
  border: 1px solid rgba(255,255,255,.08);
}

.status-ready {
  color: #86efac;
}

.status-soon {
  color: #fde68a;
}

.preview-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 38px;
  align-items: center;
}

.preview-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow);
}

#auraCanvas {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  background: #0f172a;
}

.preview-caption {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 6px 4px;
}

.preview-caption span {
  color: var(--muted);
  font-size: 14px;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.check-list li {
  color: var(--soft);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 13px 16px;
  border-radius: 18px;
}

.check-list li::before {
  content: "✓";
  margin-left: 10px;
  color: #86efac;
  font-weight: 900;
}

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

.step-card,
.feature-item {
  border-radius: 26px;
  padding: 24px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.10);
}

.step-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 900;
  margin-bottom: 18px;
}

.step-card h3,
.feature-item h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.step-card p,
.feature-item p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.features-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.features-copy {
  position: sticky;
  top: 110px;
}

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

.feature-item span {
  font-size: 34px;
  display: block;
  margin-bottom: 12px;
}

.launch-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(249,115,22,.18), transparent 42%),
    linear-gradient(135deg, rgba(139,92,246,.18), rgba(6,182,212,.10));
}

.code-box {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.code-box code {
  direction: ltr;
  text-align: left;
  display: block;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(2,6,23,.45);
  border: 1px solid rgba(255,255,255,.10);
  color: #a5f3fc;
}

.footer {
  padding: 54px 0 38px;
  background: rgba(0,0,0,.22);
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .75fr .75fr 1fr;
  gap: 28px;
}

.footer p,
.footer a,
.footer button,
.footer span {
  color: var(--muted);
}

.footer h3 {
  margin: 0 0 14px;
}

.footer a,
.link-btn {
  display: block;
  margin: 10px 0;
}

.link-btn {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: 15px;
}

.footer-brand {
  margin-bottom: 16px;
}

.copyright {
  display: block;
  margin-top: 18px;
  font-size: 13px;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
}

.auth-modal.active {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,.78);
  backdrop-filter: blur(16px);
}

.modal-card {
  position: relative;
  width: min(480px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 30px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(15,23,42,.97), rgba(17,24,39,.95));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  left: 18px;
  top: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: white;
  font-size: 25px;
  cursor: pointer;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background: rgba(255,255,255,.06);
  padding: 7px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.auth-tab {
  border: 0;
  cursor: pointer;
  border-radius: 15px;
  padding: 12px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
}

.auth-tab.active {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.auth-panel {
  display: none;
}

.auth-panel.active {
  display: block;
}

.auth-panel h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.auth-panel p,
.auth-note {
  color: var(--muted);
  line-height: 1.8;
}

.auth-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.auth-form label {
  color: var(--soft);
  font-weight: 800;
  font-size: 14px;
}

.auth-form input {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: white;
  outline: 0;
  padding: 14px 15px;
  border-radius: 16px;
  font-size: 15px;
}

.auth-form input:focus {
  border-color: rgba(6,182,212,.65);
}

.divider {
  position: relative;
  text-align: center;
  margin: 22px 0;
}

.divider::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,.11);
}

.divider span {
  position: relative;
  background: #101827;
  padding: 0 12px;
  color: var(--muted);
}

.social-btn {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 13px;
  color: white;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font-weight: 900;
  margin-top: 10px;
}

.social-btn.google::before {
  content: "G";
  display: inline-grid;
  place-items: center;
  margin-left: 8px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: white;
  color: #111;
}

.social-btn.facebook::before {
  content: "f";
  display: inline-grid;
  place-items: center;
  margin-left: 8px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #1877f2;
  color: white;
}

.auth-note {
  font-size: 13px;
  margin: 18px 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: .18s;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-card,
  .preview-grid,
  .features-layout,
  .launch-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-visual {
    min-height: auto;
  }

  .features-copy {
    position: static;
  }

  .scripts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 82px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 12px;
    background: rgba(10, 13, 30, .96);
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .menu-btn {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .scripts-grid,
  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    min-height: 545px;
  }

  .floating-pill {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .nav-wrap {
    height: 72px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-text,
  .section-head p,
  .preview-content p,
  .features-copy p,
  .launch-card p,
  .split-card p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .btn-xl {
    width: 100%;
  }

  .split-card,
  .launch-card {
    padding: 24px;
    border-radius: 24px;
  }

  .script-card {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* Firebase Auth UI additions */
.user-mini {
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

.user-mini:not([hidden]) {
  display: inline-flex;
}

.mini-logout {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(251,113,133,.22);
  font-weight: 900;
}

.auth-message {
  margin-top: 15px;
  padding: 12px 14px;
  border-radius: 16px;
  line-height: 1.7;
  font-weight: 800;
  background: rgba(6,182,212,.12);
  border: 1px solid rgba(6,182,212,.20);
  color: #cffafe;
}

.auth-message.error {
  background: rgba(251,113,133,.12);
  border-color: rgba(251,113,133,.25);
  color: #ffe4e6;
}

.auth-message.success {
  background: rgba(34,197,94,.12);
  border-color: rgba(34,197,94,.25);
  color: #dcfce7;
}
