/* ==========================================================================
   Claimoria landing — mobile-first vanilla CSS
   Breakpoints: 375px (base), 768px (tablet), 1200px (desktop)
   Color: deep blue (#0f2a52) + emerald accent (#10b981)
   Typography: system serif headlines, system sans-serif body
   ========================================================================== */

/* --- RESET + TOKENS ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0f2a52; --navy-lt: #1a3d6e; --navy-dk: #091c38;
  --em:         #10b981; --em-dk:   #059669;
  --slate:      #475569; --slate-lt: #64748b; --muted: #94a3b8;
  --border:     #e2e8f0; --bg: #ffffff; --bg-alt: #f8fafc; --text: #1e293b;
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
           Helvetica, Arial, sans-serif, 'Apple Color Emoji';
  --s1:.25rem; --s2:.5rem; --s3:.75rem; --s4:1rem; --s5:1.25rem; --s6:1.5rem;
  --s8:2rem;   --s10:2.5rem; --s12:3rem; --s16:4rem; --s20:5rem; --s24:6rem;
  --r-sm:4px; --r-md:8px; --r-lg:16px;
  --sh-sm:0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.06);
  --sh-md:0 4px 16px rgba(0,0,0,.10),0 2px 6px rgba(0,0,0,.07);
  --sh-lg:0 10px 40px rgba(0,0,0,.12),0 4px 12px rgba(0,0,0,.08);
}

html { font-size:16px; scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body { font-family:var(--sans); font-size:1rem; line-height:1.6; color:var(--text);
       background:var(--bg); -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
img,svg { display:block; max-width:100%; }
a { color:var(--em-dk); text-decoration:underline; text-underline-offset:2px; }
a:hover,a:focus { color:var(--navy); }
a:focus-visible { outline:2px solid var(--em); outline-offset:2px; border-radius:2px; }
ul { list-style:none; }

/* --- LAYOUT --------------------------------------------------------------- */
.container { width:100%; max-width:1160px; margin-inline:auto; padding-inline:var(--s5); }
@media(min-width:768px)  { .container { padding-inline:var(--s8); } }
@media(min-width:1200px) { .container { padding-inline:var(--s10); } }

/* --- BUTTONS -------------------------------------------------------------- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:var(--s2);
  padding:var(--s3) var(--s6); font-family:var(--sans); font-size:.9375rem;
  font-weight:600; line-height:1.4; text-decoration:none; border:2px solid transparent;
  border-radius:var(--r-md); cursor:pointer; white-space:nowrap;
  transition:background .15s,color .15s,border-color .15s,box-shadow .15s;
}
.btn:focus-visible { outline:2px solid var(--em); outline-offset:2px; }
.btn--primary  { background:var(--em); color:#fff; border-color:var(--em); }
.btn--primary:hover { background:var(--em-dk); border-color:var(--em-dk); color:#fff; box-shadow:var(--sh-md); }
.btn--outline  { background:transparent; color:var(--navy); border-color:var(--navy); }
.btn--outline:hover { background:var(--navy); color:#fff; }
.btn--secondary{ background:var(--bg-alt); color:var(--slate); border-color:var(--border); }
.btn--sm  { padding:var(--s2) var(--s4); font-size:.875rem; }
.btn--lg  { padding:var(--s4) var(--s10); font-size:1rem; }
.btn--full{ width:100%; }
.btn--disabled{ opacity:.5; cursor:not-allowed; pointer-events:none; }

/* --- HEADER --------------------------------------------------------------- */
.site-header {
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.96); backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px); border-bottom:1px solid var(--border);
}
.nav { display:flex; align-items:center; justify-content:space-between; height:60px; }
.nav__logo { display:inline-flex; align-items:center; gap:var(--s2); text-decoration:none; color:var(--navy); }
.nav__logo:hover { color:var(--navy-lt); }
.logo-mark {
  display:inline-flex; align-items:center; justify-content:center;
  width:32px; height:32px; background:var(--navy); color:#fff;
  font-family:var(--serif); font-size:1.1rem; font-weight:700;
  border-radius:var(--r-sm); flex-shrink:0;
}
.logo-text { font-family:var(--sans); font-size:1.0625rem; font-weight:700; letter-spacing:-.01em; color:var(--navy); }

/* --- BADGE ---------------------------------------------------------------- */
.badge {
  display:inline-block; padding:var(--s1) var(--s3);
  background:rgba(16,185,129,.12); color:var(--em-dk);
  border:1px solid rgba(16,185,129,.3); border-radius:100px;
  font-size:.8125rem; font-weight:600; letter-spacing:.01em;
}

