/* ==========================================================================
   PRAXIS BIS — styles.css
   Mobile-first. CSS custom properties throughout. No frameworks.
   ========================================================================== */


/* ==========================================================================
   CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Colour palette */
  --color-bg:             #060D18;
  --color-surface:        #0F1D2F;
  --color-primary:        #0A1628;
  --color-accent:         #2D7FF9;
  --color-accent-hover:   #1a6ee8;
  --color-accent-glow:    rgba(45, 127, 249, 0.12);
  --color-slate:          #8899AA;
  --color-text:           #E8ECF1;
  --color-text-secondary: #7A8BA0;
  --color-border:         rgba(45, 127, 249, 0.12);
  --color-border-hover:   rgba(45, 127, 249, 0.38);

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', Consolas, 'Courier New', monospace;

  /* Spacing */
  --section-padding:  96px;
  --container-max:    1200px;
  --container-pad:    24px;
  --nav-height:       68px;

  /* Motion */
  --ease-fast: 200ms ease;
  --ease-med:  300ms ease;

  /* Shape */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}


/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}


/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  position: relative;
  z-index: 1;
}

.section {
  padding-block: var(--section-padding);
  position: relative;
  overflow: hidden;
}


/* ==========================================================================
   CURSOR GLOW — follows mouse across the whole page
   ========================================================================== */

.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 127, 249, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cursor-glow.is-active {
  opacity: 1;
}


/* ==========================================================================
   AMBIENT GRADIENT DRIFT — slow-moving background glow per section
   ========================================================================== */

.section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(45, 127, 249, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(45, 127, 249, 0.03) 0%, transparent 55%);
  animation: sectionDrift 25s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes sectionDrift {
  0%   { transform: translate(0, 0)     scale(1);    }
  33%  { transform: translate(20px, -10px) scale(1.03); }
  66%  { transform: translate(-15px, 12px) scale(0.97); }
  100% { transform: translate(8px, -6px)  scale(1.01); }
}


/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav-wrapper {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-height);
  transition:
    background var(--ease-med),
    backdrop-filter var(--ease-med);
}

/* Bottom-line pseudo-element — hidden until .scrolled */
.nav-wrapper::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-border);
  transform: scaleX(0);
  transform-origin: center;
}

.nav-wrapper.scrolled {
  background: rgba(6, 13, 24, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-wrapper.scrolled::after {
  animation: navLinePulse 1.4s ease forwards;
}

@keyframes navLinePulse {
  0%   { transform: scaleX(0);   background: rgba(255, 255, 255, 0.85); }
  35%  { transform: scaleX(1);   background: rgba(255, 255, 255, 0.6);  }
  55%  { transform: scaleX(1);   background: rgba(255, 255, 255, 0.35); }
  100% { transform: scaleX(1);   background: var(--color-border);       }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

/* Brand */
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  color: var(--color-text);
  transition: opacity var(--ease-fast);
}

.nav__brand:hover { opacity: 0.8; }

.nav__brand:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* Nav logo */
.nav__logo {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

/* Desktop nav links */
.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav__link {
  display: block;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--ease-fast), background var(--ease-fast);
}

.nav__link:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
}

.nav__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--ease-fast);
}

.nav__hamburger:hover  { background: rgba(255, 255, 255, 0.06); }
.nav__hamburger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--ease-med), opacity var(--ease-fast);
  transform-origin: center;
}

/* Hamburger → X transition */
.nav__hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-wrapper.nav-open .nav__links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  position: absolute;
  top: var(--nav-height);
  inset-inline: 0;
  background: rgba(6, 13, 24, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  padding: 12px var(--container-pad) 20px;
}

.nav-wrapper.nav-open .nav__link {
  font-size: 1rem;
  padding: 12px 14px;
}


