.start-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.start-page .start-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
}

.start-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 23.75rem);
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 4.5rem 6vw 5.5rem;
}

.start-hero-stack {
  grid-template-columns: minmax(0, 28rem);
  justify-content: center;
  justify-items: center;
  text-align: center;
  gap: 1.8rem;
  min-height: calc(100vh - 11rem);
  padding-top: 5rem;
}

.start-hero-stack .start-copy,
.start-hero-stack .start-card,
.start-hero-stack .start-list,
.start-hero-stack .start-aside {
  width: 100%;
}

.start-hero-stack .lede {
  margin-left: auto;
  margin-right: auto;
}

.start-hero-stack .start-card {
  text-align: left;
}

.start-copy h1 {
  font-size: clamp(2.6rem, 5vw, 3.75rem);
  margin-bottom: 0.55em;
}

.start-copy .lede {
  max-width: 28rem;
}

.start-who {
  margin: 1.35rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 28rem;
}

.start-who strong {
  color: var(--paper);
  font-weight: 500;
}

.start-copy .start-list { margin-top: 1.6rem; }

.start-copy .start-aside { margin-top: 1.2rem; }

.start-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 28rem;
}

.start-list li {
  padding: 0.75rem 0;
  color: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

.start-list li:first-child {
  border-top: 1px solid var(--line);
}

.start-aside {
  margin: 0;
  color: var(--dim);
  font-size: 0.95rem;
}

.start-aside a {
  color: var(--cyan);
  text-decoration: none;
}

.start-aside a:hover { color: var(--cyan-edge); }

.start-card {
  background: #0e1c28;
  border: 1px solid rgba(125, 240, 255, 0.14);
}

.start-card-trial {
  border-top: 2px solid var(--gold);
}

.start-card .note,
.start-card .thanks {
  padding: 1.7rem 1.5rem 1.6rem;
}

.start-card-kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.45rem;
}

.start-card h2 {
  font-size: 1.85rem;
  margin-bottom: 0.35em;
}

.start-card-line {
  color: var(--muted);
  margin: 0 0 1.1rem;
}

.start-next {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.start-plan-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 0 0 1rem;
}

.start-plan-toggle button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 0.4rem;
  cursor: pointer;
}

.start-plan-toggle button.is-on {
  border-color: var(--cyan);
  color: var(--cyan-edge);
  background: rgba(34, 211, 238, 0.1);
}

.start-card .plan-price {
  margin: 0 0 0.2rem;
}

.start-card .plan-price strong {
  font-size: 2.6rem;
}

@media (max-width: 980px) {
  .start-page .start-main {
    align-items: flex-start;
  }

  .start-hero {
    display: flex;
    flex-direction: column;
    padding: 2.2rem 6vw 3rem;
    gap: 1.25rem;
  }

  .start-copy { display: contents; }

  .start-copy h1 {
    font-size: 2.25rem;
    margin-bottom: 0.3em;
  }

  .start-copy .lede { margin-bottom: 0; }

  .start-card { order: 2; }

  .start-list {
    order: 3;
    max-width: none;
    margin-top: 0.35rem;
  }

  .start-aside {
    order: 4;
    margin-top: 0;
  }

  .start-hero-stack {
    min-height: 0;
  }
}
