@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #060c22;
  --navy-2: #0b1430;
  --navy-3: #111d3d;
  --gold: #c7a212;
  --gold-light: #e3c958;
  --gold-pale: #f3e8ae;
  --ink: #10162a;
  --muted: #677083;
  --paper: #f7f7f5;
  --white: #fff;
  --line: #e3e5e9;
  --success: #18794e;
  --danger: #a52b2b;
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
  --shadow: 0 26px 70px rgba(6, 12, 34, .12);
  --shadow-soft: 0 14px 38px rgba(6, 12, 34, .08);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  line-height: 1.85;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  line-height: 1.35;
}

p {
  color: var(--muted);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset: 10px auto auto 10px;
  padding: 9px 14px;
  color: var(--navy);
  border-radius: 8px;
  background: var(--gold-light);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.top-note {
  position: relative;
  z-index: 120;
  color: rgba(255, 255, 255, .76);
  background: #020511;
  border-bottom: 1px solid rgba(199, 162, 18, .17);
  font-size: 12px;
}

.top-note__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-note a {
  color: var(--gold-light);
  font-weight: 700;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-inline-end: 8px;
  border-radius: 50%;
  background: #57d39b;
  box-shadow: 0 0 0 5px rgba(87, 211, 155, .1);
}

.site-header {
  position: sticky;
  z-index: 100;
  inset-block-start: 0;
  height: 86px;
  color: var(--white);
  background: rgba(6, 12, 34, .95);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(2, 5, 17, .98);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 118px;
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 9px 18px rgba(0, 0, 0, .28));
}

.main-nav {
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  position: relative;
  padding-block: 29px;
  color: rgba(255, 255, 255, .69);
  font-size: 13px;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  inset: auto 0 22px;
  border-radius: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 11px;
  background: transparent;
}

.nav-toggle i {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  min-height: 48px;
  padding: 11px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1.4;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(199, 162, 18, .48);
  outline-offset: 3px;
}

.button--gold {
  color: #161100;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 13px 30px rgba(199, 162, 18, .19);
}

.button--gold:hover {
  box-shadow: 0 18px 35px rgba(199, 162, 18, .3);
}

.button--navy {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 13px 30px rgba(6, 12, 34, .18);
}

.button--outline {
  color: var(--navy);
  border-color: rgba(6, 12, 34, .2);
  background: transparent;
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .04);
}

.button--large {
  min-height: 56px;
  padding: 14px 29px;
}

.button--block {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow--dark {
  color: #8c7100;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 162, 18, .17), transparent 24%),
    radial-gradient(circle at 15% 70%, rgba(35, 61, 137, .24), transparent 30%),
    linear-gradient(135deg, #020511, var(--navy) 52%, #0a1537);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(199, 162, 18, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 162, 18, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero__grid {
  position: relative;
  min-height: 760px;
  padding-block: 80px 95px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.2vw, 70px);
  letter-spacing: -.045em;
}

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

.hero__lead {
  max-width: 620px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, .67);
  font-size: 17px;
  line-height: 2;
}

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

.hero__facts {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__facts span {
  padding: 9px 13px;
  color: rgba(255, 255, 255, .64);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  font-size: 11px;
}

.hero__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero__visual::before {
  width: 500px;
  height: 500px;
  border: 1px solid rgba(199, 162, 18, .18);
}

.hero__visual::after {
  width: 400px;
  height: 400px;
  border: 1px dashed rgba(255, 255, 255, .11);
}

.hero__logo {
  position: relative;
  z-index: 2;
  width: min(470px, 92%);
  filter: drop-shadow(0 36px 50px rgba(0, 0, 0, .48));
}

.orbit-tag {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  border: 1px solid rgba(199, 162, 18, .25);
  border-radius: 12px;
  background: rgba(5, 10, 28, .87);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .25);
  backdrop-filter: blur(10px);
  font-size: 11px;
}

.orbit-tag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(199, 162, 18, .1);
}

.orbit-tag--one { inset: 15% auto auto 0; }
.orbit-tag--two { inset: auto 2% 13% auto; }
.orbit-tag--three { inset: auto auto 7% 10%; }

