/* /get-started: campaign landing page
   Restyled from the Claude-designed source to use --aise-* tokens.
   Loaded after form.css. */

/* ═══════════════════ Hero (2-col: copy + form card) ═══════════════════ */
.gs-hero {
  position: relative;
  background: var(--aise-canvas);
  padding: 64px 24px 96px;
  overflow: hidden;
}
.gs-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.gs-hero__eyebrow {
  font-family: var(--aise-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aise-accent-500);
  margin-bottom: var(--aise-space-4);
}
.gs-hero__h1 {
  font-family: var(--aise-sans);
  font-weight: 700;
  font-size: clamp(32px, 4.1vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--aise-text);
  margin: 0;
  text-wrap: balance;
}
.gs-hero__sub {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--aise-text-muted);
  max-width: 52ch;
}

/* Benefits chips */
.gs-benefits {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.gs-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--aise-text);
}
.gs-chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--aise-accent-500) 14%, transparent);
  color: var(--aise-accent-500);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gs-chk svg { width: 12px; height: 12px; }

/* Hero CTA row */
.gs-hero__cta-row {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.gs-trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--aise-text-muted);
}
.gs-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.gs-trust-row svg {
  width: 14px;
  height: 14px;
  color: var(--aise-accent-500);
}

/* ═══════════════════ Form card ═══════════════════ */
.gs-form-card {
  background: var(--aise-surface);
  border: 1px solid var(--aise-border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 60px -20px color-mix(in oklch, var(--aise-accent-500) 25%, transparent),
              0 4px 16px -4px rgba(0, 0, 0, 0.08);
}
.gs-form-card__title {
  font-family: var(--aise-sans);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--aise-text);
  margin: 0;
}
.gs-form-card__sub {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--aise-text-muted);
}
.gs-form-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gs-form-grid .form-field { margin-bottom: 0; }
.gs-form-grid .form-field.full { grid-column: 1 / -1; }

.gs-form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.gs-form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 12.5px;
  color: var(--aise-text-muted);
}
.gs-form-note svg {
  width: 13px;
  height: 13px;
  color: var(--aise-accent-500);
  vertical-align: -2px;
  margin-right: 5px;
}
.gs-form-error {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  color: #c0392b;
  display: none;
}
.gs-form-error a { color: inherit; text-decoration: underline; }

/* Required-field asterisk + optional marker */
.gs-req {
  color: var(--aise-accent-500);
  margin-left: 2px;
  font-weight: 700;
}
.gs-optional {
  color: var(--aise-text-subtle);
  font-weight: 400;
  font-size: 11.5px;
  margin-left: 4px;
}

/* Per-field inline error slot */
.gs-field-error {
  margin: 4px 0 0;
  min-height: 0;
  font-size: 12.5px;
  line-height: 1.35;
  color: #c0392b;
  display: none;
}
.gs-field-error a {
  color: var(--aise-accent-500);
  text-decoration: underline;
  cursor: pointer;
}
.form-field.is-invalid .form-field__input,
.form-field.is-invalid .form-field__textarea,
.form-field.is-invalid .form-field__select {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px color-mix(in srgb, #c0392b 18%, transparent);
}
.form-field.is-invalid .gs-field-error { display: block; }
.form-field.is-warning .gs-field-error { display: block; color: var(--aise-accent-500); }

/* Honeypot: visible to bots, invisible to humans + screen readers */
.gs-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Submit button loading state */
.gs-form-submit {
  position: relative;
}
.gs-form-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
}
.gs-form-submit__spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: gs-spin 700ms linear infinite;
  margin-right: 8px;
  vertical-align: -2px;
}
.gs-form-submit.is-loading .gs-form-submit__spinner { display: inline-block; }
@keyframes gs-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .gs-form-submit__spinner { animation: none; }
}

/* "Submit another request" link on success card */
.gs-form-again {
  margin-top: 18px;
  background: transparent;
  border: none;
  color: var(--aise-accent-500);
  font-family: var(--aise-sans);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background-color 120ms ease;
}
.gs-form-again:hover {
  background: color-mix(in oklch, var(--aise-accent-500) 10%, transparent);
  text-decoration: underline;
}

.gs-form-success {
  display: none;
  text-align: center;
  padding: 36px 8px;
}
.gs-form-success.is-visible { display: block; }
.gs-form-success__mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--aise-accent-500) 14%, transparent);
  color: var(--aise-accent-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.gs-form-success__mark svg { width: 26px; height: 26px; }
.gs-form-success h3 {
  font-family: var(--aise-sans);
  font-size: 19px;
  font-weight: 700;
  color: var(--aise-text);
  margin: 0;
}
.gs-form-success p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--aise-text-muted);
}

