:root {
  --primary: #00aeef;
  --primary-dark: #0090c8;
  --primary-glow: rgba(0, 174, 239, 0.35);
  --secondary: #231f20;
  --secondary-light: #2e2a2b;
  --text: #3a3637;
  --text-muted: #6b6566;
  --text-light: #f5f5f5;
  --surface: #ffffff;
  --surface-muted: #f4f6f8;
  --surface-dark: #1a1718;
  --border: rgba(35, 31, 32, 0.1);
  --shadow: rgba(35, 31, 32, 0.12);
  --proofs-gold: #dcab59;
  --proofs-indigo: #1f1a47;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1140px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--secondary);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(35, 31, 32, 0.92);
  border-bottom: 1px solid rgba(0, 174, 239, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 6.5rem;
}

.brand img {
  height: 88px;
  width: 88px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.nav-cta {
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--secondary) !important;
  font-weight: 600 !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--primary-dark);
  color: var(--secondary) !important;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.22rem auto;
  background: var(--text-light);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  background: var(--secondary);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(35, 31, 32, 0.94) 0%,
      rgba(35, 31, 32, 0.82) 42%,
      rgba(35, 31, 32, 0.55) 68%,
      rgba(35, 31, 32, 0.72) 100%
    ),
    linear-gradient(
      to top,
      rgba(35, 31, 32, 0.85) 0%,
      transparent 45%
    ),
    linear-gradient(
      180deg,
      rgba(0, 174, 239, 0.12) 0%,
      transparent 50%
    );
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 174, 239, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black 0%, black 55%, transparent 100%);
  opacity: 0.7;
}

.hero-glow {
  position: absolute;
  top: -15%;
  left: -5%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(0, 174, 239, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 6rem 0 5rem;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--primary);
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 36rem;
  font-size: 1.1rem;
  color: rgba(245, 245, 245, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 320px;
}

.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(35, 31, 32, 0.72);
  border: 1px solid rgba(0, 174, 239, 0.28);
  backdrop-filter: blur(16px);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  animation: float 6s ease-in-out infinite;
}

.hero-card img {
  border-radius: 10px;
}

.hero-card--inflight {
  top: 8%;
  left: 5%;
  animation-delay: 0s;
}

.hero-card--market {
  top: 38%;
  right: 0;
  animation-delay: -2s;
}

.hero-card--proofs {
  bottom: 8%;
  left: 15%;
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

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

.button-primary {
  background: var(--primary);
  color: var(--secondary);
}

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

.button-secondary {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

.button-outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--border);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

.button-proofs {
  background: var(--proofs-indigo);
  color: var(--text-light);
}

.button-proofs:hover,
.button-proofs:focus-visible {
  background: #2d2558;
}

/* Stats band */

.stats-band {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 0;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Sections */

.section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--surface-muted);
}

.section-dark {
  background: var(--secondary);
  color: var(--text-light);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin: 0.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--secondary);
}

.section-dark .section-heading h2 {
  color: var(--text-light);
}

.section-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-label--light {
  color: var(--primary);
}

.section-lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.section-dark .section-lead {
  color: rgba(245, 245, 245, 0.75);
}

/* Product showcases */

.section-products {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-muted) 100%);
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
  max-width: 40rem;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px var(--shadow);
}

.showcase--featured {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  border-color: rgba(0, 174, 239, 0.25);
  color: var(--text-light);
}

.showcase--market {
  background: var(--surface);
}

.showcase--proofs {
  background: linear-gradient(135deg, #faf5ed 0%, var(--surface) 55%);
  border-color: rgba(220, 171, 89, 0.25);
}

.showcase--market .showcase-content {
  order: 2;
}

.showcase--market .showcase-visual {
  order: 1;
}

.showcase-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.showcase-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.showcase--featured .showcase-category {
  color: rgba(245, 245, 245, 0.6);
}

.showcase-status {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.showcase-status--live {
  background: rgba(0, 174, 239, 0.18);
  color: var(--primary);
}

.showcase--featured .showcase-status--live {
  background: rgba(0, 174, 239, 0.22);
  color: #7ddfff;
}

.showcase-status--soon {
  background: rgba(35, 31, 32, 0.08);
  color: var(--text-muted);
}

.showcase-logo {
  display: block;
  max-height: 48px;
  width: auto;
  margin-bottom: 1.25rem;
}

.showcase-logo--round {
  max-height: 52px;
  border-radius: 14px;
  margin-bottom: 0;
}

.showcase-brand-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.showcase-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--proofs-indigo);
}

.showcase-headline {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--secondary);
}

.showcase--featured .showcase-headline {
  color: var(--text-light);
}

.showcase--proofs .showcase-headline {
  color: var(--proofs-indigo);
}

