:root {
  --bg: #fbf7f0;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --text: #1d1a17;
  --muted: #675c52;
  --line: rgba(29, 26, 23, 0.09);
  --orange: #ff9900;
  --orange-deep: #d97800;
  --sand: #fff1db;
  --success: #1f8f5f;
  --shadow: 0 30px 80px rgba(85, 44, 0, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 153, 0, 0.16), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(255, 204, 122, 0.22), transparent 24%),
    linear-gradient(180deg, #fffefb 0%, #fff7eb 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  z-index: 0;
}

body::before {
  width: 18rem;
  height: 18rem;
  top: 7%;
  right: 3%;
  background: rgba(255, 153, 0, 0.12);
}

body::after {
  width: 22rem;
  height: 22rem;
  bottom: -5rem;
  left: -4rem;
  background: rgba(255, 199, 112, 0.16);
}

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: 96%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 24px 0 40px;
}

.hero-grid {
  min-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 470px);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.form-panel,
.insight-strip article,
.info-card,
.story-card,
.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-copy {
  border-radius: 40px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.brand-logo {
  width: 132px;
  max-width: 100%;
}

.brand-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.eyebrow,
.mini-tag,
.trust-label,
.strip-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow,
.mini-tag {
  color: var(--orange-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1;
}

.hero-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 12px;
  align-items: end;
}

.hero-title-copy {
  min-width: 0;
}

.hero-image-slot {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 122%;
  max-width: none;
  max-height: 430px;
  margin-right: -10%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 38px rgba(101, 58, 0, 0.14));
}

.yield-banner {
  display: inline-grid;
  gap: 4px;
  margin: 8px 0 18px;
  padding: 16px 20px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 153, 0, 0.12) 0%, rgba(255, 214, 153, 0.18) 100%),
    var(--surface-strong);
  border: 1px solid rgba(255, 153, 0, 0.18);
  box-shadow: 0 18px 44px rgba(255, 153, 0, 0.12);
}

.yield-label,
.yield-note {
  display: block;
}

.yield-label {
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.yield-banner strong {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.yield-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.lead {
  max-width: 48ch;
  margin: 22px 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.75;
}

.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255, 153, 0, 0.1), rgba(255, 230, 191, 0.5));
  border: 1px solid rgba(255, 153, 0, 0.12);
}

.cta-copy p {
  margin: 0;
}

.cta-kicker {
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-text {
  margin-top: 6px;
  color: var(--text);
  font-weight: 500;
}

.cta-link,
.btn-main,
.sticky-cta {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 18px 32px rgba(217, 120, 0, 0.22);
}

.cta-link {
  min-width: 180px;
  padding: 14px 18px;
  font-weight: 700;
}

.cta-link:hover,
.btn-main:hover,
.sticky-cta:hover {
  transform: translateY(-2px);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-band article,
.trust-card,
.info-card,
.story-card,
.step-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.feature-band article {
  padding: 22px 18px;
}

.feature-band article:first-child {
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.12), rgba(255, 233, 194, 0.16));
  border-color: rgba(255, 153, 0, 0.22);
}

.feature-band strong,
.trust-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-band span,
.panel-head p,
.form-note,
.insight-strip article p,
.section-copy p,
.info-card p,
.story-card p,
.step-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.trust-card {
  padding: 18px;
}

.trust-label,
.strip-title {
  color: var(--success);
  margin: 0 0 8px;
}

.trust-value {
  margin: 0;
}

.form-panel {
  border-radius: 34px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 248, 237, 0.96));
}

.panel-head {
  margin-bottom: 18px;
}

.panel-logo {
  width: 146px;
  max-width: 100%;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  margin: 6px 0 14px;
}

form {
  display: grid;
  gap: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.93rem;
  font-weight: 700;
}

input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input::placeholder {
  color: #9b8f82;
}

input:focus {
  border-color: rgba(255, 153, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.12);
  transform: translateY(-1px);
}

.btn-main {
  width: 100%;
  padding: 16px 18px;
  font-weight: 700;
}

.btn-muted {
  background: #8d8479;
  box-shadow: none;
  cursor: not-allowed;
}

.btn-warning {
  background: #cc5c43;
  box-shadow: none;
}

.form-note {
  font-size: 0.9rem;
  margin: 0;
}

.insight-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.insight-strip article {
  border-radius: 24px;
  padding: 24px;
}

.content-grid,
.split-layout {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.content-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.section-copy {
  padding: 28px;
}

.section-copy h2,
.story-card h2 {
  margin: 10px 0 14px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.info-card,
.story-card,
.step-card {
  padding: 24px;
}

.card-index,
.step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: #1d1a17;
  background: linear-gradient(135deg, #ffd391, #ffb140);
}

.info-card h3,
.step-card h3 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
}

.split-layout {
  grid-template-columns: 1fr 1fr;
}

.steps-list {
  display: grid;
  gap: 14px;
}

.step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 30px 4px 10px;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

#liveToast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(29, 26, 23, 0.94);
  color: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#liveToast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-strong,
.toast-small {
  margin: 0;
}

.toast-strong {
  font-weight: 700;
}

.toast-small {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

#stickyMobile {
  display: none;
}

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

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .insight-strip,
  .content-grid,
  .card-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-title-row {
    grid-template-columns: 1fr;
  }

  .hero-image-slot {
    min-height: 0;
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 320px;
    margin-right: 0;
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 16px, 1680px);
  }

  .hero-copy,
  .form-panel,
  .section-copy,
  .info-card,
  .story-card,
  .step-card,
  .insight-strip article {
    padding: 22px;
  }

  .field-row,
  .trust-panel,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  #stickyMobile {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 25;
    display: block;
  }

  .sticky-cta {
    width: 100%;
    padding: 15px 16px;
  }

  #liveToast {
    right: 12px;
    left: 12px;
    bottom: 82px;
  }
}