.trust-strip {
  color: var(--white);
  background: #020511;
  border-block: 1px solid rgba(199, 162, 18, .16);
}

.trust-strip__grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding-inline: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-inline-start: 1px solid rgba(255, 255, 255, .08);
}

.trust-item:first-child {
  border-inline-start: 0;
}

.trust-item b {
  color: var(--gold-light);
  font-size: 13px;
}

.trust-item span {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 14px;
}

.trust-item small {
  color: rgba(255, 255, 255, .43);
  font-size: 10px;
}

.section {
  padding-block: 105px;
}

.section--white {
  background: var(--white);
}

.section--soft {
  background: #f1f2f4;
}

.section--sand {
  background: #f3efe3;
}

.section--navy {
  color: var(--white);
  background:
    radial-gradient(circle at 83% 20%, rgba(38, 65, 146, .29), transparent 25%),
    var(--navy);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.content-block h2,
.page-hero h1,
.cta h2 {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 49px);
  letter-spacing: -.035em;
}

.section-heading p,
.content-block > p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.feature-card {
  min-height: 315px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 162, 18, .5);
  box-shadow: var(--shadow-soft);
}

.feature-card__number {
  margin-bottom: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
  font-size: 12px;
}

.feature-card__number::after {
  content: "";
  width: 46px;
  height: 1px;
  background: rgba(199, 162, 18, .35);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

.feature-card p {
  margin-bottom: 22px;
  font-size: 13px;
}

.text-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #806800;
  font-size: 12px;
  font-weight: 700;
}

.text-link i {
  font-style: normal;
  transition: transform .2s ease;
}

.text-link:hover i {
  transform: translateX(-5px);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 76px;
}

.legal-workflow {
  position: relative;
  display: grid;
  gap: 13px;
}

.workflow-card {
  position: relative;
  padding: 19px 21px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 17px;
  background: rgba(255, 255, 255, .045);
}

.workflow-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border-radius: 50%;
  background: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.workflow-card b,
.workflow-card small {
  display: block;
}

.workflow-card b {
  color: var(--white);
}

.workflow-card small {
  color: rgba(255, 255, 255, .46);
  font-size: 11px;
}

.section--navy h2 {
  color: var(--white);
}

.section--navy p {
  color: rgba(255, 255, 255, .6);
}

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

.check-list li {
  position: relative;
  padding-inline-start: 33px;
  color: #434b5b;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  width: 23px;
  height: 23px;
  inset-block-start: 3px;
  inset-inline-start: 0;
  display: grid;
  place-items: center;
  color: var(--navy);
  border-radius: 50%;
  background: var(--gold);
  font-size: 10px;
  font-weight: 700;
}

.mock-app {
  overflow: hidden;
  border: 1px solid #d9dce2;
  border-radius: 25px;
  background: #f7f8fa;
  box-shadow: var(--shadow);
}

.mock-app__bar {
  height: 52px;
  padding-inline: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .7);
  background: var(--navy);
  font-size: 11px;
}

.mock-app__dots {
  display: flex;
  gap: 6px;
}

.mock-app__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
}

.mock-app__body {
  min-height: 475px;
  display: grid;
  grid-template-columns: 145px 1fr;
}

.mock-app__nav {
  padding: 22px 13px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgba(255, 255, 255, .5);
  background: #09102a;
  font-size: 10px;
}

.mock-app__nav img {
  width: 85px;
  margin: 0 auto 16px;
}

.mock-app__nav span {
  padding: 9px;
  border-radius: 8px;
}

.mock-app__nav .selected {
  color: var(--gold-light);
  background: rgba(199, 162, 18, .11);
}

.mock-app__content {
  padding: 28px;
}

.mock-app__title {
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-app__title h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
}