/* ═══════════════════ Sections ═══════════════════ */
.gs-section {
  padding: 96px 24px;
  background: var(--aise-canvas);
}
.gs-section--alt { background: var(--aise-overlay-subtle); }
.gs-section__inner { max-width: 1180px; margin: 0 auto; }
.gs-section__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.gs-section__eyebrow {
  font-family: var(--aise-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aise-accent-500);
}
.gs-section__h2 {
  font-family: var(--aise-sans);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  color: var(--aise-text);
  margin: 12px 0 0;
  text-wrap: balance;
}
.gs-section__sub {
  margin-top: 14px;
  font-size: 15.5px;
  color: var(--aise-text-muted);
  line-height: 1.6;
}

/* ═══════════════════ Why us cards ═══════════════════ */
.gs-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gs-why-card {
  background: var(--aise-surface);
  border: 1px solid var(--aise-border);
  border-radius: 16px;
  padding: 28px 26px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.gs-why-card:hover {
  transform: translateY(-4px);
  border-color: var(--aise-border-strong);
  box-shadow: 0 12px 32px -12px color-mix(in oklch, var(--aise-accent-500) 20%, transparent);
}
.gs-why-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: color-mix(in oklch, var(--aise-accent-500) 12%, transparent);
  color: var(--aise-accent-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gs-why-icon svg { width: 23px; height: 23px; }
.gs-why-card h3 {
  font-family: var(--aise-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--aise-text);
  margin: 18px 0 0;
}
.gs-why-card p {
  margin-top: 9px;
  font-size: 14px;
  color: var(--aise-text-muted);
  line-height: 1.55;
}

/* ═══════════════════ Process ═══════════════════ */
.gs-process {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  align-items: start;
}
.gs-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6px;
  position: relative;
}
.gs-process__node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--aise-accent-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--aise-mono);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 10px 24px -8px color-mix(in oklch, var(--aise-accent-500) 60%, transparent);
}
.gs-process__connector {
  position: absolute;
  top: 26px;
  left: calc(-50% + 26px);
  width: calc(100% - 52px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    color-mix(in oklch, var(--aise-accent-500) 40%, transparent) 0 6px,
    transparent 6px 12px
  );
  z-index: 0;
}
.gs-process__step:first-child .gs-process__connector { display: none; }
.gs-process__label {
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--aise-text);
  line-height: 1.35;
}

/* ═══════════════════ Stats ═══════════════════ */
.gs-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.gs-stat {
  background: var(--aise-surface);
  border: 1px solid var(--aise-border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.gs-stat__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: color-mix(in oklch, var(--aise-accent-500) 12%, transparent);
  color: var(--aise-accent-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gs-stat__icon svg { width: 20px; height: 20px; }
.gs-stat h3 {
  font-family: var(--aise-sans);
  margin: 20px 0 0;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--aise-text);
}
.gs-stat p {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--aise-text-muted);
  line-height: 1.55;
}

/* ═══════════════════ Final CTA band ═══════════════════ */
.gs-cta-band {
  text-align: center;
  padding: 88px 32px;
  background: var(--aise-canvas);
  border-top: 1px solid var(--aise-border);
}
.gs-cta-band__inner { max-width: 640px; margin: 0 auto; }
.gs-cta-band h2 {
  font-family: var(--aise-sans);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  color: var(--aise-text);
  margin: 14px 0 0;
  text-wrap: balance;
}
.gs-cta-band p {
  margin-top: 16px;
  font-size: 16px;
  color: var(--aise-text-muted);
  line-height: 1.6;
}
.gs-cta-band .btn { margin-top: 30px; }

/* ═══════════════════ Reveal on scroll ═══════════════════ */
.gs-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.gs-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .gs-reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════ Responsive ═══════════════════ */
@media (max-width: 980px) {
  .gs-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .gs-why-grid { grid-template-columns: repeat(2, 1fr); }
  .gs-stats { grid-template-columns: repeat(2, 1fr); }
  .gs-process { grid-template-columns: 1fr; gap: 20px; justify-items: start; }
  .gs-process__step { flex-direction: row; text-align: left; gap: 16px; padding: 0; }
  .gs-process__connector { display: none; }
  .gs-process__label { margin-top: 0; align-self: center; }
}
@media (max-width: 640px) {
  .gs-hero { padding: 40px 20px 56px; }
  .gs-section { padding: 68px 20px; }
  .gs-benefits { grid-template-columns: 1fr; }
  .gs-why-grid { grid-template-columns: 1fr; }
  .gs-stats { grid-template-columns: 1fr; }
  .gs-form-grid { grid-template-columns: 1fr; }
  .gs-form-card { padding: 24px; }
}
