/* ========================================
   WEBRIFT — Complete Stylesheet
   ======================================== */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: none; text-size-adjust: none; overflow-x: hidden; }
body { min-height: 100vh; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
img, picture, video, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { overflow-wrap: break-word; font-weight: inherit; }
p { overflow-wrap: break-word; }

/* === VARIABLES === */
:root {
  /* Palette */
  --black:       #050508;
  --black-rich:  #0A0A0E;
  --white:       #EDEDED;
  --white-soft:  #C8C8CC;
  --blue:        #0055FF;
  --blue-bright: #2979FF;
  --blue-glow:   #4D94FF;
  --blue-muted:  #1A3A6E;

  --gray-950: #0C0C10;
  --gray-900: #121216;
  --gray-800: #1A1A1F;
  --gray-700: #26262C;
  --gray-600: #36363E;
  --gray-500: #4E4E58;
  --gray-400: #72727E;
  --gray-300: #9E9EAA;
  --gray-200: #C0C0CA;

  /* Semantic */
  --bg:          var(--black);
  --bg-elevated: var(--gray-950);
  --bg-card:     var(--gray-900);
  --text:        var(--white);
  --text-dim:    var(--gray-300);
  --text-muted:  var(--gray-500);
  --accent:      var(--blue);
  --accent-hover:var(--blue-bright);

  --border-hair:   1px solid rgba(255,255,255,0.05);
  --border-subtle: 1px solid rgba(255,255,255,0.08);
  --border-medium: 1px solid rgba(255,255,255,0.14);

  /* Fonts */
  --font-display: 'Syne', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'Space Mono', monospace;

  /* Type Scale */
  --text-xs:   clamp(0.6875rem, 0.65rem + 0.19vw, 0.8125rem);
  --text-sm:   clamp(0.8125rem, 0.76rem + 0.26vw, 0.9375rem);
  --text-base: clamp(0.9375rem, 0.88rem + 0.31vw, 1.0625rem);
  --text-lg:   clamp(1.0625rem, 0.96rem + 0.52vw, 1.3125rem);
  --text-xl:   clamp(1.375rem, 1.15rem + 1.13vw, 1.875rem);
  --text-2xl:  clamp(1.75rem, 1.35rem + 2vw, 2.75rem);
  --text-3xl:  clamp(2.25rem, 1.6rem + 3.25vw, 4rem);
  --text-4xl:  clamp(2.75rem, 1.8rem + 4.75vw, 5.5rem);
  --text-hero: clamp(2.75rem, 1.2rem + 7.75vw, 7.5rem);

  /* Spacing */
  --space-section: clamp(6rem, 4rem + 6vw, 12rem);
  --container-max: 1320px;
  --container-pad: clamp(1.25rem, 1rem + 2vw, 3rem);

  /* Effects */
  --shadow-brutal:    4px 4px 0 var(--blue);
  --shadow-brutal-sm: 3px 3px 0 var(--blue);
  --ease-out-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --noise-opacity:    0.03;
}


/* === BASE === */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  cursor: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: var(--noise-opacity);
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

::selection { background: var(--blue); color: var(--white); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray-700); }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
p { line-height: 1.65; color: var(--text-dim); }
a { transition: color 150ms ease; }
a:hover { color: var(--accent); }

.gs-reveal { visibility: hidden; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

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

.section__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.section__number {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section__line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  transform-origin: left;
}

.section__intro {
  font-size: var(--text-lg);
  max-width: 680px;
  margin-bottom: 4rem;
  color: var(--text-dim);
}


/* === LOADER === */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.loader__text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--gray-500);
}

.loader__bar {
  width: 120px;
  height: 2px;
  background: var(--gray-800);
  position: relative;
  overflow: hidden;
}

.loader__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}


/* === CURSOR === */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 300ms var(--ease-out-expo),
              height 300ms var(--ease-out-expo),
              background 300ms var(--ease-out-expo),
              border-color 300ms var(--ease-out-expo);
  mix-blend-mode: difference;
  will-change: transform;
}

.cursor.is-active {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.06);
  border-color: var(--blue-bright);
}

.cursor.is-hidden { opacity: 0; }

@media (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
  body { cursor: auto; }
}


/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 500ms ease, backdrop-filter 500ms ease;
}

.nav.is-scrolled {
  background: rgba(5,5,8,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  height: 1.1em;
  background: var(--accent);
  border-radius: 3px;
  flex-shrink: 0;
  font-size: 1em;
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  cursor: none;
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 300ms var(--ease-out-expo);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  cursor: none;
  transition: background 200ms ease, color 200ms ease;
}

.nav__cta:hover {
  background: var(--accent);
  color: var(--white);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  cursor: none;
  position: relative;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 300ms var(--ease-out-expo), opacity 150ms ease;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(5,5,8,0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms var(--ease-out-expo), visibility 500ms;
  z-index: 999;
}

.nav__mobile.is-open { opacity: 1; visibility: visible; }

.nav__mobile a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 150ms ease;
}

.nav__mobile a:hover { color: var(--white); }

.nav__mobile-cta {
  font-family: var(--font-mono) !important;
  font-size: var(--text-sm) !important;
  color: var(--accent) !important;
  letter-spacing: 0.08em;
  padding-top: 1rem;
  border-top: var(--border-subtle);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}


/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 2rem;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: all 300ms var(--ease-out-expo);
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border: 1.5px solid var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  box-shadow: var(--shadow-brutal);
}

