:root {
  --bg:         #FAF9F6;
  --bg2:        #F2EFE8;
  --border:     rgba(28,27,24,0.1);
  --text:       #1C1B18;
  --muted:      rgba(28,27,24,0.52);
  --dim:        rgba(28,27,24,0.28);
  --orange:     #E8601C;
  --orange-bg:  rgba(232,96,28,0.08);
  --orange-brd: rgba(232,96,28,0.2);
  --green:      #16A34A;
  --green-bg:   rgba(22,163,74,0.08);
  --green-brd:  rgba(22,163,74,0.2);
  --r:          10px;
  --sans:       'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ── CONTAINER ── */
.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
}
.container-wide {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,249,246,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 960px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-size: 15px; font-weight: 700;
  letter-spacing: .05em; color: var(--text);
  min-width: 180px;
}
.logo em { color: var(--orange); font-style: normal; }

.logo-cursor {
  display: inline-block;
  width: 2px; height: 1em;
  background: var(--orange);
  margin-left: 2px;
  vertical-align: text-bottom;
  border-radius: 1px;
  animation: cur-blink .75s ease-in-out infinite;
}
@keyframes cur-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: 13px; color: var(--muted);
  text-decoration: none; transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 13px !important; font-weight: 500 !important;
  color: var(--orange) !important;
  border: 1px solid var(--orange-brd) !important;
  background: var(--orange-bg) !important;
  padding: 6px 16px; border-radius: 8px;
  transition: background .15s !important;
}
.nav-cta:hover { background: rgba(232,96,28,.14) !important; }

/* ── HERO ── */
.hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  text-align: center;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  color: var(--green);
  border: 1px solid var(--green-brd); background: var(--green-bg);
  padding: 5px 16px; border-radius: 100px;
  margin-bottom: 2.5rem;
  animation: up .5s both;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero h1 {
  font-size: clamp(48px, 9vw, 88px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -.04em; color: var(--text);
  margin-bottom: 1.75rem;
  animation: up .55s .07s both;
}
.hero h1 .orange { color: var(--orange); }

.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.7; color: var(--muted);
  margin-bottom: 2.75rem;
  animation: up .55s .14s both;
}

.hero-btns {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
  animation: up .55s .2s both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500;
  color: #fff; text-decoration: none; font-family: var(--sans);
  background: var(--orange);
  padding: 13px 28px; border-radius: var(--r);
  border: none; cursor: pointer;
  box-shadow: 0 2px 16px rgba(232,96,28,.28);
  transition: transform .15s, filter .15s, box-shadow .2s;
}
.btn-primary:hover {
  transform: translateY(-2px); filter: brightness(1.07);
  box-shadow: 0 6px 30px rgba(232,96,28,.38);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; color: var(--muted);
  text-decoration: none;
  padding: 13px 24px; border-radius: var(--r);
  border: 1px solid var(--border);
  background: white;
  transition: color .15s, border-color .15s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(28,27,24,.2); }

.hero-note {
  display: block; margin-top: 1.5rem;
  font-size: 13px; color: var(--dim);
  animation: up .55s .26s both;
}

@keyframes up {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── TOOLS ── */
.tools {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 1.25rem 0;
}
.tools-inner {
  max-width: 960px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2rem;
}
.tools-label { font-size: 12px; color: var(--dim); }
.tools-divider { width: 1px; height: 16px; background: var(--border); }
.tools-row { display: flex; gap: 1.75rem; flex-wrap: wrap; justify-content: center; }
.tool { font-size: 13px; font-weight: 500; color: var(--dim); }

/* ── SECTION HEADER ── */
.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.section-center { text-align: center; }
.section + .section { border-top: 1px solid var(--border); }

.section-label {
  font-size: 12px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px); font-weight: 700;
  color: var(--text); letter-spacing: -.03em;
  line-height: 1.1; margin-bottom: .75rem;
}
.section-sub {
  font-size: 16px; color: var(--muted); line-height: 1.7;
}

