:root {
  --ink: #070b23;
  --muted: #667085;
  --soft: #f7fafc;
  --line: #e8edf2;
  --green: #2fc878;
  --green-dark: #0d7d50;
  --violet: #5b47f5;
  --violet-dark: #4934ee;
  --shadow-soft: 0 18px 52px rgba(7, 11, 35, 0.08);
  --shadow-glow: 0 28px 80px rgba(47, 200, 120, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(47, 200, 120, 0.1), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(91, 71, 245, 0.1), transparent 28%),
    #fbfcff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input {
  font: inherit;
}

svg {
  display: block;
}

::selection {
  background: rgba(47, 200, 120, 0.22);
}

.section-shell {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  border-radius: 10px;
  background: #fff;
  padding: 12px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  outline: 4px solid rgba(47, 200, 120, 0.22);
}

.site-header {
  display: flex;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand span span {
  color: var(--green);
}

.brand-mark {
  width: 31px;
  height: 31px;
  color: var(--green);
  flex: 0 0 auto;
}

.brand.compact {
  font-size: 21px;
}

.brand.compact .brand-mark {
  width: 24px;
  height: 24px;
}

.primary-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.primary-nav a,
.site-footer nav a {
  transition: color 180ms ease;
}

.primary-nav a:hover,
.site-footer nav a:hover {
  color: var(--green);
}

.header-cta,
.waitlist-form button,
.issue-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-cta {
  min-height: 48px;
  border-radius: 999px;
  background: var(--violet);
  padding: 0 28px;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(91, 71, 245, 0.28);
}

.header-cta:hover,
.waitlist-form button:hover,
.issue-action:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.waitlist-form button:hover {
  background: var(--violet-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 4px solid rgba(47, 200, 120, 0.22);
  outline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
  gap: 68px;
  align-items: center;
  padding: 76px 0 64px;
  background-image:
    linear-gradient(rgba(47, 200, 120, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 200, 120, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-copy {
  max-width: 585px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(47, 200, 120, 0.2);
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.07);
  padding: 10px 15px;
  color: #0b8f5a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow svg,
.priority-callout svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

h1 {
  margin: 35px 0 0;
  color: var(--ink);
  font-size: clamp(3.3rem, 7vw, 5.45rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.hero-subcopy {
  max-width: 530px;
  margin: 28px 0 0;
  color: #334155;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
}

.hero-points {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.hero-points li,
.privacy-note {
  display: flex;
  align-items: center;
  gap: 14px;
}

.check-icon {
  position: relative;
  display: inline-grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 999px;
}

.check-icon::after {
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: "";
  transform: rotate(-45deg) translate(1px, -1px);
}

.waitlist-form {
  position: relative;
  display: flex;
  width: min(100%, 580px);
  gap: 15px;
}

.hero-form {
  margin-top: 44px;
  border: 1px solid rgba(91, 71, 245, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px;
  box-shadow: 0 18px 44px rgba(7, 11, 35, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.waitlist-form input {
  min-height: 72px;
  min-width: 0;
  flex: 1;
  border: 1px solid #c7d2df;
  border-radius: 13px;
  background: #fff;
  padding: 0 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.waitlist-form input::placeholder {
  color: #68788e;
}

.waitlist-form input:focus {
  border-color: var(--violet);
  background: #fff;
  box-shadow:
    0 0 0 5px rgba(91, 71, 245, 0.14),
    0 14px 28px rgba(7, 11, 35, 0.1);
}

.waitlist-form button {
  min-height: 72px;
  border-radius: 13px;
  background: var(--violet);
  padding: 0 32px;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 16px 36px rgba(91, 71, 245, 0.38);
  white-space: nowrap;
}

.form-note {
  max-width: 520px;
  margin: 34px 0 0;
  color: #475569;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.form-message {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  margin: 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.form-message.is-error {
  color: #dc2626;
}

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

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: -32px;
  border-radius: 42px;
  background: rgba(47, 200, 120, 0.1);
  content: "";
  filter: blur(36px);
}

.assistant-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 200, 120, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  padding: 25px;
  box-shadow: var(--shadow-glow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.assistant-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.assistant-title {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.assistant-subtitle {
  margin: 10px 0 0;
  color: #475569;
  font-size: 16px;
  font-weight: 600;
}

.date-chip {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(7, 11, 35, 0.04);
}

.date-chip svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.priority-callout {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  margin-top: 26px;
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 200, 120, 0.12), transparent 45%),
    rgba(47, 200, 120, 0.08);
  padding: 25px;
  color: var(--green);
}

.priority-callout p {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.priority-callout strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.priority-callout strong:first-of-type,
.priority-callout span {
  color: #08764c;
}

.issue-list {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.issue-card {
  display: grid;
  grid-template-columns: 48px 42px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 16px;
}

.issue-red {
  border-color: #fee2e2;
  background: #fff1f1;
  color: #ef4444;
}

.issue-amber {
  border-color: #fdebc0;
  background: #fff8e9;
  color: #f59e0b;
}

.issue-green {
  border-color: #ccefdc;
  background: #eefcf5;
  color: var(--green);
}

.issue-rank,
.issue-symbol {
  display: grid;
  place-items: center;
}

.issue-rank {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 25px;
  font-weight: 900;
}

.issue-symbol svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.issue-body {
  min-width: 0;
  color: var(--ink);
}

.issue-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.issue-topline h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.issue-topline span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 6px 9px;
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.issue-body p {
  margin: 5px 0 0;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.issue-body .issue-path {
  color: var(--ink);
  font-weight: 900;
}

.issue-action {
  min-height: 39px;
  border-radius: 10px;
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(7, 11, 35, 0.07);
  white-space: nowrap;
}

.view-all {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin: 24px auto 0;
  color: var(--violet);
  font-size: 14px;
  font-weight: 900;
  transition: color 180ms ease;
}

.view-all:hover {
  color: var(--violet-dark);
}

.trust-strip {
  padding: 20px 0 42px;
}

.trust-strip > p {
  max-width: 820px;
  margin: 0 auto;
  color: #475569;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.55;
  text-align: center;
}

.process-section {
  padding: 62px 0 56px;
  border-top: 1px solid rgba(226, 232, 240, 0.75);
}

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

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 5vw, 3.55rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.section-heading span,
.final-cta span {
  color: var(--green);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  margin-top: 62px;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step + .process-step::before {
  position: absolute;
  left: -50px;
  top: 47px;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green));
  content: "";
}

.step-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(47, 200, 120, 0.32);
  border-radius: 50%;
  background: rgba(47, 200, 120, 0.09);
  color: var(--green);
}

.step-icon.violet {
  border-color: rgba(91, 71, 245, 0.12);
  background: rgba(91, 71, 245, 0.1);
  color: var(--violet);
}

.step-icon svg,
.benefits svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.process-step > p {
  max-width: 292px;
  margin: 12px auto 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.mini-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.mini-icons span {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #64748b;
  font-size: 21px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.mini-icons svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #f59e0b;
  stroke-width: 2.3;
}

.metric-card {
  max-width: 285px;
  margin: 28px auto 0;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 13px;
  background: #fff;
  padding: 20px;
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.metric-card p,
.metric-card small {
  margin: 0;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.metric-card div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
}

.metric-card strong {
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.metric-card strong span {
  color: #64748b;
  font-size: 16px;
  font-weight: 800;
}

.metric-card svg {
  width: 112px;
  height: 58px;
}

.metric-card path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
}

.process-step:nth-child(2) .metric-card {
  color: var(--violet);
}

.process-step:nth-child(3) .metric-card {
  color: var(--green);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.benefits article {
  padding: 34px;
}

.benefits article + article {
  border-left: 1px solid var(--line);
}

.benefits svg {
  width: 43px;
  height: 43px;
  color: var(--green);
}

.benefits h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.benefits p {
  margin: 12px 0 0;
  color: #334155;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: center;
  overflow: hidden;
  margin-top: 38px;
  border-radius: 19px;
  background:
    radial-gradient(ellipse at 55% 120%, rgba(47, 200, 120, 0.42), transparent 34%),
    radial-gradient(ellipse at 65% 120%, rgba(91, 71, 245, 0.56), transparent 42%),
    linear-gradient(180deg, #060b25 0%, #020617 100%);
  padding: 54px;
  color: #fff;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.24);
}

.wave-lines {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  opacity: 0.7;
}

.wave-lines svg {
  width: 100%;
  height: 100%;
}

.wave-lines path {
  fill: none;
  stroke-width: 2;
}

.wave-lines path:first-child {
  stroke: var(--violet);
}

.wave-lines path:last-child {
  stroke: var(--green);
}

.final-cta > div,
.final-cta form {
  position: relative;
}

.final-cta h2 {
  max-width: 450px;
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.final-cta > div > p {
  max-width: 380px;
  margin: 25px 0 0;
  color: #cbd5e1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.dark-form {
  width: 100%;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  box-shadow: 0 22px 52px rgba(2, 6, 23, 0.3);
}

.dark-form input {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.22);
  color: #fff;
  box-shadow: none;
}

.dark-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 200, 120, 0.16);
}

.dark-form .form-message {
  top: calc(100% + 42px);
  color: #9ff0c5;
}

.privacy-note {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
}

.privacy-note .check-icon {
  width: 18px;
  height: 18px;
}

.privacy-note .check-icon::after {
  width: 7px;
  height: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 0 32px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.site-footer nav {
  gap: 34px;
  color: #64748b;
}

.site-footer p {
  margin: 0;
}

.thank-you-page {
  background:
    radial-gradient(circle at 50% 4%, rgba(47, 200, 120, 0.13), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(91, 71, 245, 0.1), transparent 28%),
    #fbfcff;
}

.secondary-header-link {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(7, 11, 35, 0.07);
  border: 1px solid var(--line);
}

.secondary-header-link:hover {
  background: #fff;
  color: var(--violet);
}

.thank-hero {
  padding: 70px 0 34px;
  text-align: center;
}

.success-mark {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.96), transparent 28%),
    rgba(47, 200, 120, 0.12);
  color: var(--green);
  box-shadow: 0 24px 58px rgba(47, 200, 120, 0.2);
}

.success-mark svg {
  width: 66px;
  height: 66px;
}

.success-mark circle,
.success-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-hero .eyebrow {
  margin-bottom: 28px;
}

.thank-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(3rem, 7vw, 5.1rem);
}

.thank-subhead {
  margin: 28px 0 0;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.thank-intro {
  max-width: 760px;
  margin: 16px auto 0;
  color: #334155;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.75;
}

.thank-message {
  padding: 18px 0 28px;
}

.message-card,
.question-section,
.share-section,
.closing-quote {
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.message-card {
  max-width: 840px;
  margin: 0 auto;
  padding: 34px 38px;
  text-align: center;
}

.message-card h2,
.question-copy h2,
.next-section h2,
.share-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.message-card p,
.question-copy p,
.share-section p {
  margin: 18px 0 0;
  color: #475569;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.75;
}

.question-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 42px;
  align-items: start;
  margin-top: 30px;
  padding: 42px;
}

.feedback-form {
  display: grid;
  gap: 16px;
}

.feedback-form textarea {
  width: 100%;
  min-height: 230px;
  resize: vertical;
  border: 1px solid #c7d2df;
  border-radius: 16px;
  background: #fff;
  padding: 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.feedback-form textarea::placeholder {
  color: #7d8ca1;
}

.feedback-form textarea:focus {
  border-color: var(--violet);
  outline: none;
  box-shadow:
    0 0 0 5px rgba(91, 71, 245, 0.14),
    0 14px 28px rgba(7, 11, 35, 0.08);
}

.feedback-form button,
.share-action button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 13px;
  background: var(--violet);
  padding: 0 26px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(91, 71, 245, 0.34);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.feedback-form button:hover,
.share-action button:hover {
  transform: translateY(-2px);
  background: var(--violet-dark);
}

.feedback-message,
.copy-message {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.feedback-message.is-error {
  color: #dc2626;
}

.feedback-success {
  border: 1px solid rgba(47, 200, 120, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 200, 120, 0.1), transparent 38%),
    #fff;
  padding: 32px;
  box-shadow: 0 16px 38px rgba(7, 11, 35, 0.06);
  animation: fadeSuccess 360ms ease both;
}

.feedback-success-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 200, 120, 0.12);
  color: var(--green-dark);
  font-size: 26px;
  font-weight: 900;
}

.feedback-success h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.feedback-success p {
  margin: 12px 0 0;
  color: #475569;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

@keyframes fadeSuccess {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.next-section {
  padding: 64px 0 20px;
}

.next-section h2 {
  text-align: center;
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.next-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(7, 11, 35, 0.06);
}

.next-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(47, 200, 120, 0.1);
  color: var(--green);
}

.next-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.next-grid h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.share-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
  padding: 38px;
}

.share-section h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}

.share-section p {
  max-width: 720px;
}

.share-action {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.share-action button {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(7, 11, 35, 0.08);
}

.share-action button:hover {
  background: #fff;
  color: var(--violet);
}

.share-action button:disabled {
  cursor: default;
  color: var(--green-dark);
  transform: none;
}

.founder-note {
  max-width: 920px;
  margin-top: 48px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  padding: 34px 38px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(7, 11, 35, 0.05);
}

.founder-note h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.founder-note p {
  max-width: 690px;
  margin: 16px auto 0;
  color: #475569;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.founder-note p:nth-of-type(2),
.founder-note p:nth-of-type(3) {
  margin-top: 8px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.closing-quote {
  margin-top: 48px;
  padding: 48px;
  text-align: center;
}

.closing-quote blockquote {
  margin: 0;
}

.closing-quote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.12;
}

.closing-quote p + p {
  margin-top: 10px;
  color: var(--green-dark);
}

.closing-quote cite {
  display: block;
  margin-top: 24px;
  color: #64748b;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

.thank-footer {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

.thank-footer a {
  transition: color 180ms ease;
}

.thank-footer a:hover {
  color: var(--green);
}

.legal-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(47, 200, 120, 0.1), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(91, 71, 245, 0.08), transparent 28%),
    #fbfcff;
}

.legal-content {
  max-width: 860px;
  margin-top: 56px;
  margin-bottom: 44px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}

.legal-content h1 {
  margin-top: 0;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
}

.legal-content h2 {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.legal-content p {
  margin: 14px 0 0;
  color: #475569;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.75;
}

.aweber-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.aweber-hidden iframe {
  width: 1px;
  height: 1px;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .primary-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    max-width: 680px;
    margin: 0 auto;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .final-cta,
  .question-section,
  .share-section {
    grid-template-columns: 1fr;
  }

  .process-step + .process-step::before {
    display: none;
  }

  .benefits article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .benefits article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .thank-footer {
    align-items: center;
  }

  .next-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .site-header {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    padding: 22px 0;
  }

  .brand {
    font-size: 22px;
  }

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

  .header-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero {
    gap: 42px;
    padding: 42px 0 48px;
  }

  h1 {
    margin-top: 28px;
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

  .hero-subcopy {
    font-size: 17px;
    line-height: 1.7;
  }

  .hero-points {
    font-size: 16px;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .hero-form {
    margin-top: 36px;
    padding: 8px;
  }

  .waitlist-form button,
  .waitlist-form input {
    width: 100%;
  }

  .assistant-card {
    padding: 18px;
  }

  .assistant-header {
    flex-direction: column;
  }

  .priority-callout {
    padding: 20px;
  }

  .priority-callout strong {
    font-size: 21px;
  }

  .issue-card {
    grid-template-columns: 46px 1fr;
  }

  .issue-symbol {
    display: none;
  }

  .issue-action {
    grid-column: 2;
    width: fit-content;
  }

  .issue-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .benefits article + article,
  .benefits article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-section {
    padding-top: 46px;
  }

  .process-grid {
    gap: 44px;
  }

  .final-cta {
    margin-top: 28px;
    padding: 34px 22px 72px;
  }

  .thank-hero {
    padding-top: 42px;
  }

  .success-mark {
    width: 78px;
    height: 78px;
  }

  .success-mark svg {
    width: 54px;
    height: 54px;
  }

  .message-card,
  .question-section,
  .share-section,
  .closing-quote,
  .legal-content {
    padding: 26px 20px;
  }

  .feedback-form button,
  .share-action button {
    width: 100%;
  }

  .privacy-note {
    position: static;
    margin-top: 14px;
  }

  .site-footer nav {
    gap: 18px 28px;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
