/* ===== Design tokens ===== */
:root {
  --navy: #0B3142;
  --navy-deep: #123B4D;
  --teal: #0E7C7B;
  --gold: #F2B134;
  --body-grey: #595959;
  --bg-light: #F5F7F8;
  --white: #FFFFFF;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-width: 1120px;
  --radius: 12px;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--body-grey);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

a { color: inherit; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 16px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

.section-heading {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
  text-align: center;
  margin-bottom: 2rem;
}
.section-heading--light { color: var(--white); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
  margin-bottom: 0.6rem;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(11, 49, 66, 0.08);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.navbar__mark { height: 26px; width: auto; }
.navbar__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
}
.navbar__links a { text-decoration: none; color: var(--navy); opacity: 0.75; transition: opacity 0.15s ease; }
.navbar__links a:hover { opacity: 1; }
.btn--nav {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.88rem;
  padding: 0.6rem 1.1rem;
}
.btn--nav:hover { box-shadow: 0 4px 14px rgba(242, 177, 52, 0.35); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.9rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover { box-shadow: 0 6px 18px rgba(242, 177, 52, 0.4); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  width: 100%;
}
.btn--gold:hover { box-shadow: 0 6px 18px rgba(242, 177, 52, 0.35); }

/* ===== Hero ===== */
.hero {
  background: var(--navy);
  padding: 3.5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(480px 320px at 85% -10%, rgba(242, 177, 52, 0.16), transparent 70%),
    radial-gradient(420px 320px at 10% 110%, rgba(14, 124, 123, 0.22), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.hero__copy { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__headline {
  color: var(--white);
  font-size: clamp(2.1rem, 1.7rem + 2.2vw, 3.5rem);
  max-width: 18ch;
}
.hero__subhead {
  color: #C9D6DC;
  font-size: 1.1rem;
  max-width: 46ch;
}
.hero__actions {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero__pro-link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.95rem;
  opacity: 0.9;
}
.hero__pro-link:hover { opacity: 1; }

.hero__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1rem;
  margin-top: 0.5rem;
}
.hero__chips li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.4rem 0.8rem 0.4rem 0.5rem;
}
.hero__chips svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero__art { width: 100%; max-width: 320px; }
.hero__visual { width: 100%; height: auto; display: block; }

/* ===== Trust bar ===== */
.trust-bar {
  background: var(--bg-light);
  padding: 3rem 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: center;
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  box-shadow: 0 1px 3px rgba(11, 49, 66, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.trust-bar__item:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(11, 49, 66, 0.1); }
.trust-bar__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 124, 123, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-bar__icon { width: 24px; height: 24px; color: var(--teal); }
.trust-bar__item p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}

/* ===== How it works ===== */
.how-it-works { padding: 4.5rem 0; background: var(--white); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}
.steps__item {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.75rem;
  box-shadow: 0 1px 3px rgba(11, 49, 66, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.steps__item:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(11, 49, 66, 0.1); }
.steps__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(11, 49, 66, 0.06);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.steps__icon svg { width: 26px; height: 26px; }
.steps__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 6px rgba(11, 49, 66, 0.2);
}
.steps__item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.steps__item p { font-size: 0.92rem; }

/* ===== Capture / forms ===== */
.capture { background: var(--bg-light); padding: 4.5rem 0; }
.capture__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 640px;
}
.capture__copy .section-heading { text-align: left; margin-bottom: 0.75rem; }
.capture__copy p { max-width: 48ch; }
.capture__visual {
  width: 100%;
  max-width: 220px;
  margin: 2rem auto 0;
  display: block;
}

.form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(11, 49, 66, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form--dark {
  background: var(--navy-deep);
  box-shadow: none;
}
.form__row { display: flex; flex-direction: column; gap: 0.4rem; }
.form__row label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.form--dark .form__row label { color: var(--white); }
.form__row .required { color: var(--gold); }
.form__row .optional { color: #8a9aa1; font-weight: 400; }

.form__row input[type="text"],
.form__row input[type="email"],
.form__row input[type="tel"],
.form__row input[type="number"],
.form__row select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.3;
  height: 2.9rem;
  padding: 0 0.85rem;
  border: 1px solid #D5DCE0;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
}
.form__row select {
  padding-right: 2.1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 7l5 5 5-5' stroke='%230B3142' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 13px;
}
.form__row input:focus,
.form__row select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.15);
}
.form__row input:invalid[data-touched="true"] { border-color: #c0392b; }

.phone-group { display: flex; }
.phone-group select {
  flex: 0 0 auto;
  width: 6.5rem;
  border-radius: 8px 0 0 8px;
  border-right: 1px solid #D5DCE0;
  padding-left: 0.65rem;
  padding-right: 1.7rem;
  background-position: right 0.5rem center;
  background-size: 12px;
  font-size: 0.9rem;
}
.phone-group input {
  flex: 1 1 auto;
  min-width: 0;
  border-radius: 0 8px 8px 0;
  border-left: none;
}
.phone-group select:focus { position: relative; z-index: 1; border-radius: 8px; }

.form__row--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}
.form__row--checkbox input { margin-top: 0.2rem; }
.form__row--checkbox label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--body-grey);
}
.form--dark .form__row--checkbox label { color: #C9D6DC; }

.form__status {
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form__status[data-state="success"] { color: var(--teal); }
.form--dark .form__status[data-state="success"] { color: #6FD6C8; }
.form__status[data-state="error"] { color: #c0392b; }

/* ===== Categories ===== */
.categories { padding: 4.5rem 0; }
.categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.category {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.15s ease;
}
.category:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(11, 49, 66, 0.1); }
.category__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(11, 49, 66, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.category__icon { width: 26px; height: 26px; color: var(--navy); }
.category p {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

/* ===== Pro section ===== */
.pro-section { background: var(--navy); padding: 4.5rem 0; }
.pro-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 900px;
}
.pro-section__copy p { color: #C9D6DC; max-width: 50ch; margin: 0 auto; text-align: center; }
.pro-section .section-heading { max-width: 26ch; margin-left: auto; margin-right: auto; }
.pro-section__visual {
  width: 100%;
  max-width: 220px;
  margin: 2rem auto 0;
  display: block;
}

/* ===== Founder note ===== */
.founder-note { padding: 4.5rem 0; background: var(--white); }
.founder-note__inner { max-width: 680px; text-align: center; }
.founder-note__inner p { margin-bottom: 1.25rem; }
.founder-note__visual {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto 1.5rem;
}

/* ===== FAQ ===== */
.faq { background: var(--bg-light); padding: 4.5rem 0; }
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq__item {
  background: var(--white);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.faq__item summary {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
.faq__item p { margin-top: 0.75rem; font-size: 0.95rem; }

/* ===== Footer ===== */
.footer { background: var(--navy); padding: 3rem 0; text-align: center; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.footer__logo { height: 28px; }
.footer__tagline { color: #C9D6DC; font-size: 0.95rem; }
.footer__contact a { color: var(--gold); text-decoration: none; }
.footer__contact a:hover { text-decoration: underline; }
.footer__copyright { color: #7C8F98; font-size: 0.8rem; margin-top: 0.5rem; }

/* ===== Breakpoints ===== */
@media (min-width: 640px) {
  .hero__actions { flex-direction: row; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .categories__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 780px) {
  .navbar__links { display: flex; }
}

@media (min-width: 860px) {
  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); }
  .categories__grid { grid-template-columns: repeat(6, 1fr); }
  .capture__inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .capture__visual { margin-left: 0; max-width: 260px; }
  .pro-section__inner { grid-template-columns: 1fr 1fr; align-items: center; text-align: left; }
  .pro-section__copy p { text-align: left; margin: 0; }
  .pro-section .section-heading { text-align: left; margin-left: 0; }
  .pro-section__visual { margin-left: 0; max-width: 260px; }

  .hero { text-align: left; padding: 4.5rem 0 5.5rem; }
  .hero__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; }
  .hero__copy { align-items: flex-start; text-align: left; max-width: 560px; }
  .hero__actions { align-items: center; }
  .hero__chips { justify-content: flex-start; }
  .hero__art { max-width: 380px; flex-shrink: 0; }
}