/* ── FEATURES (3 cards) ── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 3rem;
}

.fcard {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.fcard:hover {
  border-color: rgba(28,27,24,.18);
  box-shadow: 0 6px 24px rgba(28,27,24,.07);
  transform: translateY(-2px);
}

.fcard-icon {
  font-size: 24px; margin-bottom: 1rem;
  display: block;
}
.fcard h3 {
  font-size: 16px; font-weight: 600;
  color: var(--text); margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.fcard p {
  font-size: 14px; line-height: 1.65; color: var(--muted);
}

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--orange); border-radius: var(--r);
  padding: 2.5rem; text-align: center;
  margin-top: 10px;
}
.stat-num {
  font-size: 56px; font-weight: 700;
  color: white; line-height: 1; letter-spacing: -.04em;
}
.stat-label { font-size: 15px; color: rgba(255,255,255,.8); margin-top: .4rem; }
.stat-cta {
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 600;
  color: var(--orange); text-decoration: none;
  background: white;
  padding: 10px 22px; border-radius: var(--r);
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.stat-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

/* ── STEPS ── */
.steps-list {
  margin-top: 3rem;
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden;
}
.step-item {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 1.75rem 2rem; background: white;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.step-item:last-child { border-bottom: none; }
.step-item:hover { background: var(--bg2); }

.step-num {
  font-size: 13px; font-weight: 700;
  color: var(--orange); flex-shrink: 0;
  width: 28px; padding-top: 2px;
}
.step-body h3 {
  font-size: 17px; font-weight: 600;
  color: var(--text); margin-bottom: .35rem;
  letter-spacing: -.02em;
}
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.step-item--highlight {
  background: var(--orange-bg);
  border-bottom: none;
}
.step-item--highlight:hover { background: rgba(232,96,28,.12); }
.step-item--highlight .step-num { color: var(--orange); font-size: 16px; }
.step-item--highlight h3 { color: var(--orange); }

/* ── ABOUT ── */
.about-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  display: flex; align-items: flex-start; gap: 1.5rem;
  margin-top: 2.5rem;
  transition: border-color .2s;
}
.about-card:hover { border-color: rgba(28,27,24,.18); }

.about-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange-bg); border: 1px solid var(--orange-brd);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--orange);
}
.about-name {
  font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: .25rem; letter-spacing: -.02em;
}
.about-title { font-size: 13px; color: var(--muted); margin-bottom: 1rem; }
.about-bio { font-size: 14px; line-height: 1.75; color: var(--muted); }

/* ── FORM ── */
.form-wrap {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.5rem;
  margin-top: 2.5rem;
}

.free-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  color: var(--green);
  border: 1px solid var(--green-brd); background: var(--green-bg);
  padding: 4px 14px; border-radius: 100px; margin-bottom: 1rem;
}

.form-wrap h2 {
  font-size: 22px; font-weight: 700;
  color: var(--text); letter-spacing: -.025em; margin-bottom: .4rem;
}
.form-wrap > p {
  font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 2rem;
}

.fields { display: flex; flex-direction: column; gap: 14px; }

.field label {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--dim); margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 11px 14px; font-size: 14px;
  color: var(--text); font-family: var(--sans); outline: none;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none; appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-bg);
}
.field textarea { resize: none; height: 110px; }
.field select option { background: white; }
::placeholder { color: var(--dim); }

.fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.submit-btn {
  width: 100%; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 15px; font-weight: 600; font-family: var(--sans);
  color: white; background: var(--orange);
  border: none; border-radius: var(--r);
  padding: 14px; cursor: pointer;
  box-shadow: 0 2px 12px rgba(232,96,28,.25);
  transition: transform .15s, filter .15s, box-shadow .2s;
}
.submit-btn:hover {
  transform: translateY(-2px); filter: brightness(1.07);
  box-shadow: 0 6px 28px rgba(232,96,28,.35);
}
.submit-btn:active { transform: translateY(0); }

.form-note {
  margin-top: 12px; text-align: center;
  font-size: 12px; color: var(--dim);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg2);
  padding: 2rem 0;
  text-align: center;
}
.footer-inner {
  max-width: 680px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
}
.footer-inner p { font-size: 13px; color: var(--dim); margin-bottom: .4rem; }
.footer-inner a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color .15s; }
.footer-inner a:hover { color: var(--orange); }

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1),
              transform .6s cubic-bezier(.16,1,.3,1);
}
.sr.d1 { transition-delay: .1s; }
.sr.d2 { transition-delay: .2s; }
.sr.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .fields-row { grid-template-columns: 1fr; }
  .about-card { flex-direction: column; gap: 1rem; }
  .form-wrap { padding: 1.75rem; }
}
