@font-face {
  font-family: "Manrope";
  src:
    url("/fonts/Manrope-ExtraLight.woff2") format("woff2"),
    url("/fonts/Manrope-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src:
    url("/fonts/Manrope-Light.woff2") format("woff2"),
    url("/fonts/Manrope-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Manrope";
  src:
    url("/fonts/Manrope-Medium.woff2") format("woff2"),
    url("/fonts/Manrope-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: "Manrope";
  src:
    url("/fonts/Manrope-ExtraBold.woff2") format("woff2"),
    url("/fonts/Manrope-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-main: #f5f7ff;
  --header-offset: 100px;

  --accent-eth-soft: linear-gradient(120deg, #627eea, #4053d6);
  --accent-eth: #627eea;
  --accent-signal: #10b981;

  --text-main: #020617;
  --text-muted: #4b5563;
  --border-soft: rgba(148, 163, 184, 0.5);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

a {
  color: 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;
}

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

.section,
.hero {
  scroll-margin-top: var(--header-offset);
}




main {
  padding-top: 0;
}



.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 84px;
  display: flex;
  align-items: center;
  z-index: 50;
  transition:
    background 200ms ease,
    backdrop-filter 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.97),
    rgba(236, 242, 255, 0.98)
  );
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 16px 40px rgba(15, 23, 42, 0.07);
}

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



.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  justify-self: start;
}

.brand-logo {
  width: 34px;
  height: 34px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name-primary {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.brand-name-secondary {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(98, 126, 234, 0.8); 
  margin-top: 2px;
}



.main-nav {
  position: relative;
  display: flex;
  gap: 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  padding: 0;         
  margin: 0;

  
  border-radius: 5px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;

  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
  justify-self: center;
}


.main-nav__highlight {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;

  border-radius: 0; 
  background: rgba(148, 163, 184, 0.16);

  transition:
    left 160ms ease-out,
    width 160ms ease-out,
    opacity 160ms ease-out;
  opacity: 0;
  pointer-events: none;
}

.main-nav a {
  position: relative;
  display: flex;
  align-items: center;

  text-decoration: none;
  color: rgba(15, 23, 42, 0.9);

  padding-block: 12px;
  padding-inline: 18px;

  border-radius: 0; 
  z-index: 1;
  transition:
    color 150ms ease-out;
}


.main-nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  background: rgba(148, 163, 184, 0.45);
  transform: translateY(-50%);
}


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


.main-nav a:hover {
  color: rgba(15, 23, 42, 1);
}


.header-ctas {
  display: flex;
  gap: 8px;
  justify-self: end;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease,
    transform 90ms ease,
    opacity 120ms ease;
  white-space: nowrap;
}


.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}

.btn-icon svg {
  width: 19px;
  height: 19px;
}


.header-ctas .btn-ghost .btn-icon svg {
  color: rgba(148, 163, 184, 0.98);
}


.btn-primary {
  background-image: var(--accent-eth-soft);
  color: #ffffff;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(148, 163, 184, 0.85);
}

.btn-ghost:hover {
  background: rgba(148, 163, 184, 0.08);
}

.btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text-main);
  
}

.btn-outline:hover {
  background: rgba(148, 163, 184, 0.08);
}



.btn-hero {
  padding-block: 14px;
  padding-inline: 30px;
  font-size: 19px;
}



.hero {
  position: relative;
  width: 100%;
  min-height: 52vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}


.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("/public/hero-background.webp") right center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 140px;
}



.hero-kicker {
  display: inline-flex;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.85);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #4b5563;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}


.hero-title {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  font-size: clamp(52px, 7vw, 75px);
  line-height: 1.03;
  margin: 0 0 18px;
  color: #8a92b8;
}

.hero-title-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-title-main {
  display: inline-block;
}

.hero-title-icon {
  width: 1em;  
  height: 1em;
  object-fit: contain;
  transform: translateY(0px); 
}