/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Animated gradient mesh — evokes precision / technology */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 60% at 12% 58%, rgba(45, 127, 249, 0.11) 0%, transparent 62%),
    radial-gradient(ellipse 48% 48% at 84% 18%, rgba(45, 127, 249, 0.07) 0%, transparent 56%),
    radial-gradient(ellipse 36% 36% at 62% 82%, rgba(45, 127, 249, 0.05) 0%, transparent 52%);
  animation: meshFloat 20s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes meshFloat {
  0%   { transform: translate(0,     0)   scale(1);    }
  30%  { transform: translate(-16px, 12px) scale(1.02); }
  65%  { transform: translate(14px, -14px) scale(0.98); }
  100% { transform: translate(-6px,  8px) scale(1.01); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-block: 80px 100px;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
  animation-delay: 0ms;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: 24px;
  animation-delay: 120ms;
}

.hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.13rem);
  color: var(--color-text-secondary);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.8;
  margin-bottom: 40px;
  animation-delay: 240ms;
}

.hero__cta { animation-delay: 360ms; }

/* Scroll indicator */
.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  animation-delay: 500ms;
}

.hero__scroll-line {
  display: block;
  width: 4px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 4px 4px 0 0;
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-text);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 100%;  }
  100% { top: 100%;  }
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    background var(--ease-fast),
    transform var(--ease-fast),
    box-shadow var(--ease-fast);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 127, 249, 0.32);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 500;
  transition:
    color var(--ease-fast),
    border-color var(--ease-fast),
    background var(--ease-fast),
    transform var(--ease-fast);
}

.btn-secondary:hover {
  color: var(--color-text);
  border-color: rgba(45, 127, 249, 0.42);
  background: rgba(45, 127, 249, 0.06);
  transform: translateY(-2px);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}


/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 52px;
  text-align: center;
}


/* ==========================================================================
   SERVICES
   ========================================================================== */

.services { background: var(--color-bg); }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 28px 28px;
  text-align: center;
  transition:
    transform var(--ease-med),
    border-color var(--ease-med),
    box-shadow var(--ease-med);
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-opacity: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    300px circle at var(--glow-x) var(--glow-y),
    rgba(45, 127, 249, 0.12) 0%,
    transparent 70%
  );
  opacity: var(--glow-opacity);
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
  box-shadow:
    0 12px 36px rgba(45, 127, 249, 0.09),
    0 0 0 1px rgba(45, 127, 249, 0.08);
}

.service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--color-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 18px;
  margin-inline: auto;
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 10px;
}

.service-card__description {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* Staggered entrance for service cards */
.services__grid .service-card:nth-child(1) { animation-delay: 0ms;   }
.services__grid .service-card:nth-child(2) { animation-delay: 70ms;  }
.services__grid .service-card:nth-child(3) { animation-delay: 140ms; }
.services__grid .service-card:nth-child(4) { animation-delay: 210ms; }
.services__grid .service-card:nth-child(5) { animation-delay: 280ms; }
.services__grid .service-card:nth-child(6) { animation-delay: 350ms; }


/* ==========================================================================
   TECH STACK
   ========================================================================== */

.tech-stack { background: var(--color-surface); }

.tech-stack__rows {
  display: flex;
  flex-direction: column;
}

.tech-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding-block: 22px;
  border-bottom: 1px solid var(--color-border);
}

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

/* Stagger tech rows */
.tech-stack__rows .tech-row:nth-child(1) { animation-delay: 0ms;   }
.tech-stack__rows .tech-row:nth-child(2) { animation-delay: 50ms;  }
.tech-stack__rows .tech-row:nth-child(3) { animation-delay: 100ms; }
.tech-stack__rows .tech-row:nth-child(4) { animation-delay: 150ms; }
.tech-stack__rows .tech-row:nth-child(5) { animation-delay: 200ms; }
.tech-stack__rows .tech-row:nth-child(6) { animation-delay: 250ms; }
.tech-stack__rows .tech-row:nth-child(7) { animation-delay: 300ms; }

.tech-row__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  min-width: 120px;
  padding-top: 3px;
  white-space: nowrap;
}

.tech-row__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.badge {
  display: inline-block;
  padding: 5px 13px;
  background: rgba(45, 127, 249, 0.07);
  border: 1px solid rgba(45, 127, 249, 0.15);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.77rem;
  color: var(--color-text-secondary);
  white-space: nowrap;
  transition:
    color var(--ease-fast),
    border-color var(--ease-fast),
    background var(--ease-fast);
}

.badge:hover {
  color: var(--color-text);
  border-color: rgba(45, 127, 249, 0.42);
  background: rgba(45, 127, 249, 0.13);
}