/* --- HERO ----------------------------------------------------------------- */
.hero {
  background:linear-gradient(160deg,var(--navy-dk) 0%,var(--navy) 60%,var(--navy-lt) 100%);
  color:#fff; padding-top:var(--s12); padding-bottom:var(--s12);
}
.hero__inner { display:flex; flex-direction:column; gap:var(--s6); max-width:760px; }
.hero__headline {
  font-family:var(--serif); font-size:clamp(1.75rem,5vw,2.75rem);
  font-weight:700; line-height:1.2; color:#fff; letter-spacing:-.02em;
}
.hero__subhead { font-size:1.0625rem; line-height:1.7; color:rgba(255,255,255,.82); max-width:640px; }
.hero__subhead em { font-style:italic; color:var(--em); }
.hero__trust {
  display:flex; align-items:flex-start; gap:var(--s2);
  font-size:.875rem; color:rgba(255,255,255,.7); max-width:560px; line-height:1.5;
}
.icon-shield { flex-shrink:0; margin-top:2px; color:var(--em); }

/* --- FORM ----------------------------------------------------------------- */
.hero__form-wrap {
  background:#fff; border-radius:var(--r-lg); padding:var(--s6);
  box-shadow:var(--sh-lg); max-width:520px; width:100%; margin-top:var(--s4);
}
.waitlist-form { display:flex; flex-direction:column; gap:var(--s4); }
.form-group { display:flex; flex-direction:column; gap:var(--s1); }
.form-label { font-size:.875rem; font-weight:600; color:var(--navy); }
.form-label--optional { font-weight:400; color:var(--slate-lt); }
.form-input,.form-textarea {
  width:100%; padding:var(--s3) var(--s4); font-family:var(--sans); font-size:.9375rem;
  color:var(--text); background:var(--bg); border:1.5px solid var(--border);
  border-radius:var(--r-md); transition:border-color .15s,box-shadow .15s;
  appearance:none; -webkit-appearance:none;
}
.form-input:focus,.form-textarea:focus {
  outline:none; border-color:var(--em); box-shadow:0 0 0 3px rgba(16,185,129,.15);
}
.form-input[aria-invalid="true"] { border-color:#ef4444; box-shadow:0 0 0 3px rgba(239,68,68,.12); }
.form-textarea { resize:vertical; min-height:80px; }
.form-hint { font-size:.8125rem; color:var(--slate-lt); }
.form-disclaimer { font-size:.8rem; color:var(--muted); text-align:center; line-height:1.5; }
.form-disclaimer a { color:var(--slate-lt); }
.waitlist-success {
  display:flex; flex-direction:column; align-items:center;
  text-align:center; gap:var(--s4); padding:var(--s6) var(--s4);
}
.success-icon { color:var(--em); }
.success-title { font-family:var(--serif); font-size:1.5rem; font-weight:700; color:var(--navy); }
.success-body { font-size:.9375rem; color:var(--slate); line-height:1.6; }

/* --- SECTION SHARED ------------------------------------------------------- */
.section { padding-top:var(--s16); padding-bottom:var(--s16); }
.section--alt { background:var(--bg-alt); }
.section-label {
  font-size:.8125rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:var(--em-dk); margin-bottom:var(--s4);
}
.section-headline {
  font-family:var(--serif); font-size:clamp(1.5rem,3.5vw,2.25rem);
  font-weight:700; line-height:1.25; color:var(--navy);
  letter-spacing:-.02em; margin-bottom:var(--s5);
}
.section-intro { font-size:1.0625rem; line-height:1.7; color:var(--slate); max-width:680px; margin-bottom:var(--s10); }

/* --- PROBLEM -------------------------------------------------------------- */
.problem-grid { display:grid; grid-template-columns:1fr; gap:var(--s5); }
@media(min-width:768px)  { .problem-grid { grid-template-columns:repeat(3,1fr); gap:var(--s6); } }
@media(min-width:1200px) { .problem-grid { gap:var(--s8); } }
.problem-card {
  background:var(--bg); border:1px solid var(--border); border-radius:var(--r-lg);
  padding:var(--s6); display:flex; flex-direction:column; gap:var(--s3); box-shadow:var(--sh-sm);
}
.problem-card__icon  { color:var(--navy); flex-shrink:0; }
.problem-card__title { font-size:1rem; font-weight:700; color:var(--navy); line-height:1.3; }
.problem-card__body  { font-size:.9375rem; color:var(--slate); line-height:1.6; }
.problem-card__body strong { color:var(--navy); font-weight:600; }

/* --- SOLUTION ------------------------------------------------------------- */
.solution-steps {
  display:flex; flex-direction:column; margin-bottom:var(--s10);
  border-left:2px solid var(--border); margin-left:var(--s5);
}
@media(min-width:768px) { .solution-steps { margin-left:var(--s6); } }
.solution-step {
  display:flex; align-items:flex-start; gap:var(--s5);
  padding-bottom:var(--s8); padding-left:var(--s6); position:relative;
}
.solution-step:last-child { padding-bottom:0; }
.step-number {
  position:absolute; left:calc(-1 * var(--s5) - 1px); top:0;
  width:36px; height:36px; background:var(--navy); color:#fff;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:.875rem; font-weight:700; flex-shrink:0; border:3px solid var(--bg);
}
.step-content { padding-top:var(--s1); }
.step-title { font-size:1.0625rem; font-weight:700; color:var(--navy); margin-bottom:var(--s2); line-height:1.3; }
.step-body  { font-size:.9375rem; color:var(--slate); line-height:1.65; }
.solution-scope {
  background:rgba(15,42,82,.05); border-left:3px solid var(--navy);
  border-radius:0 var(--r-md) var(--r-md) 0; padding:var(--s4) var(--s5);
}
.scope-note { font-size:.9375rem; color:var(--slate); line-height:1.6; }
.scope-note strong { color:var(--navy); }

/* --- WHY ------------------------------------------------------------------ */
.why-grid { display:grid; grid-template-columns:1fr; gap:var(--s5); }
@media(min-width:768px)  { .why-grid { grid-template-columns:repeat(2,1fr); gap:var(--s6); } }
@media(min-width:1200px) { .why-grid { gap:var(--s8); } }
.why-card {
  background:var(--bg); border:1px solid var(--border); border-radius:var(--r-lg);
  padding:var(--s6); display:flex; flex-direction:column; gap:var(--s3);
  box-shadow:var(--sh-sm); transition:box-shadow .2s,transform .2s;
}
.why-card:hover { box-shadow:var(--sh-md); transform:translateY(-2px); }
.why-card__icon  { color:var(--em-dk); flex-shrink:0; }
.why-card__title { font-size:1rem; font-weight:700; color:var(--navy); line-height:1.3; }
.why-card__body  { font-size:.9375rem; color:var(--slate); line-height:1.65; }

/* --- PRICING -------------------------------------------------------------- */
.pricing-grid { display:grid; grid-template-columns:1fr; gap:var(--s5); align-items:start; }
@media(min-width:768px) { .pricing-grid { grid-template-columns:repeat(3,1fr); } }
.pricing-card {
  border:1px solid var(--border); border-radius:var(--r-lg); padding:var(--s6);
  display:flex; flex-direction:column; gap:var(--s4); background:var(--bg); box-shadow:var(--sh-sm);
}
.pricing-card--featured { border-color:var(--em); box-shadow:0 0 0 2px rgba(16,185,129,.25),var(--sh-md); }
.pricing-card__badge { font-size:.8125rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--em-dk); }
.pricing-card__badge--secondary { color:var(--slate-lt); }
.pricing-card__price { display:flex; align-items:baseline; gap:var(--s1); }
.price-amount { font-family:var(--serif); font-size:2.25rem; font-weight:700; color:var(--navy); line-height:1; }
.price-period  { font-size:.9375rem; color:var(--slate-lt); }
.pricing-card__prepay   { font-size:.875rem; color:var(--slate); line-height:1.4; }
.pricing-card__features { display:flex; flex-direction:column; gap:var(--s2); flex:1; }
.pricing-card__features li {
  display:flex; align-items:flex-start; gap:var(--s2);
  font-size:.9rem; color:var(--slate); line-height:1.4;
}
.pricing-card__features li::before {
  content:''; display:inline-block; width:16px; height:16px; flex-shrink:0; margin-top:1px;
  background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-size:contain;
}
.pricing-card__note { font-size:.8125rem; color:var(--muted); text-align:center; line-height:1.5; }

