:root {
  --ink: #101c33;
  --text: #17233b;
  --body: #44526e;
  --muted: #5b6b88;
  --label: #8593ad;
  --blue: #1f5fd6;
  --blue-dark: #123a8f;
  --blue-hover: #1a52bd;
  --blue-soft: #e5eefc;
  --page: #f8fafd;
  --surface: #ffffff;
  --field: #fafbfd;
  --line: #e8edf5;
  --hairline: #eef2f8;
  --input: #dde5f0;
  --header: rgba(255, 255, 255, 0.9);
  --hero-start: #eef4fd;
  --hero-end: #f8fafd;
  --header-shadow: rgba(16, 28, 51, 0.08);
  --danger: #a23030;
  --footer: #101c33;
  --footer-muted: #7285a6;
  --footer-soft: #9fb0cd;
  --on-blue: #d6e3fb;
  --on-blue-bright: #e7effc;
  --container: 1180px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f4f7ff;
  --text: #e8eef9;
  --body: #b7c2d8;
  --muted: #98a8c4;
  --label: #8192af;
  --blue: #7caaff;
  --blue-dark: #315fbd;
  --blue-hover: #9bbcff;
  --blue-soft: #182e58;
  --page: #0b1120;
  --surface: #111b2e;
  --field: #0d1627;
  --line: #263550;
  --hairline: #1b2a43;
  --input: #344562;
  --header: rgba(11, 17, 32, 0.9);
  --hero-start: #111c31;
  --hero-end: #0b1120;
  --header-shadow: rgba(0, 0, 0, 0.28);
  --danger: #ff9f9f;
  --footer: #070b14;
  --footer-muted: #8fa0bd;
  --footer-soft: #cad7ec;
  --on-blue: #d7e4ff;
  --on-blue-bright: #f1f5ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 44px;
  height: 38px;
  object-fit: contain;
}

.brand span span,
.footer-brand span {
  color: var(--muted);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--body);
  font-size: 14.5px;
  font-weight: 600;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--input);
  border-radius: 50%;
  background: var(--surface);
  color: var(--body);
  cursor: pointer;
  flex: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 140ms var(--ease-out), box-shadow 160ms ease;
}

.theme-toggle:hover {
  border-color: var(--blue);
  color: var(--ink);
}

.theme-toggle:active {
  transform: scale(0.97);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(31, 95, 214, 0.32);
  outline-offset: 3px;
}

.theme-icon {
  width: 18px;
  height: 18px;
}

[data-theme-icon="sun"] {
  display: none;
}

html[data-theme="dark"] [data-theme-icon="moon"] {
  display: none;
}

html[data-theme="dark"] [data-theme-icon="sun"] {
  display: block;
}

.site-nav a {
  transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}

.site-nav a.active {
  color: var(--blue);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 700;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms var(--ease-out), box-shadow 150ms ease;
}

.button {
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 16px;
}

.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(31, 95, 214, 0.25);
}

.primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(31, 95, 214, 0.28);
}

.primary:active,
.secondary:active,
.store-row a:active,
.site-nav a:active {
  transform: scale(0.97);
}

.secondary {
  background: var(--surface);
  border: 1.5px solid var(--input);
  color: var(--text);
}

.secondary:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  background: linear-gradient(180deg, var(--hero-start) 0%, var(--hero-end) 100%);
}

.hero-center {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 84px;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: -140px;
  left: 50%;
  width: 900px;
  height: 420px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(31, 95, 214, 0.1), transparent 68%);
}

.hero-content {
  position: relative;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.hero-content.left {
  margin: 0;
}

.hero h1,
.section h2,
.story-strip h2,
.cta-section h2,
.brand-panel h2,
.homefold-panel h2,
.legal-content h2 {
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  color: var(--ink);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--blue);
}