/* ==========================================================================
   ABOUT
   ========================================================================== */

.about { background: var(--color-bg); }

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: center;
}

.about__content .section__heading { margin-bottom: 24px; }

.about__lead {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 20px;
}

.about__content p {
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.about__content p:last-child { margin-bottom: 0; }

.about__location {
  color: var(--color-text) !important;
  font-weight: 500;
  margin-top: 4px;
}

/* Stats */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 12px;
  text-align: center;
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}


/* ==========================================================================
   CONNECT
   ========================================================================== */

.connect {
  background: var(--color-surface);
  text-align: center;
}

.connect__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.connect__content { max-width: 560px; }

.connect__content .section__heading {
  margin-bottom: 16px;
  text-align: center;
}

.connect__message {
  font-size: 1.08rem;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.connect__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding-block: 28px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.footer__copy {
  font-size: 0.84rem;
  color: var(--color-text-secondary);
}

.footer__links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer__icon-link {
  color: var(--color-text-secondary);
  transition: color var(--ease-fast), opacity var(--ease-fast);
}

.footer__icon-link:hover { color: var(--color-text); }

.footer__icon-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer__text-link {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  transition: color var(--ease-fast);
}

.footer__text-link:hover { color: var(--color-text); }

.footer__text-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer__tagline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--color-text-secondary);
  opacity: 0.55;
}


/* ==========================================================================
   PRIVACY PAGE
   ========================================================================== */

.privacy-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 40px;
  margin-bottom: 12px;
}

.privacy-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 24px;
  margin-bottom: 8px;
}

.privacy-content p {
  color: var(--color-text-secondary);
  margin-bottom: 14px;
  line-height: 1.8;
}

.privacy-content ul {
  color: var(--color-text-secondary);
  margin-bottom: 14px;
  padding-left: 24px;
  list-style: disc;
  line-height: 1.8;
}

.privacy-content a {
  color: var(--color-accent);
  transition: color var(--ease-fast);
}

.privacy-content a:hover {
  color: var(--color-accent-hover);
}

.privacy-content code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: rgba(45, 127, 249, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--color-text);
}


/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

/* Initial state — invisible and shifted down */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
}

/* Triggered by Intersection Observer */
.fade-in.is-visible {
  animation: fadeInUp 0.65s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respect user preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero::before {
    animation: none;
  }

  .nav-wrapper.scrolled::after {
    animation: none;
    transform: scaleX(1);
  }

  .hero__scroll-line::after {
    animation: none;
  }

  .section::after {
    animation: none;
  }

  .cursor-glow {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }
}


/* ==========================================================================
   RESPONSIVE — TABLET (640px+)
   ========================================================================== */

@media (min-width: 640px) {
  :root {
    --container-pad: 40px;
  }

  .hero__scroll { display: none; }

  /* Reset mobile centering */
  .hero__content        { text-align: left; }
  .hero__subheadline    { margin-inline: 0; }
  .section__heading     { text-align: left; }
  .service-card         { text-align: left; }
  .service-card__icon   { margin-inline: 0; }
  .about__inner         { text-align: left; }
  .tech-row             { align-items: flex-start; text-align: left; }
  .tech-row__badges     { justify-content: flex-start; }

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

  .about__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }

  .about__content { flex: 1; }

  .about__stats {
    flex: 0 0 210px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat { padding: 24px 20px; }

  .footer__inner {
    flex-direction: row;
    text-align: left;
  }

  .footer__brand   { flex: 1; }
  .footer__links   { flex: 1; justify-content: center; }
  .footer__tagline { flex: 1; text-align: right; }
}


/* ==========================================================================
   RESPONSIVE — DESKTOP (1024px+)
   ========================================================================== */

@media (min-width: 1024px) {
  :root {
    --section-padding: 120px;
    --container-pad:   56px;
  }

  /* Hide hamburger, show nav links */
  .nav__hamburger { display: none; }
  .nav__links     { display: flex; }

  .services__grid { grid-template-columns: repeat(3, 1fr); }

  /* Tech stack: label left, badges right */
  .tech-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    padding-block: 24px;
  }

  .about__stats {
    flex: 0 0 230px;
  }
}
