@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-600.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-700.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --navy: #021d3c;
  --navy-soft: #0b3157;
  --teal: #008b97;
  --teal-dark: #006b75;
  --cyan: #22bdd0;
  --green: #2f7d5a;
  --green-dark: #1d6345;
  --ink: #17232b;
  --muted: #5b6970;
  --line: #dce5e6;
  --line-strong: #c4d1d3;
  --surface: #ffffff;
  --surface-soft: #f3f8f8;
  --surface-green: #eff6f2;
  --shadow: 0 14px 36px rgba(2, 29, 60, 0.07);
  --container: 1240px;
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

a {
  color: var(--teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

main :focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 690px;
  font-size: 54px;
  line-height: 1.08;
}

h2 {
  font-size: 36px;
  line-height: 1.16;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
}

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

.eyebrow {
  margin-bottom: 13px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  background: var(--navy);
  color: #fff;
}

.button--primary {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.button--primary:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-hero {
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.trust-hero__inner {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  align-items: center;
  gap: 76px;
  padding-block: 62px;
}

.trust-hero__lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: #354a54;
  font-size: 18px;
  line-height: 1.65;
}

.trust-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-hero__panel {
  min-width: 0;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 18px 45px rgba(2, 29, 60, 0.15);
}

.trust-hero__panel-kicker {
  margin-bottom: 8px;
  color: #7ed8df;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.trust-hero__panel h2 {
  color: #fff;
  font-size: 25px;
}

.trust-hero__panel > p:last-of-type {
  margin: 12px 0 0;
  color: #d5e0e8;
  font-size: 14px;
}

.status-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.status-list li {
  min-height: 58px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.status-list svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #7ed8df;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.fact-strip__item {
  min-width: 0;
  min-height: 106px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 23px;
  border-left: 1px solid var(--line);
}

.fact-strip__item:first-child {
  border-left: 0;
}

.fact-strip__item svg {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact-strip__item strong,
.fact-strip__item span {
  display: block;
}

.fact-strip__item strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
}

.fact-strip__item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.page-section {
  padding-block: 72px;
}

.page-section--soft {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: 60px;
}

.section-heading > p:last-child,
.section-heading--split > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.section-heading--split > p {
  margin-top: 0;
}

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

.method-card,
.principle-card,
.legal-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.method-card {
  min-height: 285px;
  padding: 26px;
}

.method-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.method-card__number {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.method-card__icon,
.principle-card__icon,
.legal-card__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-green);
  color: var(--green);
}

.method-card__icon svg,
.principle-card__icon svg,
.legal-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-card h3 {
  margin-top: 24px;
}

.method-card p,
.principle-card p,
.legal-card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.finance-band {
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.finance-band__inner {
  padding-block: 68px;
}

.finance-band .eyebrow {
  color: #7ed8df;
}

.finance-band h2 {
  color: #fff;
}

.finance-band__intro {
  max-width: 720px;
  margin: 15px 0 0;
  color: #d5e0e8;
  font-size: 16px;
}

.finance-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.finance-flow__step {
  position: relative;
  min-height: 170px;
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.045);
}

.finance-flow__step + .finance-flow__step {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.finance-flow__step span {
  color: #7ed8df;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.finance-flow__step strong {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-size: 18px;
}

.finance-flow__step p {
  margin: 8px 0 0;
  color: #d5e0e8;
  font-size: 13px;
  line-height: 1.55;
}

.principle-card {
  min-height: 235px;
  padding: 25px;
}

.principle-card h3,
.legal-card h3 {
  margin-top: 20px;
}

.boundary-band {
  background: var(--surface-green);
}

.boundary-band__inner {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding-block: 42px;
}

.boundary-band__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid #b9d4c5;
  border-radius: 50%;
  color: var(--green-dark);
}

.boundary-band__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.boundary-band h2 {
  font-size: 25px;
}

.boundary-band p {
  max-width: 800px;
  margin: 7px 0 0;
  color: #42574b;
  font-size: 14px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 86px;
}

.faq-layout__intro {
  position: sticky;
  top: 130px;
}

.faq-layout__intro > p:last-child {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
}

.faq-item summary {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 22px;
  padding-block: 18px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

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

.faq-item__icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
  background: var(--teal);
  content: "";
  transition: transform 160ms ease;
}

.faq-item__icon::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
  transform: rotate(0deg);
}

