:root {
  color-scheme: light;
  --bg: #eef4fb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-alt: #e7f0fb;
  --text: #0c1930;
  --muted: #60758d;
  --border: rgba(147, 176, 204, 0.34);
  --green: #13c86a;
  --green-dark: #0d8b4b;
  --blue: #1690e8;
  --blue-deep: #0f2946;
  --ink: #081321;
  --shadow: 0 30px 80px rgba(11, 27, 46, 0.12);
  --shadow-soft: 0 16px 40px rgba(11, 27, 46, 0.08);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(22, 144, 232, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(19, 200, 106, 0.14), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg) 100%);
  color: var(--text);
}

h1,
h2,
h3,
.brand-name {
  font-family: "Poppins", "Segoe UI", sans-serif;
}

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

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(247, 251, 255, 0.76);
  border-bottom: 1px solid rgba(160, 184, 208, 0.32);
}

.header-inner,
.section,
.legal-shell,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

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

.brand img {
  width: 54px;
  height: 54px;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
}

.brand-tag {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: 0.2s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.site-nav a.cta {
  background: linear-gradient(135deg, var(--green) 0%, #20da7c 100%);
  color: white;
  box-shadow: var(--shadow-soft);
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-card,
.feature-card,
.legal-card,
.support-card,
.story-card,
.workflow-panel,
.legal-hero,
.legal-section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-copy {
  padding: 34px;
  display: grid;
  gap: 20px;
}

.eyebrow,
.section-kicker,
.story-kicker,
.metric-label,
.note-label,
.legal-meta,
.support-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: 50px;
  line-height: 1.02;
  font-weight: 800;
}

.hero-subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  padding: 14px 20px;
  font-weight: 800;
  border: 1px solid var(--border);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, #22dc7d 100%);
  color: white;
  border-color: transparent;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.hero-proof {
  display: grid;
  gap: 12px;
}

.proof-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(147, 176, 204, 0.26);
  font-weight: 700;
}

.proof-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  font-size: 12px;
}

.hero-visual {
  position: relative;
}

.hero-image-stack {
  position: relative;
  min-height: 640px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.photo-card-large {
  inset: 0 72px 120px 0;
}

.photo-card-small {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 250px;
}

.photo-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(7, 19, 33, 0) 0%, rgba(7, 19, 33, 0.85) 72%);
  color: white;
}

.photo-overlay h3 {
  margin: 10px 0 8px;
  font-size: 26px;
  line-height: 1.08;
}

.photo-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  font-size: 14px;
}

.overlay-pill,
.support-note-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-note-pill {
  background: rgba(22, 144, 232, 0.1);
  color: var(--blue);
}

.floating-note {
  position: absolute;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(147, 176, 204, 0.3);
  box-shadow: var(--shadow-soft);
}

.floating-note-top {
  right: 24px;
  top: 32px;
}

.floating-note-bottom {
  left: 18px;
  bottom: 26px;
}

.note-value {
  margin-top: 8px;
  font-weight: 800;
  line-height: 1.4;
}

.section {
  padding: 62px 0;
}

.story-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.story-card {
  padding: 28px;
}

.story-card h3 {
  margin: 12px 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.accent-green {
  background: linear-gradient(180deg, rgba(19, 200, 106, 0.12), rgba(255, 255, 255, 0.9));
}

.accent-blue {
  background: linear-gradient(180deg, rgba(22, 144, 232, 0.12), rgba(255, 255, 255, 0.9));
}

.accent-dark {
  background: linear-gradient(180deg, rgba(15, 41, 70, 0.08), rgba(255, 255, 255, 0.92));
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.split-head {
  grid-template-columns: 1fr minmax(280px, 420px);
  align-items: end;
  gap: 24px;
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  font-weight: 800;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
  max-width: 72ch;
}

.feature-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-grid-rich {
  align-items: stretch;
}

.feature-card,
.legal-card,
.support-card {
  padding: 28px;
  display: grid;
  gap: 12px;
}

.feature-card-highlight {
  background: linear-gradient(180deg, rgba(22, 144, 232, 0.08), rgba(255, 255, 255, 0.95));
}

.feature-icon,
.legal-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(22, 144, 232, 0.1);
  border: 1px solid rgba(147, 176, 204, 0.28);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.22;
}

.card-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 14px;
}

.card-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  display: grid;
  gap: 8px;
}

.card-list li {
  color: var(--muted);
  line-height: 1.55;
}

.legal-card a {
  color: var(--green-dark);
  font-weight: 800;
}

.workflow-section {
  padding-top: 70px;
}

.workflow-panel {
  padding: 30px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.workflow-steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(147, 176, 204, 0.24);
}

.workflow-step span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  color: white;
  font-weight: 800;
}

.workflow-step h3 {
  margin: 2px 0 6px;
  font-size: 18px;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.workflow-visual {
  position: relative;
  min-height: 100%;
}

.workflow-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 26px;
}

.workflow-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(147, 176, 204, 0.3);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.support-shell {
  display: grid;
  gap: 24px;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
}

.support-grid-modern {
  align-items: stretch;
}

.support-list,
.support-note-grid {
  display: grid;
  gap: 12px;
}

.support-item {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(147, 176, 204, 0.26);
  border-radius: 18px;
  padding: 14px 16px;
}

.support-value {
  margin-top: 6px;
  font-weight: 800;
}

.support-card-note {
  align-content: start;
  gap: 18px;
  background: linear-gradient(180deg, rgba(22, 144, 232, 0.08), rgba(255, 255, 255, 0.96));
}

.site-footer {
  padding: 44px 0 56px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-shell {
  padding: 44px 0 72px;
}

.legal-hero {
  padding: 30px;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.legal-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.06;
  font-weight: 800;
}

.legal-intro,
.legal-paragraph,
.legal-bullet {
  color: var(--muted);
  line-height: 1.82;
  font-size: 15px;
}

.legal-stack {
  display: grid;
  gap: 18px;
}

.legal-section-card {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.legal-heading {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
}

.legal-list {
  display: grid;
  gap: 10px;
}

.legal-bullet-row {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: start;
}

.legal-bullet-dot {
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--green);
}

@media (max-width: 1024px) {
  .hero-grid,
  .workflow-panel,
  .split-head,
  .story-band,
  .feature-grid,
  .legal-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
  margin: 0;
  font-size: 50px;
  line-height: 1.02;
  font-weight: 800;
}

  .hero-image-stack {
    min-height: 560px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-inner,
  .section,
  .legal-shell,
  .footer-inner {
    width: min(1180px, calc(100% - 28px));
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .section,
  .workflow-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-copy,
  .workflow-panel,
  .feature-card,
  .legal-card,
  .support-card,
  .story-card,
  .legal-hero,
  .legal-section-card {
    padding: 22px;
  }

  .hero-title {
  margin: 0;
  font-size: 50px;
  line-height: 1.02;
  font-weight: 800;
}

  .hero-image-stack {
    min-height: 440px;
  }

  .photo-card-large {
    inset: 0 28px 94px 0;
  }

  .photo-card-small {
    width: 46%;
    height: 168px;
  }

  .floating-note {
    max-width: 180px;
    padding: 12px 14px;
  }

  .photo-overlay h3,
  .story-card h3 {
    font-size: 22px;
  }

  .workflow-visual img {
    min-height: 320px;
  }
}