.hero-title-accent {
  display: block;             
  margin-top: 0px;
  background-image: var(--accent-eth-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 0 32px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.kicker-accent {
 color: rgba(98, 126, 234, 0.9);
 padding-left: 4px;
 padding-right: 4px;
}

.hero-title {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  font-size: clamp(52px, 7vw, 76px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  color: #030b2b;
}


.hero-title-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-title-main {
  display: inline-block;
}

.hero-title-icon {
  width: 1em;
  height: 1em;
  object-fit: contain;
  transform: translateY(3px);
}


.hero-title-tagline {
  display: block;       
  margin-top: 8px;
  font-size: 0.46em;
}


.hero-title-accent {
  background-image: var(--accent-eth-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}


.hero-title-tagline-rest {
  margin-left: 6px;
  color: #4b5563;
}






.hero-meta {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: min(970px, 100% - 32px);
  padding: 24px 20px;
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(30px);
  box-shadow: 0 8px 45px rgba(15, 23, 42, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #111827;
  z-index: 2;
}

.meta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-inline: 10px;
  border-right: 1px solid rgba(209, 213, 219, 0.8);
}

.meta-item:last-child {
  border-right: none;
}

.meta-label {
  font-weight: 500;
  color: #6b7280;
  font-size: 13px;
}

.meta-value {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #111827;
}



@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    gap: 16px;
  }

  .hero-inner {
    padding-top: 112px;
    padding-bottom: 130px;
  }

  .hero-bg {
    background-position: right 20% center;
    background-size: cover;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    bottom: 20px;
    padding: 12px 16px;
  }

  .meta-item {
    border-right: none;
    padding-inline: 0;
    width: 100%;
  }
}

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

  .hero-inner {
    padding-top: 104px;
    padding-bottom: 140px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-meta {
    width: min(100% - 24px, 480px);
  }
}








.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}



.section {
  padding: 80px 0;
}

.section-inner {
  
}



.section-eyebrow {
  font-size: 13px; 
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #6b7280;
  margin-bottom: 8px;
}

.section-title {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  font-size: 40px; 
  line-height: 1.25;
  margin: 0 0 12px;
  color: #020617;
}


.section-title-accent {
  color: rgba(98, 126, 234, 0.9); 
}

.section-subtitle {
  margin: 0 0 28px;
  max-width: 680px;
  font-size: 18px; 
  line-height: 1.85;
  color: var(--text-muted);
}



.section-overview {
  background: #f9fbff;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.section-overview-inner {
  display: flex;
  align-items: center; 
  justify-content: space-between;
  gap: 48px;
}

.section-overview-content {
  flex: 1.1;
}

.section-overview-visual {
  flex: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
}



.overview-promise {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.9);
  font-size: 17px; 
  color: #374151;
}



.overview-matrix {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.overview-row {
  display: grid;
  grid-template-columns: minmax(90px, 130px) minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.overview-row:last-child {
  border-bottom: none;
}

.overview-key {
  font-size: 12px; 
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
}

.overview-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.overview-item-title {
  font-size: 17px; 
  font-weight: 600;
  margin: 0;
  color: #020617;
}

.overview-item-text {
  margin: 0;
  font-size: 18px; 
  line-height: 1.75;
  color: var(--text-muted);
}



.overview-visual-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #ffffff;
  transform: scale(1.05);
}



.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px; 
  font-weight: 500;
  text-decoration: none;
  color: var(--accent-eth);
}

.section-link::after {
  content: "→";
  font-size: 12px;
}



@media (max-width: 900px) {
  .section-overview-inner {
    flex-direction: column;
    gap: 32px;
  }

  .section-overview-content,
  .section-overview-visual {
    flex: none;
    width: 100%;
  }

  .overview-visual-image {
    max-width: 420px;
    margin-inline: auto;
  }

  .overview-row {
    grid-template-columns: 1fr;
  }

  .overview-key {
    margin-bottom: 2px;
  }
}



.section-routing {
  background: #ffffff;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.section-routing-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section-routing-header {
  max-width: 720px;
}



.route-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: linear-gradient(
    135deg,
    rgba(248, 250, 255, 0.96),
    rgba(239, 246, 255, 0.96)
  );
}

.route-node {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px; 
  font-weight: 600;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #111827;
  white-space: nowrap;
}

.route-node--start::before {
  content: "●";
  font-size: 10px;
  margin-right: 6px;
  color: var(--accent-eth);
}

.route-node--end::after {
  content: "●";
  font-size: 10px;
  margin-left: 6px;
  color: var(--accent-eth);
}

