/* =================================================================
   GREYCOMET TECHNOLOGIES — DESIGN TOKENS
================================================================= */

:root {
  /* Color */
  --bg-void: #0A0B0E;
  --bg-panel: #12141A;
  --bg-elevated: #1A1D25;
  --bg-elevated-2: #20242E;
  --steel: #9AA3B2;
  --steel-dim: #6B7280;
  --steel-faint: #4A4F5C;
  --paper: #EDEFF3;
  --paper-dim: rgba(237, 239, 243, 0.7);
  --ion: #5B7FFF;
  --ion-dim: rgba(91, 127, 255, 0.14);
  --ion-glow: rgba(91, 127, 255, 0.45);
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.14);

  /* Type */
  --font-display: 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;
  --space-8: 9rem;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  background: var(--bg-void);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Ambient field texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(91, 127, 255, 0.10), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(91, 127, 255, 0.05), transparent);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

section { position: relative; z-index: 1; }

/* =================================================================
   TYPOGRAPHY
================================================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--paper);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ion);
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: var(--space-2);
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ion);
  box-shadow: 0 0 8px var(--ion-glow);
  flex-shrink: 0;
}

.display-1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 700;
}

.display-2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 700;
}

.display-3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--paper-dim);
  font-weight: 400;
  line-height: 1.6;
  max-width: 640px;
}

.body-text {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.7;
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--steel-dim);
  letter-spacing: 0.04em;
}

/* =================================================================
   NAV
================================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-2) 0;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 11, 14, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--hairline);
  padding: 0.85rem 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--paper);
  white-space: nowrap;
}

.brand-mark {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}

.brand-mark svg { width: 100%; height: 100%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--steel);
  transition: color 0.2s var(--ease);
  position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--paper); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ion);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 22px;
  z-index: 110;
}
.nav-toggle span {
  height: 1.5px;
  width: 100%;
  background: var(--paper);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 14, 0.98);
  backdrop-filter: blur(20px);
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-size: 1.6rem; font-weight: 600; color: var(--paper); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn-primary {
  background: var(--paper);
  color: var(--bg-void);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237, 239, 243, 0.18);
}

.btn-accent {
  background: var(--ion);
  color: #fff;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--ion-glow);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--hairline-strong);
  color: var(--paper);
}
.btn-ghost:hover {
  border-color: var(--ion);
  background: var(--ion-dim);
}

.btn-sm { padding: 0.65rem 1.3rem; font-size: 0.85rem; }

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.85) brightness(0.8);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,11,14,0.55) 0%, rgba(10,11,14,0.78) 55%, var(--bg-void) 100%),
    linear-gradient(90deg, var(--bg-void) 0%, rgba(10,11,14,0.3) 35%, rgba(10,11,14,0.3) 65%, var(--bg-void) 100%);
}

#comet-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-content .display-1 {
  margin-bottom: var(--space-3);
}

.hero-content .lede {
  margin-bottom: var(--space-5);
}

.hero-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.hero-meta {
  position: relative;
  z-index: 2;
  margin-top: var(--space-7);
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.hero-meta-item .mono-label { display: block; margin-bottom: 0.3rem; }
.hero-meta-item .meta-value { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; }

/* Scroll comet track (signature element) */
.scroll-track {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  height: 240px;
  width: 1px;
  background: var(--hairline);
  z-index: 90;
  display: none;
}

.scroll-comet {
  position: absolute;
  left: 50%;
  top: 0;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--ion);
  box-shadow: 0 0 10px 2px var(--ion-glow);
}
.scroll-comet::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 1px;
  height: 40px;
  transform: translateX(-50%);
  background: linear-gradient(to top, var(--ion), transparent);
  opacity: 0.6;
}

@media (min-width: 1280px) {
  .scroll-track { display: block; }
}

/* =================================================================
   SECTION SPACING
================================================================= */

.section { padding: var(--space-8) 0; }
.section-sm { padding: var(--space-6) 0; }
.section-header { max-width: 640px; margin-bottom: var(--space-6); }

.section-tight { padding-top: var(--space-6); }

.divider {
  height: 1px;
  background: var(--hairline);
  width: 100%;
}

/* =================================================================
   TRUST / FEATURE GRID
================================================================= */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.feature-cell {
  background: var(--bg-panel);
  padding: var(--space-4);
  transition: background 0.3s var(--ease);
}
.feature-cell:hover { background: var(--bg-elevated); }

.feature-icon {
  width: 38px;
  height: 38px;
  margin-bottom: var(--space-3);
  color: var(--ion);
}
.feature-icon svg { width: 100%; height: 100%; }

.feature-cell h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-cell p {
  color: var(--steel);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.service-card {
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-panel));
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(91,127,255,0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--hairline-strong);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.5);
}
.service-card:hover::before { opacity: 1; }

.service-card .mono-label {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-3);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-2);
  position: relative;
  z-index: 1;
}