/* --- FAQ ------------------------------------------------------------------ */
.faq-list { display:flex; flex-direction:column; max-width:760px; border-top:1px solid var(--border); }
.faq-item { border-bottom:1px solid var(--border); }
.faq-question {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  gap:var(--s4); padding:var(--s5) 0; font-family:var(--sans); font-size:1rem;
  font-weight:600; color:var(--navy); background:transparent; border:none;
  cursor:pointer; text-align:left; line-height:1.4; transition:color .15s;
}
.faq-question:hover { color:var(--em-dk); }
.faq-question:focus-visible { outline:2px solid var(--em); outline-offset:2px; border-radius:var(--r-sm); }
.faq-icon { flex-shrink:0; color:var(--slate-lt); transition:transform .2s; }
.faq-question[aria-expanded="true"] .faq-icon { transform:rotate(180deg); }
.faq-answer { padding-bottom:var(--s5); }
.faq-answer p { font-size:.9375rem; color:var(--slate); line-height:1.7; }

/* --- CTA ------------------------------------------------------------------ */
.cta-section { background:linear-gradient(135deg,var(--navy-dk) 0%,var(--navy) 100%); color:#fff; }
.cta-inner {
  display:flex; flex-direction:column; align-items:center;
  text-align:center; gap:var(--s6); max-width:640px; margin-inline:auto;
}
.cta-headline {
  font-family:var(--serif); font-size:clamp(1.5rem,3.5vw,2.125rem);
  font-weight:700; line-height:1.25; color:#fff; letter-spacing:-.02em;
}
.cta-body { font-size:1.0625rem; color:rgba(255,255,255,.8); line-height:1.65; }

/* --- FOOTER --------------------------------------------------------------- */
.site-footer { background:var(--navy-dk); color:rgba(255,255,255,.7); padding-top:var(--s12); padding-bottom:var(--s10); }
.footer-inner { display:flex; flex-direction:column; gap:var(--s8); }
@media(min-width:768px) {
  .footer-inner { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:auto auto; gap:var(--s8) var(--s12); }
  .footer-disclaimer { grid-column:1/-1; }
}
.footer-logo .logo-text { color:#fff; }
.footer-tagline { font-size:.9rem; color:rgba(255,255,255,.55); margin-top:var(--s3); line-height:1.5; }
.footer-links { display:flex; flex-wrap:wrap; gap:var(--s2) var(--s5); align-items:flex-start; }
.footer-links a { font-size:.875rem; color:rgba(255,255,255,.65); text-decoration:none; transition:color .15s; }
.footer-links a:hover { color:#fff; }
.footer-disclaimer { border-top:1px solid rgba(255,255,255,.1); padding-top:var(--s6); display:flex; flex-direction:column; gap:var(--s3); }
.footer-disclaimer p { font-size:.8125rem; color:rgba(255,255,255,.5); line-height:1.65; max-width:900px; }
.footer-copyright { font-size:.8125rem; color:rgba(255,255,255,.35); }

/* --- RESPONSIVE 768px+ ---------------------------------------------------- */
@media(min-width:768px) {
  .hero  { padding-top:var(--s20); padding-bottom:var(--s20); }
  .hero__inner { gap:var(--s8); }
  .section { padding-top:var(--s20); padding-bottom:var(--s20); }
  .waitlist-form { gap:var(--s5); }
}

/* --- RESPONSIVE 1200px+ --------------------------------------------------- */
@media(min-width:1200px) {
  .hero { padding-top:var(--s24); padding-bottom:var(--s24); }
  .hero__inner { max-width:800px; }
  .section { padding-top:var(--s24); padding-bottom:var(--s24); }
}

/* --- CHANNELS ------------------------------------------------------------- */
.channels {
  background:var(--navy-dk);
  padding-top:var(--s5); padding-bottom:var(--s5);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.channels__label {
  font-size:.75rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(255,255,255,.4); margin-bottom:var(--s4); text-align:center;
}
.channels__list {
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:var(--s3) var(--s6);
}
.channels__item {
  display:inline-flex; align-items:center; gap:var(--s2);
  font-size:.8125rem; color:rgba(255,255,255,.6);
  white-space:nowrap;
}
.channels__item svg { flex-shrink:0; opacity:.7; }

/* --- REDUCED MOTION ------------------------------------------------------- */
@media(prefers-reduced-motion:reduce) {
  *,*::before,*::after {
    animation-duration:.01ms !important; animation-iteration-count:1 !important;
    transition-duration:.01ms !important; scroll-behavior:auto !important;
  }
}
