:root {
  --blue: #075bea;
  --blue-dark: #003eb4;
  --red: #e1121b;
  --ink: #050609;
  --text: #172033;
  --muted: #5f6c80;
  --line: #dfe6f2;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(5, 28, 66, 0.12);
  --radius: 8px;
  --page-pad: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 84px;
  padding: 18px var(--page-pad);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(223, 230, 242, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  width: 268px;
  min-width: 220px;
}

.brand img {
  width: 100%;
  height: auto;
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--radius);
  color: #263247;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
  background: #eef5ff;
}

.site-nav .nav-cta {
  gap: 8px;
  color: var(--white);
  background: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-1px);
}

.site-nav svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 156px var(--page-pad) 88px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.96) 42%, rgba(255, 255, 255, 0.74) 74%, rgba(255, 255, 255, 0.88) 100%),
    radial-gradient(circle at 82% 28%, rgba(7, 91, 234, 0.14), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--ink), var(--blue) 45%, var(--red));
}

.hero-bg {
  position: absolute;
  inset: 110px -110px auto auto;
  width: 760px;
  max-width: 58%;
  opacity: 0.17;
  transform: rotate(0deg);
}

.hero-bg img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 36px 80px rgba(7, 91, 234, 0.24));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-copy {
  max-width: 790px;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  color: var(--ink);
  font-family: Rajdhani, Inter, Arial, sans-serif;
  font-size: 76px;
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: Rajdhani, Inter, Arial, sans-serif;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 690px;
  margin-bottom: 30px;
  color: #344156;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 36px rgba(7, 91, 234, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(7, 91, 234, 0.34);
  box-shadow: 0 12px 28px rgba(5, 28, 66, 0.08);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 830px;
  margin: 54px 0 0;
}

.hero-points div {
  padding-top: 18px;
  border-top: 2px solid var(--line);
}

.hero-points dt {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.hero-points dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 42px;
}

.section-head h2,
.section-head p {
  max-width: 560px;
}

.section-head p,
.mail-copy p,
.proof-section p,
.updates-card p,
.faq-list p {
  color: var(--muted);
  font-size: 17px;
}

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

.service-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 42px rgba(5, 28, 66, 0.06);
}

.service-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  color: var(--white);
}

.service-icon.blue {
  background: var(--blue);
}

.service-icon.black {
  background: var(--ink);
}

.service-icon.red {
  background: var(--red);
}

.service-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mail-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: start;
  width: 100%;
  max-width: none;
  padding: 104px max(var(--page-pad), calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.mail-section h2,
.mail-section h3 {
  color: var(--white);
}

.mail-copy p {
  color: #c5d0df;
}

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

.steps article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.steps span {
  display: block;
  margin-bottom: 44px;
  color: #6fb1ff;
  font-family: Rajdhani, Inter, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.steps p {
  margin-bottom: 0;
  color: #c5d0df;
}

.launch-section {
  padding-bottom: 56px;
}

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

.launch-grid article {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.launch-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--blue);
}

.launch-grid article:nth-child(2)::before {
  background: var(--ink);
}

.launch-grid article:nth-child(3)::before {
  background: var(--red);
}

.launch-grid ul,
.proof-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.launch-grid li {
  position: relative;
  padding: 12px 0 12px 25px;
  color: #3d4a5f;
  border-top: 1px solid var(--line);
  font-weight: 650;
}

.launch-grid li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.launch-grid article:nth-child(3) li::before {
  background: var(--red);
}

.proof-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
  padding-top: 56px;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list li {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.proof-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 19px;
}

.proof-list span {
  color: var(--muted);
}

.updates-section {
  width: 100%;
  max-width: none;
  padding: 100px max(var(--page-pad), calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(7, 91, 234, 0.1), transparent 42%),
    var(--soft);
}

.updates-card {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 54px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.updates-card > img {
  width: 100%;
  height: auto;
}

.faq-section {
  padding-bottom: 84px;
}

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

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

.faq-list summary {
  min-height: 66px;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.site-footer img {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  padding: 8px;
  background: var(--white);
  border-radius: var(--radius);
}

.site-footer p {
  margin: 0;
  color: #c5d0df;
}

.site-footer a {
  font-weight: 800;
  color: #87baff;
}

@media (max-width: 980px) {
  :root {
    --page-pad: 24px;
  }

  .site-header {
    min-height: 76px;
  }

  .brand {
    width: 230px;
    min-width: 180px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: space-between;
  }

  .hero {
    min-height: 680px;
    padding-top: 132px;
  }

  .hero-bg {
    width: 560px;
    max-width: 82%;
    inset: 250px -110px auto auto;
    opacity: 0.13;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy > p {
    font-size: 18px;
  }

  .section {
    width: min(100% - 48px, 1180px);
    padding: 74px 0;
  }

  .section-head,
  .mail-section,
  .proof-section,
  .updates-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .service-list,
  .steps,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .mail-section,
  .updates-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .steps article,
  .launch-grid article {
    min-height: auto;
  }

  .steps span {
    margin-bottom: 24px;
  }

  .updates-card > img {
    width: min(310px, 100%);
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 18px;
  }

  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand {
    width: 190px;
    min-width: 0;
  }

  .hero {
    min-height: 630px;
    padding: 116px var(--page-pad) 64px;
  }

  .hero-bg {
    width: 430px;
    max-width: 100%;
    inset: 344px -154px auto auto;
    opacity: 0.075;
  }

  h1 {
    font-size: 44px;
    line-height: 0.98;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 19px;
  }

  .hero-copy > p,
  .section-head p,
  .mail-copy p,
  .proof-section p,
  .updates-card p,
  .faq-list p {
    font-size: 16px;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 40px;
  }

  .service-row {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }

  .section {
    width: calc(100% - 36px);
  }

  .mail-section,
  .updates-section {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }

  .updates-card {
    padding: 24px;
  }

  .site-footer {
    display: grid;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
