:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  background:
    radial-gradient(circle at top left, rgba(255, 194, 102, 0.18), transparent 35%),
    radial-gradient(circle at right center, rgba(107, 123, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #0b1020 0%, #121a33 45%, #09111f 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  color: #f6f7fb;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.page {
  min-height: 100vh;
  padding: 32px;
}

.hero {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.hero-copy,
.signup-panel,
.content-card {
  backdrop-filter: blur(18px);
  background: rgba(11, 17, 35, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 36px;
  z-index: 1;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.brand-mark {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb347, #ff7b54);
  color: #111827;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-tag {
  color: rgba(246, 247, 251, 0.72);
  font-size: 0.95rem;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lede {
  max-width: 62ch;
  margin: 20px 0 28px;
  font-size: 1.07rem;
  line-height: 1.7;
  color: rgba(246, 247, 251, 0.78);
}

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

.feature-card,
.content-card {
  border-radius: 24px;
  padding: 20px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card h3,
.content-card h3,
.panel-top h2,
.success-state h3 {
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: rgba(246, 247, 251, 0.74);
  line-height: 1.6;
}

.signup-panel {
  border-radius: 32px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.panel-top {
  margin-bottom: 20px;
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #a8b4ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.panel-top h2 {
  font-size: 1.85rem;
}

.panel-top p {
  margin: 0;
  color: rgba(246, 247, 251, 0.72);
  line-height: 1.6;
}

.signup-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(246, 247, 251, 0.88);
}

input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

input:focus {
  border-color: rgba(255, 179, 71, 0.9);
  background: rgba(255, 255, 255, 0.09);
}

button {
  border: 0;
  border-radius: 16px;
  padding: 15px 18px;
  font-weight: 800;
  cursor: pointer;
  color: #111827;
  background: linear-gradient(90deg, #ffd36b, #ff8a5c);
  box-shadow: 0 12px 30px rgba(255, 135, 85, 0.24);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
}

.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #f6f7fb;
  box-shadow: none;
}

.error {
  margin: 0;
  color: #ff9f9f;
}

.fine-print {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(246, 247, 251, 0.62);
}

.success-state {
  display: grid;
  gap: 16px;
  padding: 8px 0 4px;
}

.success-badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(81, 211, 134, 0.18);
  color: #8df0b5;
  font-weight: 700;
}

.success-state p {
  margin: 0;
  color: rgba(246, 247, 251, 0.74);
  line-height: 1.6;
}

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

.stats-row div {
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  font-size: 1rem;
  margin-bottom: 4px;
}

.stats-row span {
  color: rgba(246, 247, 251, 0.68);
  font-size: 0.88rem;
}

.content-strip {
  max-width: 1240px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.content-card h3 {
  font-size: 1.15rem;
}

.content-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(246, 247, 251, 0.76);
  line-height: 1.8;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.8;
  pointer-events: none;
}

.orb-a {
  top: -24px;
  right: 18%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 184, 86, 0.5), transparent 70%);
}

.orb-b {
  bottom: 34px;
  left: -18px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(110, 126, 255, 0.38), transparent 72%);
}

@media (max-width: 960px) {
  .page {
    padding: 18px;
  }

  .hero,
  .content-strip {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }
}
