:root {
  --primary: #5b21b6;
  --primary-bright: #7c3aed;
  --primary-light: #9b5cff;
  --secondary: #06b6d4;
  --secondary-bright: #22d3ee;
  --highlight: #f97316;
  --background: #050816;
  --background-soft: #091126;
  --surface: #0d1630;
  --surface-light: #111d3b;
  --text: #f8fafc;
  --muted: #a8b2c7;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 65% 35%, rgba(91, 33, 182, 0.16), transparent 28rem),
    radial-gradient(circle at 100% 90%, rgba(6, 182, 212, 0.08), transparent 28rem),
    var(--background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 75%);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: #fff;
  background: #000;
  border-radius: .75rem;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page {
  width: min(100% - 2.5rem, 1440px);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 100px;
  gap: clamp(2rem, 5vw, 6rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: .7rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 18px rgba(124, 58, 237, .45));
}

.brand-word {
  color: var(--secondary-bright);
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -.06em;
}

.brand-word span {
  color: var(--primary-light);
}


.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 1.65rem;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button:focus-visible,
.brand:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(34, 211, 238, .5);
  outline-offset: 4px;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-bright) 55%, var(--primary));
  box-shadow:
    0 16px 38px rgba(91, 33, 182, .38),
    inset 0 1px 0 rgba(255,255,255,.24);
}

.button-outline {
  color: #fff;
  background: rgba(5, 8, 22, .62);
  border-color: rgba(34, 211, 238, .8);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, .08);
}

.button-small {
  min-height: 48px;
  padding-inline: 1.25rem;
  font-size: .9rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100vh - 100px);
  align-items: center;
  gap: 2rem;
  padding: 3rem 0 5.5rem;
  isolation: isolate;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .8;
}

.hero-orb-left {
  top: 18%;
  left: -12rem;
  width: 30rem;
  height: 30rem;
  background: rgba(91, 33, 182, .19);
}

.hero-orb-right {
  right: -12rem;
  bottom: 2%;
  width: 34rem;
  height: 34rem;
  background: rgba(124, 58, 237, .17);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 1120px);
  padding-left: clamp(0rem, 2vw, 2.4rem);
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--secondary-bright);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}


.hero-intro {
  max-width: 42rem;
  margin: 2.3rem 0 0;
  color: #d4d9e5;
  font-size: clamp(1.1rem, 1.4vw, 1.38rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.3rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
  margin-top: 4rem;
}

.mini-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .9rem;
}

.mini-feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  box-shadow:
    0 14px 30px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.28);
}

.mini-feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-violet {
  background: linear-gradient(135deg, #8b5cf6, #5b21b6);
}

.icon-cyan {
  background: linear-gradient(135deg, #22d3ee, #0891b2);
}

.icon-orange {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}

.mini-feature h2 {
  margin: .05rem 0 .22rem;
  font-size: 1rem;
}

.mini-feature p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}



.hero-main-type {
  position: relative;
  display: flex;
  width: min(100%, 980px);
  flex-direction: column;
  align-items: flex-start;
  margin-top: .25rem;
  text-align: left;
}

.hero-main-solid,
.hero-main-outline,
.hero-main-gradient {
  display: block;
  text-transform: uppercase;
  font-size: clamp(5rem, 7.8vw, 9rem);
  font-weight: 800;
  line-height: .79;
  letter-spacing: -.082em;
}

.hero-main-solid {
  color: #fff;
  text-shadow:
    0 0 42px rgba(255, 255, 255, .08),
    0 18px 48px rgba(0, 0, 0, .3);
}

.hero-main-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, .34);
  text-stroke: 2px rgba(255, 255, 255, .34);
}

.hero-main-gradient {
  color: transparent;
  background:
    linear-gradient(
      90deg,
      var(--primary-light) 0%,
      #8b5cf6 36%,
      var(--secondary-bright) 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 34px rgba(124, 58, 237, .24));
}




.hero-tagline {
  margin: 2.35rem 0 0;
  color: #f8fafc;
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -.03em;
}

.hero-space {
  position: absolute;
  inset: 0;
  z-index: -1;
  min-height: 100%;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
}

.space-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(55px);
}

.space-glow-one {
  left: 12%;
  bottom: 1%;
  width: 72%;
  height: 36%;
  background:
    linear-gradient(
      90deg,
      rgba(91, 33, 182, .02),
      rgba(124, 58, 237, .7) 50%,
      rgba(236, 72, 153, .52)
    );
  transform: rotate(-8deg);
}

.space-glow-two {
  top: 18%;
  left: 28%;
  width: 48%;
  aspect-ratio: 1;
  background: rgba(91, 33, 182, .22);
  filter: blur(95px);
}

.space-grid {
  position: absolute;
  inset: 4% 18% 5% 0;
  z-index: -3;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(120deg, transparent 0%, rgba(0,0,0,.8) 45%, transparent 95%);
}

.space-line {
  position: absolute;
  left: 10%;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, .5), transparent);
  transform: rotate(-9deg);
}

.space-line-one {
  bottom: 29%;
}