.hero p:not(.eyebrow):not(.hero-chip) {
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.hero-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.button-row {
  display: flex;
  gap: 14px;
}

.button-row.centered {
  justify-content: center;
}

.page-hero {
  padding: 88px 120px 64px;
}

.page-hero .hero-content {
  width: min(100%, 940px);
}

.page-hero.centered-text .hero-content {
  text-align: center;
}

.page-hero h1 {
  max-width: 760px;
  margin-left: 0;
  font-size: 50px;
  line-height: 1.15;
}

.page-hero.centered-text h1 {
  margin-right: auto;
  margin-left: auto;
  font-size: 48px;
}

.page-hero p:not(.eyebrow) {
  margin-right: 0;
  margin-left: 0;
}

.page-hero.centered-text p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.story-strip {
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.split-section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 72px 120px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.split-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
}

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

.eyebrow.muted {
  color: var(--label);
  letter-spacing: 0.1em;
}

.eyebrow.on-blue {
  color: #a9c6f7;
}

.prose p {
  margin: 0 0 18px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.75;
}

.prose p:last-child {
  margin-bottom: 0;
}

.section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 72px 56px;
}

.section.compact {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section.no-top {
  padding-top: 0;
}

.centered-text {
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 44px;
  font-size: 34px;
  font-weight: 800;
}

.capability-grid,
.trust-grid,
.values-grid {
  display: grid;
  gap: 24px;
}

.capability-grid,
.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.capability-card {
  padding: 32px;
}

.icon-chip {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--blue-soft);
}

.icon-chip span {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--blue);
}

.icon-square {
  border-radius: 6px;
}

.icon-circle {
  border-radius: 50%;
}

.icon-diamond {
  border-radius: 4px;
  transform: rotate(45deg);
}

.capability-card h3,
.value-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
}

.capability-card p,
.value-card span {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.homefold-panel,
.brand-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: #fff;
}

.homefold-panel {
  padding: 64px;
  display: flex;
  align-items: center;
  gap: 56px;
}

.panel-glow {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
}

.homefold-copy,
.phone-placeholder,
.brand-panel-copy,
.org-diagram {
  position: relative;
}

.homefold-copy {
  flex: 1;
}

.homefold-panel h2,
.brand-panel h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 38px;
  font-weight: 800;
}

.homefold-copy > p:not(.eyebrow),
.brand-panel-copy > p {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--on-blue);
  font-size: 17px;
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--on-blue-bright);
  font-size: 15px;
}

.check-list span {
  display: grid;
  flex: none;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
}

.store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-row a {
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
}

.store-row a:first-child {
  background: #fff;
  color: var(--blue-dark);
}

.store-row a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.phone-placeholder {
  flex: none;
  display: grid;
  place-items: center;
  width: 250px;
  height: 360px;
  border: 1.5px dashed rgba(255, 255, 255, 0.4);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0 12px, rgba(255, 255, 255, 0.04) 12px 24px);
}

.phone-placeholder span {
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
  color: #cfdffb;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
}

.trust-strip {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 56px 72px;
}

.trust-card {
  padding: 28px;
  text-align: center;
}

