:root {
  --cloud-white: #f7fafc;
  --mist-blue: #e6edfb;
  --mint-haze: #e2f7f0;
  --blush-haze: #fbe9f3;
  --deep-ink: #0b1b23;
  --slate-ink: #4a5d68;
  --neon-mint: #00e5a0;
  --mint-ink: #00795a;
  --alert: #b3261e;
  --border: rgba(11, 27, 35, 0.12);
  --shadow: 0 24px 80px rgba(26, 55, 72, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--deep-ink);
  background: var(--cloud-white);
  font-synthesis: none;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  line-height: 1.6;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 229, 160, 0.22), transparent 28rem),
    radial-gradient(circle at 90% 35%, rgba(255, 46, 147, 0.12), transparent 28rem),
    linear-gradient(135deg, var(--cloud-white), var(--mist-blue), var(--mint-haze), var(--blush-haze));
  background-size: 140% 140%;
  animation: drift 18s ease-in-out infinite alternate;
}

.backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(rgba(11, 27, 35, 0.25) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: var(--mint-ink);
  text-underline-offset: 0.2em;
}

a:hover { color: #005e46; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--deep-ink);
  outline-offset: 3px;
}

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep-ink);
  text-decoration: none;
}

.brand img {
  border-radius: 15px;
  box-shadow: 0 8px 22px rgba(0, 121, 90, 0.18);
}

.brand span { display: grid; line-height: 1.2; }
.brand strong { font-size: 1.05rem; letter-spacing: -0.02em; }
.brand small { margin-top: 4px; color: var(--slate-ink); }

.header-link {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--deep-ink);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  padding: clamp(64px, 9vw, 120px) 0 clamp(60px, 8vw, 100px);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--mint-ink);
  background: rgba(0, 229, 160, 0.15);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7.6vw, 6.4rem);
  font-weight: 850;
}

.hero-copy {
  max-width: 720px;
  margin: 0;
  color: var(--slate-ink);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-badge {
  position: relative;
  width: 152px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.badge-ring {
  position: absolute;
  inset: 9px;
  border: 2px dashed rgba(0, 121, 90, 0.34);
  border-radius: inherit;
  animation: rotate 26s linear infinite;
}

.hero-badge strong { font-size: 2.6rem; line-height: 1; }
.hero-badge small { color: var(--slate-ink); font-weight: 750; }

.steps-section {
  padding: clamp(30px, 6vw, 74px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.section-heading { max-width: 660px; }
.section-heading > span { color: var(--mint-ink); font-weight: 850; }
h2 { margin-bottom: 14px; font-size: clamp(2rem, 5vw, 3.4rem); }
.section-heading p, .request-copy > p { color: var(--slate-ink); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(247, 250, 252, 0.72);
}

.steps li > span {
  color: var(--mint-ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.steps strong { display: block; margin-bottom: 7px; font-size: 1.05rem; }
.steps p { margin: 0; color: var(--slate-ink); font-size: 0.9rem; }

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
  padding: clamp(88px, 12vw, 150px) 0;
}

.data-card {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.data-card h3 { margin-bottom: 16px; }
.data-card ul { padding-left: 22px; }
.data-card li + li { margin-top: 8px; }
.data-card li::marker { color: var(--mint-ink); }
.data-card p { margin: 20px 0 0; color: var(--slate-ink); font-size: 0.88rem; }

.form-card {
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.form-intro {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.form-intro h3 { margin-bottom: 5px; font-size: 1.55rem; }
.form-intro p { margin: 0; color: var(--slate-ink); font-size: 0.9rem; }

.form-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-content: center;
  border-radius: 15px;
  background: var(--neon-mint);
  font-size: 1.5rem;
  font-weight: 900;
}

.field { display: grid; gap: 8px; }
.field label { font-size: 0.9rem; font-weight: 800; }
.field small { color: var(--slate-ink); }

input[type="email"] {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(247, 250, 252, 0.9);
  color: var(--deep-ink);
  font: inherit;
}

input[type="email"]:focus {
  border-color: var(--mint-ink);
  background: white;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.confirmation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 25px 0;
  color: var(--slate-ink);
  font-size: 0.9rem;
  cursor: pointer;
}

.confirmation input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--mint-ink);
}

button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  border: 0;
  border-radius: 15px;
  background: var(--neon-mint);
  color: var(--deep-ink);
  box-shadow: 0 12px 30px rgba(0, 229, 160, 0.24);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

button:hover { background: #00d494; }
button:disabled { opacity: 0.62; cursor: wait; }
.arrow { font-size: 1.3rem; }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.success {
  display: block;
  color: #005e46;
  background: rgba(0, 229, 160, 0.16);
}

.form-status.error {
  display: block;
  color: var(--alert);
  background: rgba(179, 38, 30, 0.09);
}

.form-footnote {
  margin: 24px 0 0;
  color: var(--slate-ink);
  font-size: 0.78rem;
  text-align: center;
}

.help-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 82px;
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.help-strip div { display: grid; gap: 4px; }
.help-strip span { color: var(--mint-ink); font-size: 0.8rem; font-weight: 850; text-transform: uppercase; }
.help-strip a { font-weight: 800; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--border);
  color: var(--slate-ink);
  font-size: 0.88rem;
}

@keyframes drift {
  from { background-position: 0% 0%; }
  to { background-position: 100% 100%; }
}

@keyframes rotate { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .request-layout { grid-template-columns: 1fr; }
  .request-copy { max-width: 720px; }
}

@media (max-width: 620px) {
  .site-header, main, footer { width: min(100% - 24px, 1120px); }
  .site-header { min-height: 76px; }
  .brand small { display: none; }
  .header-link { max-width: 145px; padding: 9px 12px; font-size: 0.76rem; text-align: center; }
  .hero { grid-template-columns: 1fr; padding-top: 58px; }
  h1 { font-size: clamp(2.75rem, 16vw, 4.6rem); }
  .hero-badge { display: none; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 160px; }
  .request-layout { padding-block: 90px; }
  .help-strip, footer { align-items: flex-start; flex-direction: column; }
}

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