:root {
  --color-bg: #0c0e12;
  --color-bg-elevated: #14171e;
  --color-text: #f4f5f7;
  --color-text-muted: #9ca3af;
  --color-text-soft: rgba(244, 245, 247, 0.92);
  --color-accent: #f97316;
  --color-cta-start: #fb923c;
  --color-cta-end: #ea580c;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.12);
  --color-overlay: rgba(12, 14, 18, 0.94);
  --color-glass: rgba(20, 23, 30, 0.88);
  --color-glass-bars: rgba(20, 23, 30, 0.92);
  --color-footer-bg: rgba(12, 14, 18, 0.97);
  --breakpoint-desktop: 1024px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  --font-heading: Inter-Display, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: #ea580c;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  transition: left 0.2s ease;
}

.skip-link:focus {
  left: 0.5rem;
  outline: 3px solid #f97316;
  outline-offset: 2px;
}

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

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Display";
  src: url("../assets/fonts/InterDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #f4f5f7;
  background: #0c0e12;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 1rem;
  line-height: 1.6;
}

h1 {
  font-family: "Inter-Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
}

h2 {
  font-family: "Inter-Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
}

h3 {
  font-family: "Inter-Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
}

h4 {
  font-family: "Inter-Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
}

p {
  font-family: "Inter-Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.9rem, 3vw, 1.2rem);
  font-weight: 600;
}

body {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 2rem;
}

.header {
  max-width: 100%;
  padding: 0.5rem 0;
  padding-right: 1rem;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem;
}

.logo img {
  display: block;
  width: auto;
  height: 60px;
}

.article-spacing--sm {
  padding: 1rem 0.5rem;
}

.article-spacing--md {
  padding: 2rem 0.5rem;
}

.media-box {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.media-box img {
  display: block;
  width: 100%;
  height: auto;
}

.media-box p {
  font-size: 1rem;
}

.media-box > div {
  background: rgba(0, 0, 0, 0.815);
}

.burger {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.burger span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(12, 14, 18, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
}

.desktop-menu {
  display: none;
}

.footer {
  padding-bottom: 1rem;
  background: rgba(12, 14, 18, 0.97);
}

.footer-cta-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-bar p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.footer-col {
  display: grid;
  grid-template-columns: 1fr;
  padding: 3rem 1.5rem 1.5rem;
  gap: 1rem;
}

.footer-col h4 {
  color: #f4f5f7;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-col p {
  margin: 0.4rem 0;
  line-height: 1.5;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #f97316;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin: 0.4rem 0;
}

.footer-notice {
  justify-items: center;
  padding: 1rem;
}

.footer-notice p {
  font-size: 0.9rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .burger {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
  .desktop-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
    font-size: 1.2rem;
  }
  .desktop-menu .cta-menu {
    flex-shrink: 0;
  }
  .footer-col {
    display: flex;
    justify-content: space-between;
    padding: 2rem 3rem;
  }
  .footer-col ul {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  article {
    justify-self: center;
    width: 80%;
    max-width: 1200px;
  }
}
a, button {
  appearance: none;
  background-color: transparent;
  border: 0;
  font: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  color: inherit;
  outline: none;
  cursor: pointer;
}

.cta-menu {
  display: inline-block;
  text-align: center;
  padding: 1rem 0.5rem;
  color: white;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.cta-menu:active,
.cta:active {
  background-color: white;
  color: black;
}

.cta {
  display: inline-block;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cta-primary {
  background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
  color: #fff !important;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.cta-secondary {
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.9);
}

.cta-card {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.4);
}

.cta-card:hover {
  background: rgba(249, 115, 22, 0.2);
  border-color: #f97316;
}

.desktop-menu .cta-primary,
.mobile-menu .cta-primary {
  margin-top: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(244, 245, 247, 0.92);
}

.trust-line span[aria-hidden=true] {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.lead-cta-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.lead-cta-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(244, 245, 247, 0.92);
  margin: 0;
}

@media (min-width: 1024px) {
  .desktop-menu .cta-menu {
    border: 1px solid transparent;
    border-radius: 6px;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .desktop-menu .cta-menu:hover {
    color: #f97316;
    border-color: #f97316;
  }
  .desktop-menu .cta-primary {
    margin-top: 0;
    margin-left: 0.5rem;
  }
}
.glassmorph-art {
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(20, 23, 30, 0.88);
}

.glassmorph-bars {
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(61, 61, 61, 0.5);
  background: rgba(20, 23, 30, 0.92);
}

.glassmorph-cta {
  border-radius: 10px;
  border: 2px solid rgb(39, 39, 39);
  backdrop-filter: blur(10px);
}