.space-line-two {
  bottom: 22%;
  opacity: .55;
}

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

  .hero-main-context {
    display: none;
  }

  .space-glow-one {
    left: 0;
    width: 88%;
    height: 46%;
  }

  .space-glow-two {
    left: 18%;
    width: 58%;
  }
}

@media (max-width: 720px) {
  .hero-main-solid,
  .hero-main-outline,
  .hero-main-gradient {
    font-size: clamp(3.8rem, 18vw, 6.3rem);
    line-height: .82;
  }

  .hero-main-outline {
    -webkit-text-stroke-width: 1px;
  }

  


.hero-tagline {
    margin-top: 1.4rem;
    font-size: 1.1rem;
  }

}

.signup-panel {
  display: grid;
  grid-template-columns: 1fr minmax(360px, .85fr);
  gap: 3rem;
  align-items: center;
  margin: 1rem 0 5rem;
  padding: clamp(2rem, 4vw, 4rem);
  background:
    linear-gradient(135deg, rgba(17,29,59,.94), rgba(8,15,33,.95));
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}

.signup-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -.055em;
}

.signup-panel > div > p:last-child {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.signup-form label {
  display: block;
  margin-bottom: .65rem;
  font-size: .9rem;
  font-weight: 700;
}

.signup-row {
  display: flex;
  gap: .75rem;
}

.signup-row input {
  min-width: 0;
  min-height: 56px;
  flex: 1;
  padding: 0 1rem;
  color: var(--text);
  background: #071024;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
}

.signup-form > p {
  margin: .65rem 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0 2.2rem;
  color: #7f8ca5;
  font-size: .82rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
}

@media (max-width: 1140px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 5rem;
  }

  .hero-copy {
    max-width: 850px;
    padding-left: 0;
  }

  .signup-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 1.25rem, 1440px);
  }

  .site-header {
    min-height: 80px;
  }

  .brand-word {
    font-size: 1.55rem;
  }

  .site-header > .button {
    min-height: 42px;
    padding-inline: .95rem;
    font-size: .78rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5.7rem);
  }

  .hero-intro {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 3rem;
  }

  .signup-panel {
    padding: 1.5rem;
  }

  .signup-row {
    flex-direction: column;
  }

  .signup-row .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


/* Final hero composition */
.hero-type-layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2.5rem);
  width: min(100%, 1080px);
}

.hero-main-type {
  margin: 0;
}

.hero-main-context {
  position: static;
  display: flex;
  align-self: stretch;
  justify-content: center;
  gap: clamp(.8rem, 1.7vh, 1.35rem);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, .44);
  font-size: clamp(.58rem, .72vw, .7rem);
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-main-context span {
  white-space: nowrap;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-message {
  margin-bottom: 1rem;
  padding: .85rem 1rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 650;
}

.form-message-success {
  color: #d1fae5;
  background: rgba(22, 163, 74, .18);
  border: 1px solid rgba(74, 222, 128, .36);
}

.form-message-error,
.field-error {
  color: #fecaca;
}

.form-message-error {
  background: rgba(220, 38, 38, .15);
  border: 1px solid rgba(248, 113, 113, .4);
}

.field-error {
  margin: .55rem 0 0;
  font-size: .84rem;
  font-weight: 650;
}

.signup-row input[aria-invalid="true"] {
  border-color: #f87171;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, .18);
}

.signup-row input:focus {
  border-color: var(--secondary-bright);
}

@media (max-width: 1140px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 760px) {
  .hero-type-layout {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .hero-main-context {
    justify-content: flex-start;
    gap: .8rem 1.1rem;
    writing-mode: horizontal-tb;
    transform: none;
    flex-wrap: wrap;
    order: 2;
    margin-top: .35rem;
  }

  .hero-main-type {
    order: 1;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 76px;
    gap: .75rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-word {
    font-size: 1.45rem;
  }

  .site-header > .button {
    min-height: 42px;
    padding-inline: .85rem;
    font-size: .75rem;
  }

  .hero-main-context {
    font-size: .56rem;
    letter-spacing: .1em;
  }
}


@media (min-width: 1600px) {
  .page {
    width: min(100% - 5rem, 1600px);
  }

  .hero-copy {
    width: min(100%, 1260px);
  }

  .hero-main-solid,
  .hero-main-outline,
  .hero-main-gradient {
    font-size: clamp(7rem, 7.4vw, 10.2rem);
  }
}

@media (max-width: 900px) {
  .hero-features {
    grid-template-columns: 1fr;
    max-width: 34rem;
  }

  .signup-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page {
    width: min(100% - 1.25rem, 1440px);
  }

  .hero {
    min-height: auto;
    padding-top: 2.25rem;
  }

  .hero-main-solid,
  .hero-main-outline,
  .hero-main-gradient {
    font-size: clamp(3.65rem, 18vw, 5.4rem);
    line-height: .84;
  }

  .hero-main-outline {
    -webkit-text-stroke-width: 1px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .signup-row {
    flex-direction: column;
  }

  .signup-row .button {
    width: 100%;
  }
}