.route-option {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.route-option-line {
  height: 4px;
  border-radius: 999px;
  background: var(--accent-eth-soft);
}

.route-option-line--secondary {
  background: linear-gradient(120deg, #34d399, #22c55e);
}

.route-option-header {
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.route-option-label {
  font-size: 16px; 
  font-weight: 600;
  color: #020617;
}



.route-option-badge {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(98, 126, 234, 0.08);
  color: rgba(30, 64, 175, 0.9);
  border: 1px solid rgba(129, 140, 248, 0.4);
}

.route-option-badge--secondary {
  background: rgba(34, 197, 94, 0.08);
  color: rgba(21, 128, 61, 0.9);
  border-color: rgba(34, 197, 94, 0.35);
}

.route-option-meta {
  font-size: 15px; 
  color: #6b7280;
}



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

.routing-action {
  padding: 18px 18px 20px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(
    135deg,
    rgba(248, 250, 255, 0.96),
    rgba(239, 246, 255, 0.96)
  );
}

.routing-action-title {
  font-size: 19px; 
  font-weight: 600;
  margin: 0 0 6px;
  color: #020617;
}

.routing-action-text {
  margin: 0;
  font-size: 17px; 
  line-height: 1.85;
  color: var(--text-muted);
}



.routing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.routing-link {
  font-size: 15px; 
  font-weight: 500;
  text-decoration: none;
  color: var(--accent-eth);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(248, 250, 255, 0.9);
}

.routing-link:hover {
  background: rgba(239, 246, 255, 1);
}



@media (max-width: 900px) {
  .route-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .route-node {
    align-self: flex-start;
  }

  .routing-actions {
    grid-template-columns: 1fr;
  }
}

.section-subtitle {
  margin: 0 0 28px;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-muted);
}


.section-subtitle-accent {
  color: var(--accent-eth);
  font-weight: 600;
}


.section-overview {
  background: #f9fbff;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}


.section-overview-inner {
  display: block;
}

.section-overview-content {
  max-width: 100%;
}



.overview-promise {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.9);
  font-size: 15.5px;
  color: #374151;
}



.section-overview-layout {
  display: flex;
  align-items: flex-start;    
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
}

.overview-matrix {
  flex: 1.15;
  display: grid;
  gap: 16px;
}

.section-overview-visual {
  flex: 0.95;
  display: flex;
  align-items: flex-start;    
  justify-content: center;
}



.overview-row {
  display: grid;
  grid-template-columns: minmax(90px, 130px) minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.overview-row:last-child {
  border-bottom: none;
}

.overview-key {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
}

.overview-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.overview-item-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #020617;
}

.overview-item-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
}



.overview-visual-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #ffffff;
}



.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--accent-eth);
}

.section-link::after {
  content: "→";
  font-size: 12px;
}



@media (max-width: 900px) {
  .section-overview-layout {
    flex-direction: column;
    gap: 24px;
  }

  .overview-matrix {
    flex: none;
  }

  .section-overview-visual {
    flex: none;
    justify-content: flex-start;
  }

  .overview-visual-image {
    max-width: 420px;
    margin-inline: auto;
  }

  .overview-row {
    grid-template-columns: 1fr;
  }

  .overview-key {
    margin-bottom: 2px;
  }
}



.routing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0px;
  justify-content: flex-end;  
}


.routing-link {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--accent-eth);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(248, 250, 255, 0.9);
}

.routing-link:hover {
  background: rgba(239, 246, 255, 1);
}



@media (max-width: 900px) {
  .route-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .route-node {
    align-self: flex-start;
  }

  .routing-actions {
    grid-template-columns: 1fr;
  }

  .routing-links {
    justify-content: flex-start; 
  }
}









.section-downloads {
  background: #f9fbff; 
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.section-downloads-inner {
  display: flex;
  flex-direction: column;
}







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



.download-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}



.download-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.download-card-icon {
  width: 56px;  
  height: 56px;
  object-fit: contain;
}

.download-card-os {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.download-card-title {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  color: #020617;
}

.download-card-note {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}



.download-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}



.btn-download {
  width: 100%;
  justify-content: center;
  border-radius: 2px;
}



.download-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.download-meta-label {
  font-size: 15px;
  color: #6b7280;
}

.download-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-meta-link {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--accent-eth);
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
}

.download-meta-link:hover {
  border-bottom-color: rgba(98, 126, 234, 0.5);
}



@media (max-width: 1024px) {
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-downloads-top {
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .section-downloads-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-downloads-visual {
    width: 100%;
    max-width: 420px;
    align-self: center;
  }

  .section-downloads-header {
    max-width: 100%;
  }
}

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

  .download-card {
    padding: 18px 18px 20px;
  }

  .download-card-icon {
    width: 48px;
    height: 48px;
  }

  .download-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}


.section-downloads {
  background: #f9fbff;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.section-downloads-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-downloads-header {
  max-width: 720px;
}