.mock-app__title span {
  padding: 7px 11px;
  color: #715b00;
  border-radius: 8px;
  background: #f8f0ca;
  font-size: 9px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-grid article,
.mock-table {
  border: 1px solid #e4e6eb;
  border-radius: 13px;
  background: var(--white);
}

.stat-grid article {
  min-height: 95px;
  padding: 15px;
}

.stat-grid small,
.stat-grid b {
  display: block;
}

.stat-grid small {
  color: #8e94a1;
  font-size: 8px;
}

.stat-grid b {
  color: var(--navy);
  font-size: 21px;
}

.mock-table {
  margin-top: 13px;
  overflow: hidden;
}

.mock-table div {
  min-height: 54px;
  padding-inline: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eceef2;
  color: #555d6c;
  font-size: 9px;
}

.mock-table div:first-child {
  border-top: 0;
  color: var(--navy);
  background: #fafafa;
  font-weight: 700;
}

.mock-table em {
  padding: 4px 8px;
  border-radius: 6px;
  background: #f1f2f5;
  font-style: normal;
  font-size: 8px;
}

.cta-wrap {
  padding-block: 72px;
}

.cta {
  position: relative;
  padding: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(199, 162, 18, .27);
  border-radius: 29px;
  background:
    radial-gradient(circle at 8% 50%, rgba(199, 162, 18, .12), transparent 21%),
    linear-gradient(125deg, #030718, #0c1738);
  box-shadow: var(--shadow);
}

.cta::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  inset: -240px -120px auto auto;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.cta h2 {
  color: var(--white);
}

.cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .56);
}

.cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 11px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.faq summary {
  position: relative;
  padding: 20px 22px;
  padding-inline-end: 58px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  width: 29px;
  height: 29px;
  inset-block-start: 17px;
  inset-inline-end: 18px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(199, 162, 18, .25);
  border-radius: 50%;
}

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

.faq p {
  margin: 0;
  padding: 0 22px 22px;
}

.page-hero {
  position: relative;
  padding-block: 100px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 30%, rgba(199, 162, 18, .15), transparent 25%),
    radial-gradient(circle at 12% 80%, rgba(39, 66, 146, .25), transparent 25%),
    var(--navy);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  inset: -300px auto auto -180px;
  border: 1px solid rgba(199, 162, 18, .15);
  border-radius: 50%;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 64px);
}

.page-hero p {
  max-width: 750px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 17px;
}

.page-hero--center .page-hero__content {
  margin-inline: auto;
  text-align: center;
}

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

.numbered-item {
  padding: 21px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
}

.numbered-item > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border-radius: 14px;
  background: var(--gold-pale);
  font-weight: 700;
}

.numbered-item h3 {
  margin-bottom: 4px;
  color: var(--navy);
}

.numbered-item p {
  margin-bottom: 0;
  font-size: 13px;
}

.download-box {
  padding: 38px;
  color: var(--white);
  border: 1px solid rgba(199, 162, 18, .3);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 10%, rgba(199, 162, 18, .12), transparent 25%),
    var(--navy);
  box-shadow: var(--shadow);
}

.download-box h2 {
  color: var(--white);
  font-size: 37px;
}

.download-box p {
  color: rgba(255, 255, 255, .58);
}

.download-meta {
  margin-block: 24px;
  display: grid;
  gap: 8px;
}

.download-meta div {
  padding: 11px 14px;
  display: flex;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  font-size: 12px;
}

.download-meta span:last-child {
  color: var(--gold-light);
  direction: ltr;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 70px;
}

.contact-info {
  position: sticky;
  inset-block-start: 120px;
}

.contact-methods {
  margin-top: 30px;
  display: grid;
  gap: 10px;
}

.contact-method {
  padding: 17px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.contact-method span {
  color: var(--muted);
  font-size: 10px;
}

.contact-method a {
  color: #735d00;
  direction: ltr;
  font-weight: 700;
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid #d6d9e0;
  border-radius: 11px;
  background: #fbfbfc;
}

.field input,
.field select {
  height: 50px;
  padding-inline: 14px;
}

.field textarea {
  min-height: 155px;
  padding: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 162, 18, .1);
}

.field-error {
  min-height: 17px;
  color: var(--danger);
  font-size: 10px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #555d6c;
  font-size: 12px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  accent-color: var(--gold);
}

