:root {
  --navy: #061b46;
  --navy-2: #0b2b67;
  --red: #f20d16;
  --red-dark: #d80710;
  --ink: #101a31;
  --muted: #5e687d;
  --line: #dfe4ee;
  --surface: #f6f8fc;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(6, 27, 70, 0.08);
  --shadow-lg: 0 30px 80px rgba(6, 27, 70, 0.14);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(242, 13, 22, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 228, 238, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 190px;
  height: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

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

.button-small {
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.button-outline {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button-outline:hover {
  border-color: rgba(6, 27, 70, 0.35);
  box-shadow: var(--shadow-sm);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #ff2830);
  box-shadow: 0 16px 34px rgba(242, 13, 22, 0.25);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  box-shadow: 0 20px 42px rgba(242, 13, 22, 0.32);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 96px;
  background:
    linear-gradient(180deg, rgba(246, 248, 252, 0.75), rgba(255, 255, 255, 0) 66%),
    var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -200px;
  width: 620px;
  height: 280px;
  background: var(--red);
  border-radius: 50%;
  transform: rotate(-16deg);
  opacity: 0.035;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(8px);
}

.hero-glow-one {
  top: 90px;
  left: -220px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 13, 22, 0.08), transparent 68%);
}

.hero-glow-two {
  right: -160px;
  top: 40px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(6, 27, 70, 0.09), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(470px, 0.98fr);
  align-items: center;
  gap: clamp(54px, 7vw, 96px);
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 9px 15px 9px 11px;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(6, 27, 70, 0.05);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.launch-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--red);
}

.launch-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6vw, 5.6rem);
  font-weight: 900;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 720;
  line-height: 1.45;
}

.hero-supporting {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-bottom: 28px;
}

.community-note {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 650;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.hero-trust svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 24px;
  transform: rotate(3deg);
}

.hero-visual::before {
  inset: 18px -18px -18px 18px;
  background: rgba(242, 13, 22, 0.08);
}

.hero-visual::after {
  inset: -18px 20px 20px -18px;
  background: rgba(6, 27, 70, 0.055);
  transform: rotate(-3deg);
}

.visual-card {
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(223, 228, 238, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.visual-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-card h2 {
  max-width: 330px;
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.status-dot {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  margin-top: 2px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--surface);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 760;
}

.status-dot span {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(242, 13, 22, 0.1);
}

.feature-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mini-feature {
  display: flex;
  min-height: 108px;
  padding: 14px 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 17px;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.mini-feature:hover {
  transform: translateY(-3px);
  background: var(--white);
  border-color: var(--line);
}

.mini-feature strong {
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1.2;
}

.mini-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: var(--white);
  border-radius: 13px;
  place-items: center;
  box-shadow: 0 8px 18px rgba(6, 27, 70, 0.07);
}

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

.mini-feature:nth-child(2n) .mini-icon {
  color: var(--red);
}

.route-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.route-track {
  position: relative;
  height: 4px;
  overflow: hidden;
  background: var(--line);
  border-radius: 999px;
}

.route-track i {
  position: absolute;
  inset: 0;
  width: 66%;
  background: linear-gradient(90deg, var(--navy), var(--red));
  border-radius: inherit;
}

.route-track i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 12px;
  height: 12px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(242, 13, 22, 0.15);
  transform: translateY(-50%);
}

.section {
  padding: 104px 0;
}

.platform-section {
  background: var(--surface);
  border-top: 1px solid #edf0f6;
  border-bottom: 1px solid #edf0f6;
}

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

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

.section-heading h2,
.community-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 900;
}

.section-heading p {
  max-width: 670px;
  margin-inline: auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.platform-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(6, 27, 70, 0.04);
}

.platform-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(242, 13, 22, 0.08), transparent 68%);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  color: var(--red);
  background: rgba(242, 13, 22, 0.08);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 900;
}

.platform-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  font-weight: 850;
}

.platform-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-tags span {
  padding: 6px 9px;
  color: var(--navy);
  background: var(--surface);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 760;
}

.community-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 27, 70, 0.96), rgba(11, 43, 103, 0.95)),
    var(--navy);
}

.community-section::before,
.community-section::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 120px;
  border-radius: 999px;
  transform: rotate(-18deg);
}

.community-section::before {
  top: -80px;
  right: -100px;
  background: rgba(242, 13, 22, 0.42);
}

.community-section::after {
  bottom: -100px;
  left: -120px;
  background: rgba(242, 13, 22, 0.2);
}

.community-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 70px;
}

.eyebrow-light {
  color: #ff777d;
}

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

.community-copy p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.community-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

.button-white {
  width: 100%;
  min-height: 62px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.button-white:hover {
  background: #f8f9fc;
}

.community-actions > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding: 36px 0;
  background: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-brand img {
  width: 144px;
  height: auto;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.copyright {
  text-align: right;
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    max-width: 760px;
  }

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

  .platform-card {
    min-height: 270px;
  }
}

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

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 154px;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 0.82rem;
  }

  .button-small svg {
    display: none;
  }

  .hero {
    padding: 58px 0 72px;
  }

  .hero-grid {
    gap: 54px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .hero-supporting {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary {
    width: 100%;
  }

  .community-note {
    text-align: center;
  }

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

  .visual-card-header {
    flex-direction: column;
  }

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

  .mini-feature {
    min-height: 104px;
  }

  .section {
    padding: 76px 0;
  }

  .platform-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 0;
  }

  .community-grid {
    gap: 38px;
  }

  .community-actions {
    align-items: flex-start;
  }

  .button-white {
    width: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .copyright {
    text-align: center;
  }
}

@media (max-width: 440px) {
  .header-inner {
    gap: 12px;
  }

  .brand img {
    width: 132px;
  }

  .button-small {
    padding-inline: 11px;
    font-size: 0.76rem;
  }

  .launch-badge {
    font-size: 0.73rem;
  }

  .visual-card {
    padding: 20px;
    border-radius: 22px;
  }

  .mini-feature strong {
    font-size: 0.74rem;
  }

  .button-white {
    width: 100%;
    text-align: center;
  }
}

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