:root {
  --ink: #242733;
  --muted: #626978;
  --line: rgba(44, 47, 61, 0.12);
  --brand: #ff5a4f;
  --brand-2: #ff8b63;
  --green: #78c268;
  --blue: #588de8;
  --dark: #242733;
  --font: "Inter", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 90, 79, 0.18), transparent 30%),
    linear-gradient(245deg, rgba(88, 141, 232, 0.12), transparent 38%),
    linear-gradient(180deg, #fff9f4 0%, #f7fbff 44%, #ffffff 100%);
  color: var(--ink);
  font-family: var(--font);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.beta-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(44, 47, 61, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  padding: 16px clamp(18px, 4vw, 48px);
}

.brand,
.beta-header nav {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 21px;
  font-weight: 950;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(255, 90, 79, 0.26);
}

.beta-header nav {
  gap: 10px;
}

.beta-header nav a {
  border: 1px solid rgba(44, 47, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #343746;
  font-size: 13px;
  font-weight: 850;
  padding: 9px 12px;
}

.beta-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.78fr);
  gap: clamp(24px, 5vw, 56px);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px) clamp(16px, 4vw, 34px) 42px;
}

.hero-copy {
  align-self: center;
  min-height: 560px;
  display: grid;
  align-content: center;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 90, 79, 0.18), transparent 36%),
    linear-gradient(160deg, #242733 0%, #343746 58%, #1f3a49 100%);
  color: #ffffff;
  box-shadow: 0 34px 90px rgba(44, 47, 61, 0.22);
  padding: clamp(28px, 5vw, 58px);
}

.eyebrow {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 11px;
}

.eyebrow.dark {
  border-color: rgba(44, 47, 61, 0.12);
  background: #fff0ed;
  color: #e43e35;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.68;
}

.beta-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(44, 47, 61, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 70px rgba(44, 47, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: clamp(22px, 4vw, 34px);
}

.form-head span {
  display: inline-flex;
  border-radius: 999px;
  background: #fff0ed;
  color: #e43e35;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 11px;
}

.form-head h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.form-head p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: #4f5665;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  outline: none;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 90, 79, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 90, 79, 0.1);
}

.wide-field {
  grid-column: 1 / -1;
}

.consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.submit-button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #ffffff;
  cursor: pointer;
  font-weight: 950;
  box-shadow: 0 18px 34px rgba(255, 90, 79, 0.24);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: #16834f;
}

.form-status[data-state="error"] {
  color: #c9302c;
}

.seo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto 54px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 90, 79, 0.1), transparent 38%),
    #ffffff;
  box-shadow: 0 24px 64px rgba(44, 47, 61, 0.09);
  padding: clamp(26px, 5vw, 44px);
}

.seo-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.seo-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

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

.feature-orbit article {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(44, 47, 61, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcff);
  padding: 20px;
}

.feature-orbit strong {
  color: var(--ink);
  font-size: 22px;
}

.feature-orbit span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .beta-hero,
  .seo-band {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 430px;
  }
}

@media (max-width: 680px) {
  .beta-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .beta-header nav {
    flex-wrap: wrap;
  }

  .beta-hero {
    padding-inline: 12px;
  }

  .hero-copy,
  .beta-form,
  .seo-band {
    border-radius: 20px;
  }

  .field-grid,
  .feature-orbit {
    grid-template-columns: 1fr;
  }
}