.faq-item__answer {
  max-width: 720px;
  padding: 0 50px 24px 0;
  color: var(--muted);
  font-size: 14px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.faq-item[open]:not([data-closing]) .faq-item__answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-item__answer p {
  margin-bottom: 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  align-items: start;
  gap: 64px;
}

.contents-nav {
  position: sticky;
  top: 124px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.contents-nav strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.contents-nav ol {
  display: grid;
  gap: 3px;
  padding: 0;
  margin: 13px 0 0;
  list-style: none;
}

.contents-nav a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 7px 9px;
  border-radius: 4px;
  color: #41545d;
  font-size: 13px;
  text-decoration: none;
}

.contents-nav a:hover {
  background: #fff;
  color: var(--teal-dark);
}

.legal-article {
  max-width: 820px;
}

.legal-section {
  padding-block: 0 38px;
  scroll-margin-top: 122px;
}

.legal-section + .legal-section {
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  font-size: 28px;
}

.legal-section p,
.legal-section li {
  color: #40535c;
  font-size: 15px;
  line-height: 1.75;
}

.legal-section p {
  margin: 15px 0 0;
}

.legal-section ul {
  display: grid;
  gap: 7px;
  padding-left: 20px;
  margin: 16px 0 0;
}

.legal-section address {
  margin-top: 15px;
  color: #40535c;
  font-style: normal;
  line-height: 1.75;
}

.legal-section a {
  font-weight: 600;
}

.legal-note {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
  margin-top: 23px;
  border-left: 3px solid var(--teal);
  background: var(--surface-soft);
}

.legal-note svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-note strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.legal-note p {
  margin: 5px 0 0;
  font-size: 14px;
}

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

.legal-card {
  min-height: 220px;
  padding: 26px;
}

.legal-card--wide {
  grid-column: 1 / -1;
}

.legal-card address {
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.legal-card a {
  overflow-wrap: anywhere;
  font-weight: 600;
}

.contact-band {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.contact-band__inner {
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.contact-band h2 {
  font-size: 25px;
}

.contact-band p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.document-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 21px;
  color: var(--muted);
  font-size: 13px;
}

.document-status span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.document-status svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal-enabled .scroll-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-enabled .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .trust-hero__inner {
    gap: 44px;
  }

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

  .fact-strip__item:nth-child(3) {
    border-left: 0;
  }

  .fact-strip__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .legal-layout {
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .trust-hero__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 54px;
  }

  .trust-hero__panel {
    padding: 29px;
  }

  .method-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .method-card,
  .principle-card {
    min-height: 0;
  }

  .finance-flow {
    grid-template-columns: 1fr;
  }

  .finance-flow__step {
    min-height: 0;
  }

  .finance-flow__step + .finance-flow__step {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 15px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-layout__intro,
  .contents-nav {
    position: static;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contents-nav ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .page-section {
    padding-block: 54px;
  }

  .finance-band__inner {
    padding-block: 54px;
  }

  .boundary-band__inner {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .boundary-band__icon {
    width: 48px;
    height: 48px;
  }

  .boundary-band .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-card--wide {
    grid-column: auto;
  }

  .contact-band__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 30px;
  }
}

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

  h1 {
    font-size: 35px;
    line-height: 1.1;
  }

  h2 {
    font-size: 28px;
  }

  .trust-hero__inner {
    gap: 30px;
    padding-block: 44px;
  }

  .trust-hero__lead {
    margin-top: 17px;
    font-size: 15px;
  }

  .trust-hero__actions {
    display: grid;
    margin-top: 23px;
  }

  .trust-hero__actions .button {
    width: 100%;
  }

  .trust-hero__panel {
    padding: 24px 20px;
  }

  .trust-hero__panel h2 {
    font-size: 22px;
  }

  .fact-strip__grid {
    grid-template-columns: 1fr;
  }

  .fact-strip__item,
  .fact-strip__item:nth-child(3) {
    min-height: 92px;
    padding: 17px 8px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-strip__item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 27px;
  }

  .section-heading > p:last-child,
  .section-heading--split > p {
    font-size: 15px;
  }

  .method-card,
  .principle-card,
  .legal-card {
    padding: 22px 20px;
  }

  .finance-flow__step {
    padding: 23px 20px;
  }

  .boundary-band__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .boundary-band__icon {
    border-radius: 50%;
  }

  .faq-item summary {
    min-height: 70px;
    gap: 15px;
    font-size: 16px;
  }

  .faq-item__answer {
    padding-right: 0;
  }

  .contents-nav {
    padding: 18px;
  }

  .contents-nav ol {
    grid-template-columns: 1fr;
  }

  .legal-section h2 {
    font-size: 25px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 14px;
  }
}

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

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

  .reveal-enabled .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}
