/* ==========================================================================
   Funding With Adrian — styles.css
   Brand: Navy #0F172A / Royal Blue #2563EB / Emerald Green #10B981
   ========================================================================== */

:root {
  --navy: #0F172A;
  --blue: #2563EB;
  --green: #10B981;
  --green-dark: #0da271;
  --bg: #FFFFFF;
  --text: #1F2937;
  --text-muted: #5B6472;
  --border: #E5E7EB;
  --surface-alt: #F8FAFC;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --max-width: 1140px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.center { text-align: center; }

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

p { margin: 0 0 16px; color: var(--text); }

.accent-green { color: var(--green-dark); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-cta {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}
.btn-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(6px);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-name {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, #16213d 60%, var(--navy) 100%);
  padding: 72px 0 64px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.hero-copy { flex: 1 1 480px; }
.hero-media { flex: 0 0 auto; margin: 0 auto; }

.hero .eyebrow { color: var(--green); }

.hero h1 { color: #fff; }

.hero-sub {
  color: #CBD5E1;
  font-size: 1.15rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 16px;
}

.hero .btn-outline {
  border-color: #ffffff55;
  color: #fff;
}
.hero .btn-outline:hover { background: #fff; color: var(--navy); }

.hero-fine {
  color: #94A3B8;
  font-size: 0.82rem;
  max-width: 480px;
  margin-bottom: 0;
}

.photo-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.hero-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--navy);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-inner p {
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--surface-alt); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 44px;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--green);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.step-card p { color: var(--text-muted); margin-bottom: 0; }

/* ---------- Tags ---------- */
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 24px;
}

.tag {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}

.note { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- About ---------- */
.about-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.about-media { flex: 0 0 auto; margin: 0 auto; }

.about-photo {
  width: 260px;
  height: 325px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-copy { flex: 1 1 480px; }

.quote {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  border-left: 4px solid var(--green);
  padding-left: 16px;
  margin: 24px 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.faq-item h3 { color: var(--navy); }
.faq-item p { color: var(--text-muted); margin-bottom: 0; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 72px 0;
}

.final-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta h2 { color: #fff; }
.final-cta p { color: #DBEAFE; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: #CBD5E1;
  padding: 48px 0 28px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid #ffffff1f;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-brand p {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.footer-contact p { margin: 0 0 6px; }
.footer-contact a:hover { color: var(--green); }

.footer-links {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.footer-links a:hover { color: var(--green); }

.disclaimer {
  font-size: 0.78rem;
  color: #94A3B8;
  line-height: 1.6;
  max-width: 900px;
}

.copyright {
  font-size: 0.78rem;
  color: #64748B;
  margin-bottom: 0;
}

/* ---------- Thank you page ---------- */
.thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
}

.thankyou-card {
  max-width: 560px;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-inner, .about-inner { flex-direction: column; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-fine { margin-left: auto; margin-right: auto; }
  .about-copy { text-align: left; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 520px) {
  .brand-name { font-size: 0.92rem; }
  .nav-cta { padding: 9px 14px; font-size: 0.82rem; }
  .photo-ring, .hero-photo { width: 200px; height: 200px; }
  .about-photo { width: 200px; height: 200px; }
  .btn-lg { width: 100%; }
  .hero-actions .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* Focus visibility for accessibility */
a:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* ---------- Legal pages & operator line (added Aug 2026) ---------- */
.footer-legal-line { font-size: 13px; color: #94A3B8; margin: 2px 0 0; }
.legal-page h1 { margin-bottom: 6px; }
.legal-page h2 { margin-top: 28px; margin-bottom: 8px; font-size: 22px; color: var(--navy); }
.legal-page p { max-width: 780px; }

/* ---------- Footer contrast fix (v2, Aug 2026) ---------- */
.footer-contact a, .footer-links a { color: #E2E8F0; }
.footer-contact p { color: #CBD5E1; }
.footer-company { color: #FFFFFF; font-weight: 700; }