.showcase-lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.showcase--featured .showcase-lead {
  color: rgba(245, 245, 245, 0.8);
}

.showcase-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.benefit-chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(0, 174, 239, 0.1);
  color: var(--primary-dark);
  border: 1px solid rgba(0, 174, 239, 0.18);
}

.showcase--featured .benefit-chip {
  background: rgba(0, 174, 239, 0.14);
  color: #b8ecff;
  border-color: rgba(0, 174, 239, 0.28);
}

.benefit-chip--proofs {
  background: rgba(31, 26, 71, 0.06);
  color: var(--proofs-indigo);
  border-color: rgba(220, 171, 89, 0.35);
}

.showcase-proof {
  margin: 0 0 1.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.showcase--featured .showcase-proof {
  color: rgba(245, 245, 245, 0.55);
}

.showcase--proofs .showcase-proof {
  color: var(--muted-lavender, #8c7aad);
  font-style: italic;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.showcase-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: color 0.2s ease;
}

.showcase-link:hover,
.showcase-link:focus-visible {
  color: var(--primary);
}

.showcase--featured .showcase-link {
  color: rgba(245, 245, 245, 0.7);
}

.showcase--featured .showcase-link:hover,
.showcase--featured .showcase-link:focus-visible {
  color: var(--primary);
}

.showcase-visual {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(35, 31, 32, 0.18);
}

.showcase--featured .showcase-visual {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.showcase-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-visual--proofs img {
  max-height: 420px;
  width: auto;
  margin-inline: auto;
}

.showcase-visual--brand {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(0, 174, 239, 0.08) 0%, rgba(35, 31, 32, 0.04) 100%);
  border: 1px dashed rgba(0, 174, 239, 0.25);
  box-shadow: none;
}

.showcase-brand-panel {
  text-align: center;
  padding: 2rem;
}

.showcase-brand-panel img {
  max-height: 72px;
  width: auto;
  margin: 0 auto 1rem;
}

.showcase-brand-panel p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* About */

.section-about {
  padding: 0;
}

.about-mission {
  padding: 5rem 0 4rem;
  background: linear-gradient(160deg, var(--secondary) 0%, var(--secondary-light) 60%, #2a3a42 100%);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 174, 239, 0.15) 0%, transparent 70%),
    linear-gradient(rgba(0, 174, 239, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, 0.04) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  pointer-events: none;
}

.about-mission-inner {
  position: relative;
  max-width: 40rem;
}

.about-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  object-fit: contain;
}

.about-mission h2 {
  margin: 0.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-mission-lead {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(245, 245, 245, 0.78);
}

.about-principles {
  padding: 0;
  margin-top: -2rem;
  position: relative;
  z-index: 1;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.principle-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px var(--shadow);
}

.principle-number {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  opacity: 0.85;
}

.principle-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
}

.principle-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.about-story {
  padding: 5rem 0;
  background: var(--surface-muted);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-collage {
  position: relative;
  min-height: 380px;
}

.collage-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px var(--shadow);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-item--main {
  position: relative;
  z-index: 1;
  width: 88%;
  aspect-ratio: 16 / 10;
}

.collage-item--accent {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 52%;
  aspect-ratio: 4 / 3;
  border: 4px solid var(--surface-muted);
}

.collage-badges {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px var(--shadow);
}

.collage-badges img {
  border-radius: 8px;
  max-height: 32px;
  width: auto;
}

.about-story-copy h2 {
  margin: 0.5rem 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--secondary);
}

.about-story-copy p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-story-copy .button {
  margin-top: 0.5rem;
}

/* Contact */

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

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 8px 24px var(--shadow);
  transform: translateY(-2px);
}

.contact-card img {
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-logo-round {
  border-radius: 10px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
}

.contact-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.contact-icon--instagram {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  color: #ffffff;
}

.contact-card h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
}

.contact-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-arrow {
  margin-left: auto;
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* Footer */

.site-footer {
  padding: 2.5rem 0;
  background: var(--surface-dark);
  color: rgba(245, 245, 245, 0.7);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  opacity: 0.95;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--primary);
}

.footer-copy {
  width: 100%;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  text-align: center;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding: 4.5rem 0 3.5rem;
  }

  .hero-visual {
    min-height: 240px;
    margin-top: 1rem;
  }

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

  .showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .showcase--market .showcase-content,
  .showcase--market .showcase-visual {
    order: unset;
  }

  .showcase-visual--brand {
    min-height: 200px;
  }

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

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-collage {
    min-height: 300px;
    max-width: 480px;
    margin-inline: auto;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 6.5rem 1.25rem auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    background: var(--secondary);
    border: 1px solid rgba(0, 174, 239, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
  }

  .site-nav a:hover {
    background: rgba(0, 174, 239, 0.1);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-card--market img {
    max-width: 100px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

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