:root {
  --green: #2eaf6d;
  --orange: #ff8a00;
  --yellow: #ffc83d;
  --blue: #2995f2;
  --navy: #1e293b;
  --ink: #152033;
  --muted: #64748b;
  --line: #dbe4ee;
  --soft: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(30, 41, 59, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Poppins, Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img {
  width: min(104px, 38vw);
  height: auto;
  object-fit: contain;
}

.brand {
  display: flex;
  align-items: center;
  width: min(104px, 38vw);
}

.top-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.top-nav a,
.text-link {
  text-decoration: none;
}

.top-nav a:hover,
.text-link:hover {
  color: var(--green);
}

.hero,
.section,
.page-intro,
.profile-hero,
.thank-you {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: 44px 0 34px;
}

.hero h1,
.page-intro h1,
.profile-summary h1,
.thank-you h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-text,
.page-intro p,
.thank-you p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy > p:not(.eyebrow):not(.hero-text):not(.trust-note),
.profile-summary p,
.success-card p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(46, 175, 109, 0.24);
}

.button:hover {
  background: #238a58;
}

.button-full {
  width: 100%;
}

.text-link {
  color: var(--navy);
  font-weight: 800;
}

.trust-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.principle-box {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  background: var(--soft);
}

.principle-box strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.principle-box span {
  color: var(--muted);
}

.hero-image img,
.profile-photo img,
.thank-you img,
.success-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 48px 0;
}

.soft-band {
  width: 100%;
  max-width: none;
  padding: 58px max(18px, calc((100vw - 1120px) / 2));
  background: var(--soft);
}

.intro-grid,
.two-column,
.checkout-grid,
.profile-hero,
.thank-you {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 56px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.steps article,
.update-grid article,
.support-panel,
.checkout-form,
.checkout-card,
.trust-panel,
.vision-panel,
.video-feature,
.success-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.steps article,
.update-grid article {
  padding: 22px;
}

.steps strong {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2,
h3 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 26px;
}

.section-heading p,
.muted,
.profile-card p,
.steps p,
.update-grid p,
.story-block p,
.video-placeholder p,
.notice p,
.affempreneurs-box p,
.script-card p {
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.profile-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(30, 41, 59, 0.08);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.card-content {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 18px;
}

.card-content .button {
  margin-top: auto;
}

.progress-label,
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.progress-bar {
  height: 10px;
  margin: 10px 0 20px;
  overflow: hidden;
  background: #e8eef5;
  border-radius: 999px;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.trust-row {
  margin-bottom: 12px;
}

.badge,
.cohort {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf8f0;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.badge::before,
.cohort::before,
.check-list li::before {
  content: "\2713";
  color: var(--green);
  font-weight: 900;
}

.cohort {
  margin-top: 4px;
  color: var(--muted);
  background: var(--soft);
}

.secondary-info {
  margin-top: 0;
  color: var(--muted);
  font-weight: 800;
}

.page-intro {
  padding: 58px 0 18px;
}

.profile-hero {
  padding: 44px 0 20px;
  align-items: center;
}

.goal-box {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.goal-box span,
.goal-box small {
  display: block;
  color: var(--muted);
}

.goal-box strong {
  display: block;
  margin: 4px 0 8px;
  color: var(--navy);
  font-size: 2rem;
}

.story-block {
  font-size: 1.03rem;
}

.support-panel,
.trust-panel,
.vision-panel,
.video-feature,
.success-card {
  padding: 24px;
}

.trust-panel {
  background: var(--soft);
}

.vision-panel {
  background: #fffaf0;
  border-color: #f6d48a;
}

.vision-panel h2 {
  max-width: 930px;
  font-size: clamp(1.55rem, 4vw, 2.6rem);
}

.video-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(22px, 4vw, 44px);
  background: #eef7ff;
  border-color: #b8d8f4;
}

.script-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
}

.affempreneurs-box {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.notice {
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid #b8d8f4;
  border-radius: var(--radius);
  background: #eef7ff;
}

.need-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.need-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

fieldset {
  margin: 22px 0 18px;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 900;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.amount-grid label {
  position: relative;
  cursor: pointer;
}

.amount-grid input {
  position: absolute;
  opacity: 0;
}

.amount-grid span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 900;
}

.amount-grid input:checked + span {
  border-color: var(--green);
  background: #eaf8f0;
}

.suggested span::after {
  content: "Suggested";
  display: block;
  margin-left: 6px;
  color: var(--orange);
  font-size: 0.72rem;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
}

input:focus,
.button:focus,
a:focus {
  outline: 3px solid rgba(255, 200, 61, 0.9);
  outline-offset: 3px;
}

.checkout-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px;
  align-self: start;
}

.checkout-card img {
  width: 160px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.checkout-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.summary-row {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.thank-you {
  align-items: center;
  padding: 54px 0 28px;
}

.success-band {
  padding-bottom: 52px;
}

.success-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  box-shadow: var(--shadow);
}

.success-card h3 {
  font-size: clamp(1.45rem, 3vw, 2.4rem);
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-list dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

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

.update-grid img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px 18px;
  color: var(--white);
  background: var(--navy);
}

.site-footer img {
  width: 94px;
  height: auto;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .top-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .intro-grid,
  .two-column,
  .checkout-grid,
  .profile-hero,
  .thank-you,
  .video-feature,
  .success-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .cards-grid,
  .steps,
  .update-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .card-content {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .hero,
  .section,
  .page-intro,
  .profile-hero,
  .thank-you {
    width: min(100% - 28px, 1120px);
  }

  .hero h1,
  .page-intro h1,
  .profile-summary h1,
  .thank-you h1 {
    font-size: 2.25rem;
  }

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

  .amount-grid,
  .checkout-card,
  .detail-list div {
    grid-template-columns: 1fr;
  }

  .checkout-card img {
    width: 100%;
  }
}