.trust-card p {
  margin: 0 0 6px;
  color: var(--label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-card strong {
  color: var(--ink);
  font-size: 16px;
}

.cta-section {
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
}

.cta-section h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-section p {
  max-width: 520px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.value-card {
  padding: 30px;
}

.value-card p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.brand-panel {
  padding: 56px 64px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.brand-panel-copy {
  flex: 1;
}

.brand-panel a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.org-diagram {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.org-diagram > div:first-child {
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 15px;
  font-weight: 700;
}

.org-diagram > span {
  width: 1.5px;
  height: 22px;
  background: rgba(255, 255, 255, 0.4);
}

.org-row {
  display: flex;
  gap: 12px;
}

.org-row strong,
.org-row em {
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-style: normal;
}

.org-row strong {
  background: #fff;
  color: var(--blue-dark);
  font-weight: 800;
}

.org-row em {
  border: 1.5px dashed rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #cfdffb;
  font-weight: 700;
}

.contact-layout {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 48px 120px 80px;
  display: grid;
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.email-card,
.side-card {
  border-radius: 24px;
  padding: 34px;
}

.email-card {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: #fff;
}

.email-copy-button {
  display: block;
  margin: 0 0 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  text-align: left;
}

.email-copy-button:hover,
.email-copy-button:focus-visible {
  color: #dbeafe;
}

.email-copy-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.email-copy-button[data-copy-state="copied"] {
  color: #dbeafe;
}

.email-card span,
.side-card span {
  display: block;
  color: var(--on-blue);
  font-size: 14px;
  line-height: 1.6;
}

.side-card span {
  color: var(--body);
}

.side-card strong {
  display: block;
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 15px;
}

.side-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.legal-hero {
  padding-bottom: 56px;
}

.legal-content {
  width: min(100% - 48px, 780px);
  margin: 0 auto;
  padding: 56px 0 80px;
}

.legal-content h2 {
  margin: 32px 0 10px;
  font-size: 24px;
  font-weight: 800;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 56px;
  background: var(--footer);
  color: #fff;
}

.footer-brand {
  color: #fff;
  font-size: 17px;
}

.site-footer p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}

.site-footer a:not(.footer-brand) {
  color: var(--footer-muted);
}

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

@media (max-width: 920px) {
  .header-inner {
    padding: 14px 24px;
  }

  .menu-toggle {
    display: block;
  }

  .brand img {
    width: 34px;
    height: 30px;
  }

  .brand {
    font-size: 16px;
  }

  .site-nav {
    position: fixed;
    top: 59px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--header);
    box-shadow: 0 20px 40px var(--header-shadow);
  }

  body.menu-open .site-nav {
    display: grid;
    gap: 16px;
  }

  .theme-toggle {
    justify-self: start;
  }

  .hero-center {
    padding: 56px 24px 48px;
  }

  .hero h1 {
    max-width: 390px;
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -0.025em;
  }

  .hero p:not(.eyebrow):not(.hero-chip) {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .hero-chip {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .button-row,
  .store-row {
    flex-direction: column;
  }

  .button,
  .store-row a {
    width: 100%;
  }

  .page-hero {
    padding: 56px 24px 48px;
  }

  .page-hero h1,
  .page-hero.centered-text h1 {
    font-size: 34px;
  }

  .split-section {
    padding: 48px 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .split-section h2,
  .section-heading h2 {
    font-size: 24px;
  }

  .prose p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .section {
    padding: 48px 24px;
  }

  .capability-grid,
  .trust-grid,
  .values-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .capability-grid {
    gap: 14px;
  }

  .capability-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 18px;
  }

  .icon-chip {
    flex: none;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 13px;
  }

  .capability-card h3 {
    font-size: 17px;
  }

  .capability-card p {
    font-size: 14px;
  }

  .homefold-panel {
    margin: 4px -8px 0;
    padding: 36px 24px;
    display: block;
    border-radius: 24px;
  }

  .homefold-panel h2 {
    font-size: 28px;
  }

  .homefold-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .phone-placeholder {
    width: 100%;
    height: 220px;
    margin: 26px 0;
    border-radius: 18px 18px 0 0;
  }

  .trust-strip {
    padding: 0 16px 48px;
  }

  .trust-grid {
    gap: 12px;
  }

  .trust-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    text-align: left;
    border-radius: 16px;
  }

  .trust-card p {
    margin: 0;
    font-size: 12px;
  }

  .trust-card strong {
    font-size: 14.5px;
    text-align: right;
  }

  .cta-section {
    padding: 52px 24px;
  }

  .cta-section h2 {
    font-size: 26px;
  }

  .cta-section p {
    font-size: 15px;
  }

  .values-grid {
    gap: 14px;
  }

  .brand-panel {
    padding: 36px 24px;
    display: grid;
    gap: 28px;
    border-radius: 24px;
  }

  .brand-panel h2 {
    font-size: 28px;
  }

  .org-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-layout {
    padding: 32px 24px 56px;
  }

  .site-footer {
    display: block;
    padding: 28px 24px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
    margin-bottom: 8px;
    font-size: 15px;
  }

  .site-footer p {
    text-align: center;
    font-size: 12px;
  }
}