.form-status {
  display: none;
  margin-bottom: 20px;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 12px;
}

.form-status.show {
  display: block;
}

.form-status.success {
  color: #0f5f3c;
  border: 1px solid #b7dfca;
  background: #effaf4;
}

.form-status.error {
  color: #842424;
  border: 1px solid #edc1c1;
  background: #fff4f4;
}

.form-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 10px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: start;
  gap: 65px;
}

.legal-nav {
  position: sticky;
  inset-block-start: 120px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.legal-nav b {
  color: var(--navy);
}

.legal-nav a {
  color: var(--muted);
  font-size: 12px;
}

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

.legal-content section {
  margin-bottom: 43px;
}

.legal-content h2 {
  color: var(--navy);
  font-size: 24px;
}

.legal-content p {
  line-height: 2.1;
}

.site-footer {
  padding-block: 74px 24px;
  color: rgba(255, 255, 255, .57);
  background: #020511;
  border-top: 1px solid rgba(199, 162, 18, .16);
}

.footer__grid {
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}

.footer__brand img {
  width: 205px;
  margin-bottom: 17px;
}

.footer__brand p,
.footer__col p {
  color: rgba(255, 255, 255, .43);
  font-size: 12px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer__col h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 14px;
}

.footer__col a {
  color: rgba(255, 255, 255, .54);
  font-size: 12px;
}

.footer__col a:hover {
  color: var(--gold-light);
}

.footer__bottom {
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 10px;
}

.footer__bottom div {
  display: flex;
  gap: 17px;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  width: 44px;
  height: 44px;
  inset: auto 20px 20px auto;
  color: var(--navy);
  border: 0;
  border-radius: 12px;
  background: var(--gold);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .header__cta {
    display: none;
  }

  .hero__grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__facts {
    justify-content: center;
  }

  .hero__visual {
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .cta__actions {
    flex-direction: row;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer__col:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .site-header {
    height: 76px;
  }

  .header__inner {
    justify-content: space-between;
  }

  .brand {
    width: 96px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.open i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open i:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    inset: 100% 0 auto;
    max-height: calc(100vh - 76px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(2, 5, 17, .99);
    border-top: 1px solid rgba(255, 255, 255, .08);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    padding: 14px 7px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .main-nav a::after {
    display: none;
  }

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

  .trust-item {
    min-height: 92px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .section {
    padding-block: 78px;
  }

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

  .contact-info,
  .legal-nav {
    position: static;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

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

  .top-note__inner {
    justify-content: center;
  }

  .top-note__inner > span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    min-height: auto;
    padding-block: 62px 85px;
    gap: 35px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero__visual::before {
    width: 340px;
    height: 340px;
  }

  .hero__visual::after {
    width: 275px;
    height: 275px;
  }

  .hero__logo {
    width: 330px;
  }

  .orbit-tag--one {
    inset-inline-start: 0;
  }

  .orbit-tag--two {
    inset-inline-end: 0;
  }

  .orbit-tag--three {
    display: none;
  }

  .trust-strip__grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-inline-start: 0;
  }

  .section {
    padding-block: 62px;
  }

  .section-heading h2,
  .content-block h2,
  .page-hero h1,
  .cta h2 {
    font-size: 31px;
  }

  .mock-app__body {
    grid-template-columns: 76px 1fr;
  }

  .mock-app__nav {
    padding: 15px 6px;
    font-size: 7px;
  }

  .mock-app__nav img {
    width: 55px;
  }

  .mock-app__content {
    padding: 17px 11px;
  }

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

  .stat-grid article:last-child {
    display: none;
  }

  .cta {
    padding: 32px 24px;
    text-align: center;
  }

  .cta__actions {
    flex-direction: column;
  }

  .page-hero {
    padding-block: 75px;
  }

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

  .field--full {
    grid-column: auto;
  }

  .contact-form,
  .download-box {
    padding: 24px 18px;
  }

  .legal-nav {
    display: none;
  }

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

  .footer__brand,
  .footer__col:last-child {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
  }
}
