:root {
  --navy: #0b2a5b;
  --turquoise: #20c6c8;
  --pink: #ff4f82;
  --yellow: #ffc233;
  --orange: #ff8a22;
  --purple: #7b4bc4;
  --cream: #fff9f3;
  --soft-blue: #f8fcff;
  --text-gray: #536278;
  --border: #e8eef6;
  --white: #ffffff;
  --success: #137a4b;
  --error: #b42318;
  --shadow: 0 18px 48px rgba(11, 42, 91, 0.1);
  --page-padding: clamp(16px, 5vw, 40px);
  --section-padding: 48px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(32, 198, 200, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 34%, rgba(255, 79, 130, 0.1), transparent 20rem),
    radial-gradient(circle at 92% 82%, rgba(255, 194, 51, 0.16), transparent 24rem),
    linear-gradient(180deg, var(--cream), var(--soft-blue));
  color: var(--text-gray);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding-inline: var(--page-padding);
}

.section {
  padding-block: var(--section-padding);
}

.section-label,
.eyebrow {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
}

.card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(11, 42, 91, 0.045);
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 10vw, 3.6rem);
  line-height: 1;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.site-header {
  padding-block: 18px 12px;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.logo {
  width: clamp(150px, 44vw, 170px);
}

.access-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  max-width: 100%;
  padding: 6px 14px;
  border: 1px solid rgba(32, 198, 200, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero {
  position: relative;
  padding-block: 34px 44px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.hero::before {
  width: 190px;
  height: 190px;
  top: 18px;
  left: -70px;
  background: rgba(32, 198, 200, 0.14);
}

.hero::after {
  width: 230px;
  height: 230px;
  right: -90px;
  bottom: 4px;
  background: rgba(255, 138, 34, 0.13);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-copy {
  max-width: 650px;
  margin: 0 auto 22px;
  font-size: clamp(1rem, 3vw, 1.17rem);
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(100%, 620px);
  margin-inline: auto;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(232, 238, 246, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  text-align: left;
}

.field {
  width: 100%;
  min-width: 0;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 750;
}

label span {
  color: #7c8899;
  font-weight: 650;
}

input,
select {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

input::placeholder {
  color: #93a1b3;
}

input:focus,
select:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(32, 198, 200, 0.15);
}

.cta-button {
  width: 100%;
  min-height: 52px;
  margin-top: 6px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffc233, #ff8a22);
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(255, 138, 34, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(255, 138, 34, 0.3);
}

.cta-button:focus-visible {
  outline: 4px solid rgba(32, 198, 200, 0.24);
  outline-offset: 3px;
}

.cta-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-loading,
.cta-button.is-loading .button-text {
  display: none;
}

.cta-button.is-loading .button-loading {
  display: inline;
}

.form-note,
.form-message {
  margin: 0;
  font-size: 0.91rem;
  text-align: center;
}

.form-note {
  color: #6f7c8e;
}

.form-message {
  min-height: 1.45em;
  font-weight: 750;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--error);
}

.preview-card {
  position: relative;
  width: 100%;
  max-width: 370px;
  margin-inline: auto;
  padding: 28px;
  border: 1px solid rgba(32, 198, 200, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, rgba(32, 198, 200, 0.12), rgba(255, 79, 130, 0.08));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-card::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 2px solid rgba(255, 194, 51, 0.32);
  border-radius: 8px;
  pointer-events: none;
}

.preview-dots {
  position: absolute;
  top: 24px;
  right: 26px;
  display: flex;
  gap: 7px;
}

.preview-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.preview-dots span:nth-child(1) {
  background: var(--turquoise);
}

.preview-dots span:nth-child(2) {
  background: var(--pink);
}

.preview-dots span:nth-child(3) {
  background: var(--yellow);
}

.preview-kicker {
  position: relative;
  display: inline-block;
  margin-bottom: 26px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 194, 51, 0.24);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.preview-card h2 {
  position: relative;
  margin-bottom: 8px;
  font-size: clamp(2.05rem, 8vw, 3rem);
  line-height: 1;
}

.preview-tags {
  position: relative;
  margin-bottom: 22px;
  color: var(--purple);
  font-size: 1rem;
  font-weight: 800;
}

.preview-details {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.preview-details div {
  padding: 11px 12px;
  border: 1px solid rgba(232, 238, 246, 0.9);
  border-radius: 8px;
  background: rgba(248, 252, 255, 0.72);
}

.preview-details dt {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.preview-details dd {
  margin-bottom: 0;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 26px;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.step {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.step p {
  margin-bottom: 0;
}

.step-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 999px;
  background: rgba(32, 198, 200, 0.18);
  color: var(--navy);
  font-weight: 850;
}

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

.perfect-copy {
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

.perfect-copy p:last-child {
  margin: 14px 0 0;
}

.use-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.use-list li {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 750;
}

.privacy-note {
  padding-inline: var(--page-padding);
  padding-bottom: var(--section-padding);
}

.privacy-inner {
  padding-block: 26px;
  border: 1px solid rgba(32, 198, 200, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(32, 198, 200, 0.1), rgba(255, 255, 255, 0.82)),
    rgba(248, 252, 255, 0.9);
  text-align: center;
}

.privacy-inner h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 4vw, 2.15rem);
}

.privacy-inner p:last-child {
  max-width: 800px;
  margin: 0 auto;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.32);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-block: 24px;
  text-align: center;
}

.footer-logo {
  width: min(126px, 52vw);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (min-width: 481px) {
  .use-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 769px) {
  :root {
    --section-padding: 64px;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .logo {
    width: 190px;
  }

  .hero {
    padding-block: 46px 58px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
    gap: clamp(34px, 5vw, 58px);
  }

  .hero-content {
    text-align: left;
  }

  h1 {
    font-size: clamp(3rem, 5.5vw, 5.8rem);
    line-height: 0.98;
  }

  .hero-copy,
  .signup-form {
    margin-inline: 0;
  }

  .signup-form {
    max-width: 620px;
  }

  .preview-card {
    justify-self: end;
    margin-inline: 0;
  }

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

  .perfect-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 42px;
  }

  .perfect-copy {
    margin: 0;
    text-align: left;
  }

  .use-list {
    max-width: none;
    margin: 0;
  }

  .privacy-inner {
    text-align: left;
  }

  .privacy-inner p:last-child {
    margin: 0;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1025px) {
  :root {
    --section-padding: 80px;
  }

  .site-header {
    padding-block: 22px 10px;
  }

  .logo {
    width: 100px;
  }

  .hero {
    padding-block: 50px 64px;
  }

  .cta-button {
    width: 100%;
  }

  .step:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(11, 42, 91, 0.08);
  }
}

@media (max-width: 768px) {
  .hero-grid {
    justify-items: center;
  }

  .hero-content {
    display: contents;
  }

  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content .hero-copy,
  .signup-form {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
  }

  .signup-form {
    order: 1;
    text-align: left;
  }

  .preview-card {
    order: 2;
    max-width: 370px;
  }
}

@media (max-width: 480px) {
  :root {
    --page-padding: 16px;
  }

  .site-header {
    padding-top: 16px;
  }

  .logo {
    width: min(164px, 72vw);
  }

  .hero {
    padding-block: 28px 42px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  input,
  select,
  .cta-button {
    min-height: 50px;
  }

  .preview-card {
    padding: 24px;
  }

  .preview-card::before {
    inset: 11px;
  }

  .privacy-inner {
    padding-block: 24px;
  }
}
