* {
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0d;
  --panel: #111216;
  --panel-2: #181a20;
  --text: #f6f7f9;
  --muted: #a5acb8;
  --line: rgba(255,255,255,0.08);
  --orange: #ff6a00;
  --orange-2: #ff8f3d;
  --white-soft: #f3f3f3;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,106,0,0.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.06), transparent 18%),
    linear-gradient(180deg, #09090b 0%, #0d0f13 100%);
  color: var(--text);
}

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

.site-shell {
  min-height: 100vh;
}

.topbar,
.hero,
.section,
.footer {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  backdrop-filter: blur(14px);
  background: rgba(10,10,13,0.72);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.97rem;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn-small {
  padding: 11px 16px;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  box-shadow: 0 16px 38px rgba(255, 106, 0, 0.25);
}

.btn-secondary,
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  padding: 70px 0 30px;
}

.eyebrow,
.kicker {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--orange-2);
  margin-bottom: 18px;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.cta-copy h2 {
  margin: 0 0 16px;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.hero-text,
.section-heading p,
.split-copy p,
.cta-copy p,
.story-card p,
.feature-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 26px;
  flex-wrap: wrap;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.point {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.point strong,
.feature-card h3,
.story-card h3,
.preview-header h3,
.mini-panel h4 {
  display: block;
  margin-bottom: 8px;
}

.point span,
.preview-header p,
.feed-user span,
.feed-meta,
.stat-card span,
.form-message {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-card {
  width: min(100%, 430px);
  border-radius: 34px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.phone-top {
  display: flex;
  gap: 8px;
  padding: 4px 0 16px;
}

.phone-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

.app-preview {
  background: linear-gradient(180deg, #0e1015, #131720);
  border-radius: 26px;
  padding: 20px;
}

.preview-header,
.feed-user,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-header img {
  width: 40px;
  height: 40px;
  border-radius: 14px;
}

.feed-card,
.mini-panel,
.feature-card,
.story-card,
.stat-card,
.waitlist-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}

.feed-card {
  margin-top: 16px;
}

.feed-card.alt {
  background: rgba(255,106,0,0.08);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #23252d;
  font-weight: 800;
}

.avatar.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.feed-card p {
  margin: 14px 0 10px;
  line-height: 1.6;
}

.feed-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mini-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.mini-panel ul,
.check-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.floating-badge {
  position: absolute;
  right: 0;
  bottom: 8px;
  transform: translate(10%, 15%);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.section {
  padding: 80px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.stats-panel {
  display: grid;
  gap: 16px;
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #f2f4f7;
}

.waitlist-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #0f1218;
  color: var(--text);
  outline: none;
}

.waitlist-form input:focus {
  border-color: rgba(255,106,0,0.6);
  box-shadow: 0 0 0 3px rgba(255,106,0,0.12);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 0 40px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .cta-panel,
  .feature-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

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

  .nav {
    display: none;
  }

  .floating-badge {
    position: static;
    transform: none;
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-wrap: wrap;
    padding-top: 14px;
  }

  .brand span {
    font-size: 1rem;
  }

  .hero {
    padding-top: 36px;
  }

  .mini-panels {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
