:root {
  --bg: #f5f5ef;
  --bg-soft: #fbfbf7;
  --ink: #111217;
  --muted: #60636f;
  --line: rgba(17, 18, 23, 0.1);
  --card: #ffffff;
  --blue: #2437ff;
  --blue-dark: #111ec2;
  --navy: #111a3d;
  --cream: #f0f0e8;
  --shadow: 0 24px 80px rgba(17, 18, 23, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus {
  top: 20px;
}

.topbar {
  background: #101010;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(245, 245, 239, 0.74);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 14px 48px rgba(17, 18, 23, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px 10px 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 36px;
  height: 36px;
}

.brand-name {
  font-size: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(17, 18, 23, 0.72);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(36, 55, 255, 0.08);
}

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding-inline: 18px !important;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.muted {
  background: var(--cream);
}

.hero-section {
  padding: 34px 0 78px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.8), transparent 34%),
    linear-gradient(135deg, #ecece6 0%, #f7f7f1 54%, #e9ebe6 100%);
}

.hero-grid {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: end;
}

.glass-panel {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.glass-panel.dark {
  min-height: 560px;
  padding: clamp(34px, 6vw, 72px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(90deg, rgba(9, 10, 18, 0.84), rgba(9, 10, 18, 0.28)),
    url("images/hero-placeholder.svg") center/cover no-repeat,
    linear-gradient(135deg, #171a25, #3b445f);
}

.glass-panel.light,
.hero-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.94);
}

.hero-card {
  margin-bottom: -30px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.055em;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(48px, 7.2vw, 92px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: 24px;
}

.accent-script {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}

.button-row.left {
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 34px rgba(36, 55, 255, 0.25);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-block {
  width: 100%;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.hero-points span,
.pill-tabs span {
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.icon-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.icon-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.icon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

.stats-band {
  padding: 0 0 84px;
  margin-top: -18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card,
.service-card,
.process-card,
.faq-side-card,
.faq-list details,
.cta-form {
  background: var(--card);
  border: 1px solid rgba(17, 18, 23, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 50px rgba(17, 18, 23, 0.05);
}

.stat-card {
  padding: 26px;
}

.stat-card strong {
  display: block;
  font-size: 26px;
  letter-spacing: -0.06em;
}

.stat-card span,
.service-card p,
.process-card p,
.faq-side-card p,
.hero-card p,
.split-grid p,
.cta-copy p,
.small-note {
  color: var(--muted);
}

.split-grid,
.page-hero-grid,
.faq-grid,
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 62px;
  align-items: center;
}

.split-grid.alt {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
  min-height: 420px;
  display: grid;
  place-items: center;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card {
  background: linear-gradient(135deg, #fff, #e9ebff);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.split-head {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
}

.cards-3,
.process-grid {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.process-card {
  padding: 30px;
}

.service-index,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: rgba(36, 55, 255, 0.08);
  color: var(--blue);
  font-weight: 900;
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.spotlight-card {
  min-height: 460px;
  align-items: end;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(17, 18, 23, 0.1), rgba(17, 18, 23, 0.65)),
    url("images/trust-placeholder.svg") center/cover no-repeat,
    #dfe2e6;
}

.spotlight-text {
  width: 100%;
  color: #fff;
}

.spotlight-text p {
  color: #fff;
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.pill-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.pill-tabs span {
  background: #fff;
  color: var(--muted);
  border: 1px solid var(--line);
}

.pill-tabs .active {
  color: var(--blue);
  border-color: rgba(36, 55, 255, 0.2);
}

.faq-grid {
  align-items: start;
}

.faq-side-card {
  padding: 28px;
  margin-top: 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  color: var(--muted);
  margin: 14px 0 0;
}

.cta-section {
  background: var(--bg);
}

.cta-panel {
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.cta-panel .section-kicker,
.cta-panel p,
.cta-panel .icon-list li {
  color: rgba(255, 255, 255, 0.84);
}

.cta-panel .icon-list li::before {
  color: #fff;
}

.cta-form {
  padding: 28px;
  color: var(--ink);
}

.cta-form form {
  display: grid;
  gap: 12px;
}

.cta-form label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7f7f3;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(36, 55, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(36, 55, 255, 0.1);
}

.small-note {
  font-size: 13px;
  margin: 12px 0 0;
}

.site-footer {
  background: #e8e8e1;
  padding: 66px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-top ul {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 14px;
}

.page-hero {
  padding: 88px 0;
}

.content-narrow {
  max-width: 840px;
}

.content-narrow p {
  font-size: 19px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .topbar-inner {
    justify-content: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-shell {
    border-radius: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .hero-grid,
  .split-grid,
  .split-grid.alt,
  .page-hero-grid,
  .faq-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-bottom: 0;
  }

  .stats-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3,
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar span {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .hero-section {
    padding-top: 18px;
  }

  .glass-panel.dark {
    min-height: 520px;
    padding: 28px;
  }

  .hero-points,
  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .split-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }
  .footer-copy {
  width: 100%;
  font-family: "Comfortaa", cursive;
  font-size: 13px;
  color: var(--muted);
}
}