.service-card ul {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-card ul li {
  font-size: 0.88rem;
  color: var(--steel);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.service-card ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--steel-faint);
  flex-shrink: 0;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   ABOUT PREVIEW / SPLIT SECTIONS
================================================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  position: relative;
  aspect-ratio: 4/3.2;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.92);
}
.split-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(91,127,255,0.18), transparent 50%);
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* =================================================================
   PROCESS
================================================================= */

.process-list {
  border-top: 1px solid var(--hairline);
}

.process-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: var(--space-4);
  align-items: baseline;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left 0.3s var(--ease);
}

.process-row:hover { padding-left: var(--space-2); }

.process-num {
  font-family: var(--font-mono);
  color: var(--ion);
  font-size: 0.95rem;
}

.process-row h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

.process-row p { color: var(--steel); max-width: 480px; }

@media (max-width: 700px) {
  .process-row { grid-template-columns: 50px 1fr; }
  .process-row p { grid-column: 2; }
}

/* =================================================================
   CTA BAND
================================================================= */

.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline-strong);
  background: radial-gradient(ellipse 120% 100% at 50% 120%, rgba(91,127,255,0.18), var(--bg-panel) 60%);
  padding: var(--space-7) var(--space-5);
  text-align: center;
  overflow: hidden;
}

.cta-band h2 { margin-bottom: var(--space-3); }

.cta-band .btn { margin-top: var(--space-2); }

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

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: var(--space-6) 0 var(--space-4);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-6);
}

.footer-brand .brand { margin-bottom: var(--space-2); }
.footer-brand p { color: var(--steel); font-size: 0.9rem; max-width: 280px; margin-bottom: var(--space-3); }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-dim);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.footer-col a, .footer-col span {
  display: block;
  color: var(--steel);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--paper); }

.social-row {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.social-row a:hover { border-color: var(--ion); background: var(--ion-dim); }
.social-row svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid var(--hairline);
  font-size: 0.82rem;
  color: var(--steel-dim);
  flex-wrap: wrap;
  gap: var(--space-2);
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* =================================================================
   PAGE HERO (non-home)
================================================================= */

.page-hero {
  padding: 10rem 0 var(--space-6);
  position: relative;
}

.page-hero .eyebrow { justify-content: flex-start; }

.page-hero .lede { margin-top: var(--space-3); }

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.value-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  background: var(--bg-panel);
}
.value-card .mono-label { color: var(--ion); margin-bottom: var(--space-2); display: block; }
.value-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--steel); font-size: 0.88rem; }

@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

.timeline {
  position: relative;
  padding-left: var(--space-5);
  border-left: 1px solid var(--hairline);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-5);
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-5) - 4.5px);
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ion);
  box-shadow: 0 0 0 4px var(--bg-void), 0 0 12px var(--ion-glow);
}

.timeline-item .mono-label { margin-bottom: 0.4rem; }
.timeline-item h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.timeline-item p { color: var(--steel); max-width: 540px; }

/* =================================================================
   SERVICES PAGE — DETAIL BLOCKS
================================================================= */

.service-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--hairline);
}
.service-detail:first-child { padding-top: 0; }
.service-detail:last-child { border-bottom: none; }

.service-detail-head .mono-label { display: block; margin-bottom: var(--space-2); }
.service-detail-head h3 { font-size: 1.6rem; }

.service-detail-body p { color: var(--steel); margin-bottom: var(--space-3); max-width: 600px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  border: 1px solid var(--hairline-strong);
  color: var(--steel);
}

@media (max-width: 760px) {
  .service-detail { grid-template-columns: 1fr; gap: var(--space-2); }
}

/* =================================================================
   CONTACT PAGE
================================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-6);
}

.contact-info-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  background: var(--bg-panel);
}

.contact-line {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--hairline);
}
.contact-line:last-child { border-bottom: none; }
.contact-line .mono-label { width: 90px; flex-shrink: 0; }
.contact-line a, .contact-line span { color: var(--paper); font-size: 0.95rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-field input, .form-field select, .form-field textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--ion);
  background: var(--bg-elevated-2);
}
.form-field textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   FAQ PAGE
================================================================= */

.faq-list { border-top: 1px solid var(--hairline); }

.faq-item { border-bottom: 1px solid var(--hairline); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--paper);
}

.faq-q .plus {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--steel);
  top: 50%; left: 50%;
}
.faq-q .plus::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-q .plus::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); transition: opacity 0.3s var(--ease); }

.faq-item.open .plus { transform: rotate(45deg); }
.faq-item.open .plus::after { opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a-inner {
  padding-bottom: var(--space-3);
  color: var(--steel);
  max-width: 640px;
  line-height: 1.7;
}

/* =================================================================
   SCROLL REVEAL
================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================================
   RESPONSIVE NAV
================================================================= */

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
}

@media (max-width: 760px) {
  .split { gap: var(--space-3); }
  .hero-meta { gap: var(--space-4); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