.section-downloads-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.section-downloads-visual {
  flex: 0 0 340px;
  max-width: 380px;
}

.section-downloads-image {
  width: 100%;
  height: 190px;
  padding-right: 20px;
  opacity: 0.9;
  display: block;
  object-fit: contain;
  border-radius: 12px;
}



.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 10px;
}



.download-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px 22px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}



.download-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}


.download-card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.85); 
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fbff;
}


.download-card-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.download-card-os {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.download-card-title {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  color: #020617;
}

.download-card-note {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}



.download-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}



.btn-download {
  width: 100%;
  justify-content: center;
}



.download-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.download-meta-label {
  font-size: 15px;
  color: #6b7280;
}

.download-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-meta-link {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--accent-eth);
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
}

.download-meta-link:hover {
  border-bottom-color: rgba(98, 126, 234, 0.5);
}



@media (max-width: 1024px) {
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .download-card {
    padding: 18px 18px 20px;
  }

  .download-card-icon-wrap {
    width: 56px;
    height: 56px;
  }

  .download-card-icon {
    width: 30px;
    height: 30px;
  }

  .download-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}






.section-community {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: radial-gradient(circle at top, #111827 0%, #020617 60%, #000000 100%);
  color: #f9fafb;
}


.community-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(15, 23, 42, 0.75), transparent 60%),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.92), rgba(3, 7, 18, 0.78)),
    url("/public/community-bg.webp") center/cover no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.section-community-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}



.section-community-header {
  max-width: 640px;
}

.section-eyebrow--on-dark {
  color: rgba(156, 163, 175, 0.95);
  font-size: 14px;                  
  letter-spacing: 0.24em;
}

.section-title--on-dark {
  color: #f9fafb;
  letter-spacing: -0.01em;
  font-size: 45px;                  
}

.section-subtitle--on-dark {
  color: rgba(209, 213, 219, 0.95);
  font-size: 19.5px;                  
  line-height: 1.4;
  margin-bottom: 0;
}

.section-subtitle-accent--on-dark {
  color: #e5e7eb;
}



.community-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  font-size: 16px;                  
  color: rgba(229, 231, 235, 0.95);
}

.community-meta-item {
  padding: 14px 18px;                
  border-radius: 4px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
}



.community-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}



.community-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  text-decoration: none;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.85);
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  backdrop-filter: blur(12px);
  transition:
    background 150ms ease,
    border-color 150ms ease,
    transform 120ms ease;
}

.community-link:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(191, 219, 254, 0.98);
}

.community-link-icon {
  width: 26px;
  height: 26px;
  display: block;
}



@media (max-width: 720px) {
  .section-community {
    padding: 72px 0;
  }

  .section-community-header {
    max-width: 100%;
  }

  .community-meta {
    justify-content: flex-start;
  }

  .section-community-inner {
    align-items: flex-start;
    text-align: left;
  }

  .community-links {
    justify-content: flex-start;
  }
}











.site-footer {
  background: #020617; 
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  color: #9ca3af;
  padding: 34px 0 40px; 
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px; 
}



.footer-brand-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-logo-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.85);
  background: radial-gradient(circle at top, #1f2937, #020617);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-large {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

.footer-brand-main {
  font-size: 24px;           
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.footer-brand-tagline {
  font-size: 16.5px;
  color: #9ca3af;
}



.footer-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}



.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); 
  gap: 28px;
}

.footer-column-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.footer-link {
  display: block;
  font-size: 21px;           
  color: #9ca3af;
  text-decoration: none;
  padding: 10px 0;
  transition:
    color 140ms ease,
    opacity 140ms ease;
}

.footer-link--with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-link-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-link:hover {
  color: #e5e7eb;
  opacity: 1;
}



.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  font-size: 14px;
  color: #6b7280;
}

.footer-bottom-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.footer-copy {
  color: #6b7280;
}

.footer-separator {
  color: #4b5563;
}

.footer-bottom-link {
  text-decoration: none;
  color: #9ca3af;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition:
    color 140ms ease,
    border-color 140ms ease;
}

.footer-bottom-link:hover {
  color: #e5e7eb;
  border-bottom-color: rgba(148, 163, 184, 0.8);
}

.footer-bottom-link--accent {
  color: var(--accent-eth);
}

.footer-bottom-link--accent:hover {
  color: #e5e7eb;
}

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.footer-bottom-label {
  color: #6b7280;
}



@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .footer-main {
    gap: 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
