
/* =========================================================
   base.css — reset, design tokens, typography, layout helpers
   ========================================================= */

:root {
  /* Color */
  --indigo:        #324dd4;
  --indigo-600:    #4338ca;
  --indigo-700:    #3730a3;
  --navy:          #181436;   /* dark CTA button */
  --navy-hover:    #251f4d;

  --ink:           #11131f;   /* headings */
  --body:          #5a6275;   /* body text */
  --bg:            #f6f7fb;   /* page background */
  --card:          #ffffff;
  --border:        #e9ebf3;
  --badge-bg:      #ebedfd;
  --badge-ink:     #324DD4;
  --field-bg:      #f7f8fb;
  --field-border:  #e3e6f0;
  --placeholder:   #9aa1b2;

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-card: 0 1px 2px rgba(17,19,31,.04), 0 12px 32px -12px rgba(17,19,31,.12);
  --shadow-soft: 0 1px 2px rgba(17,19,31,.04), 0 4px 14px -8px rgba(17,19,31,.08);

  /* Layout */
  --maxw: 1120px;
  --gutter: 22px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { color: var(--ink); margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid rgba(79,70,229,.45);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-block;
  color: var(--indigo);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .02em;
  background: var(--badge-bg);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin: 0 auto 18px;
}

.section-title {
  font-size: clamp(1.7rem, 1.1rem + 2.6vw, 2.5rem);
  font-weight: 800;
}
.accent { color: var(--indigo); }

/* shared section title centering for the marketing blocks */
.why, .fit, .steps { text-align: center; }
.why .eyebrow, .fit .eyebrow, .steps .eyebrow { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}


/* =========================================================
   components.css — header, hero, form, sections, footer
   ========================================================= */

/* ---------------- Buttons ---------------- */
/* =========================================================
   components.css — header, hero, form, sections, footer
   ========================================================= */

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border: none;
  border-radius: var(--r-md);
  white-space: nowrap;
  transition: transform .12s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--indigo);
  color: #fff;
  padding: 13px 20px;
  font-size: .95rem;
  box-shadow: 0 8px 18px -8px rgba(79,70,229,.7);
}
.btn-primary:hover { background: var(--indigo-600); }

.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-hover); }

.btn-sm { padding: clamp(8px, 2.2vw, 9px) clamp(13px, 4vw, 18px); font-size: clamp(.82rem, 2.4vw, .9rem); border-radius: var(--r-sm); }
.btn-lg { padding: clamp(14px, 3.5vw, 16px) clamp(22px, 5vw, 30px); font-size: clamp(.9rem, 2.6vw, 1rem); border-radius: var(--r-md); }
.btn-block { width: 100%; padding: 15px; font-size: 1rem; }

/* ---------------- Logo ---------------- */
.logo { display: inline-flex; align-items: center; gap: 9px; }
.logo-mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--indigo);
  color: #fff;
}
.logo-text { font-weight: 800; font-size: 1.18rem; letter-spacing: -0.02em; }
.logo-trade { color: var(--ink); }
.logo-time  { color: var(--indigo); }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,247,251,.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* ---------------- Hero ---------------- */
.hero { padding: 40px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.hero-copy { max-width: 100%; text-align: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--badge-bg);
  color: var(--badge-ink);
  font-weight: 600;
  font-size: .82rem;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.badge svg { color: var(--indigo); }

.hero-title {
  font-size: clamp(2.1rem, 1.2rem + 4.2vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.04rem;
  color: var(--body);
  max-width: 46ch;
  margin-inline: auto;
}

.hero-photo {
  margin: 28px 0 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-photo img { width: 100%; height: 280px; object-fit: cover; }

/* ---------------- Apply form card ---------------- */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
}
.form-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.form-sub { font-size: .92rem; color: var(--body); margin-bottom: 22px; }

.apply-form .field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}

.field input,
.field select {
  width: 100%;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.field input::placeholder { color: var(--placeholder); }
.field input:focus,
.field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(79,70,229,.14);
}

/* icon-prefixed inputs */
.input-icon { position: relative; display: flex; align-items: center; }
.input-icon > svg:first-child {
  position: absolute;
  left: 13px;
  color: var(--placeholder);
  pointer-events: none;
}
.input-icon input,
.input-icon select { padding-left: 38px; }

/* select */
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  color: var(--placeholder);
  cursor: pointer;
  padding-right: 38px;
}
.select-wrap select:has(option:checked:not([value=""])) { color: var(--ink); }
.select-wrap .chevron {
  position: absolute;
  right: 13px;
  color: var(--placeholder);
  pointer-events: none;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .82rem;
  color: var(--body);
  margin: 14px 0 0;
}
.form-note svg { color: var(--indigo); }
.form-note strong { color: var(--ink); }

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: .85rem;
}
.avatars { display: inline-flex; }
.avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-block;
}
.avatar + .avatar { margin-left: -9px; }
.proof-text { color: var(--body); }
.proof-text strong { color: var(--ink); }

/* ---------------- Section rhythm ---------------- */
.why  { padding: 56px 0; }
.fit  { padding: 56px 0; }
.steps { padding: 60px 0 72px; }

.why .section-title,
.fit .section-title { margin-bottom: 40px; }

/* ---------------- Feature cards ---------------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.feature-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--badge-bg);
  color: var(--indigo);
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: .92rem; color: var(--body); }

/* ---------------- Is this you ---------------- */
.fit-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}
.fit-list li { display: flex; align-items: flex-start; gap: 13px; }
.tick {
  flex: none;
  width: 24px; height: 24px;
  margin-top: 1px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--badge-bg);
  color: var(--indigo);
}
.fit-list p { font-size: .98rem; color: var(--body); }
.fit-list strong { color: var(--ink); font-weight: 700; }

/* ---------------- Steps (indigo block) ---------------- */
.steps {
  background: var(--indigo);
  color: #fff;
}
.steps .eyebrow-light {
  background: rgba(255,255,255,.16);
  color: #fff;
}
.section-title-light { color: #fff; margin-bottom: 40px; }
.accent-light { color: #c7c2ff; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
  max-width: 720px;
  margin-inline: auto;
}
.step-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-md);
  padding: 22px;
}
.step-num {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: #fff;
  color: var(--indigo);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.step-card h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: rgba(255,255,255,.78); font-size: .92rem; }

.steps-cta { margin-top: 30px; }
.steps-cta .btn { display: flex; width: 100%; max-width: 420px; margin-inline: auto; }


/* success confirmation panel (replaces the form on submit) */
.form-success {
  text-align: center;
  padding: 18px 6px 8px;
  animation: form-success-pop .35s ease both;
}
.form-success-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
}
.form-success-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-success-text {
  font-size: .95rem;
  color: var(--body);
  max-width: 36ch;
  margin-inline: auto;
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 26px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer-copy { font-size: .85rem; color: var(--body); }



/* =========================================================
   Responsive — tablet & desktop
   ========================================================= */
@media (min-width: 720px) {
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .fit-list { grid-template-columns: 1fr 1fr; gap: 22px 40px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .footer-inner { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 960px) {
  .hero { padding: 60px 0 80px; }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }
  .hero-copy { max-width: 560px; text-align: left; }
  .hero-sub { margin-inline: 0; }
  .hero-photo img { height: 340px; }
  .form-card { padding: 30px 28px; }

  .why { padding: 80px 0; }
  .fit { padding: 80px 0; }
  .steps { padding: 84px 0 96px; }
  
}