.btn--ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1.5px solid rgba(255,255,255,0.15);
}

.btn--ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn--large { padding: 1.15rem 2.5rem; font-size: var(--text-base); }

.btn__arrow {
  display: inline-block;
  transition: transform 300ms var(--ease-out-expo);
}

.btn:hover .btn__arrow { transform: translateX(4px); }


/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(0,85,255,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__content { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border: var(--border-subtle);
  margin-bottom: 2.5rem;
  background: rgba(255,255,255,0.02);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero__heading {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.hero__line { display: block; }

.hero__heading em {
  font-style: normal;
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero__sub {
  max-width: 480px;
  font-size: var(--text-lg);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* === SERVICES === */
.services { border-top: var(--border-hair); }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

@media (min-width: 768px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  position: relative;
  cursor: none;
  transition: background 400ms ease;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease-out-expo);
}

.service-card:hover {
  background: rgba(0,85,255,0.03);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__number {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray-600);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.5rem;
}

.service-card__icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-card__tags li {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
}


/* === MARQUEE === */
.marquee-section {
  border-top: var(--border-hair);
  border-bottom: var(--border-hair);
  padding: 2rem 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  will-change: transform;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--gray-700);
  flex-shrink: 0;
  transition: color 150ms ease, -webkit-text-stroke-color 150ms ease;
}

.marquee__item:hover {
  color: var(--white);
  -webkit-text-stroke-color: var(--white);
}

.marquee__sep {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--blue-muted);
  flex-shrink: 0;
  user-select: none;
}


/* === PROCESS === */
.process { border-top: var(--border-hair); }

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: var(--border-subtle);
  align-items: start;
}

.process__step:first-child {
  border-top: var(--border-subtle);
}

.process__step-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1;
  min-width: 80px;
  transition: color 400ms ease;
}

.process__step:hover .process__step-num {
  color: var(--accent);
}

.process__step-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process__step-content p {
  font-size: var(--text-base);
  max-width: 600px;
}


/* === ABOUT === */
.about { border-top: var(--border-hair); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 0.4fr 0.6fr;
    gap: 5rem;
  }
}

.about__photo-wrap {
  position: relative;
  max-width: 380px;
}

.about__photo {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  position: relative;
  z-index: 2;
}

.about__photo-frame {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--accent);
  transform: translate(10px, 10px);
  z-index: 1;
}

.about__name {
  font-size: var(--text-2xl);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.about__role {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 2rem;
}

.about__text p {
  font-size: var(--text-lg);
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.about__text p strong {
  color: var(--white);
  font-weight: 500;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: var(--border-subtle);
  margin-top: 1rem;
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
}

.stat__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.4rem;
}


/* === CTA BANNER === */
.cta-banner { border-top: var(--border-hair); }

.cta-banner__inner {
  background: var(--gray-900);
  border: var(--border-subtle);
  padding: clamp(2.5rem, 2rem + 3vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,85,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__heading {
  font-size: var(--text-3xl);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cta-banner__text {
  max-width: 460px;
  font-size: var(--text-base);
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.cta-banner__note {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.06em;
}


/* === CONTACT === */
.contact { border-top: var(--border-hair); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1fr; }
}

.contact__info-item { margin-bottom: 2rem; }

.contact__info-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.contact__info-value {
  font-size: var(--text-lg);
  color: var(--white);
}

.contact__info-value a {
  position: relative;
  cursor: none;
}

.contact__info-value a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-out-expo);
}

.contact__info-value a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact__socials {
  display: flex;
  flex-direction: column;
}

.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: var(--border-hair);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-dim);
  cursor: none;
  transition: color 150ms ease, padding-left 300ms var(--ease-out-expo);
}

.contact__social-link:hover {
  color: var(--white);
  padding-left: 1rem;
}

.contact__social-arrow {
  font-size: var(--text-lg);
  transition: transform 300ms var(--ease-out-expo);
}

.contact__social-link:hover .contact__social-arrow {
  transform: translateX(8px);
}


/* === FOOTER === */
.footer {
  border-top: var(--border-hair);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer__logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  height: 1.1em;
  background: var(--accent);
  border-radius: 3px;
  vertical-align: middle;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer__top {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  cursor: none;
  transition: color 150ms ease;
}

.footer__top:hover { color: var(--white); }


/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero__heading {
    font-size: clamp(1.9rem, 0.8rem + 5.5vw, 3.5rem);
  }

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

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

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

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cta-banner__heading {
    font-size: var(--text-2xl);
  }

  .cta-banner__actions {
    align-items: center;
    width: 100%;
  }

  .cta-banner__inner .btn {
    max-width: 100%;
  }
}

@media (max-width: 599px) {
  .about__photo-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

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

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

  .process__step-num {
    font-size: var(--text-2xl);
    min-width: auto;
  }

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

@media (max-width: 374px) {
  .marquee__item { font-size: var(--text-2xl); }
  .marquee__sep { font-size: var(--text-2xl); }
}
