/* ============================================================
   RADIXEN — style.css
   Color palette: FCF9F9 / 59BBD7 / 1D5B94 / 2888C2 / 171B33
   ============================================================ */

/* --- Variables & Reset ------------------------------------ */
:root {
  --white:       #FCF9F9;
  --cyan:        #59BBD7;
  --dark-blue:   #1D5B94;
  --mid-blue:    #2888C2;
  --navy:        #171B33;
  --navy-card:   #1c2240;
  --navy-border: rgba(40, 136, 194, 0.15);
  --ff-display:  'Exo 2', sans-serif;
  --ff-mono:     'JetBrains Mono', monospace;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-display);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Scrollbar -------------------------------------------- */
::-webkit-scrollbar          { width: 4px; }
::-webkit-scrollbar-track    { background: var(--navy); }
::-webkit-scrollbar-thumb    { background: var(--dark-blue); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--mid-blue); }

/* --- Text utilities --------------------------------------- */
.text-gradient {
  background: linear-gradient(110deg, var(--white) 20%, var(--cyan) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   INTRO OVERLAY
   ============================================================ */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

#intro-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  /* initial: opacity 0, scale 0.88 — GSAP */
}

#intro-logo {
  width: 56px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(89,187,215,0.45));
}

#intro-wordmark {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(110deg, var(--white) 30%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#intro-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--dark-blue), var(--cyan));
  /* width animated by GSAP */
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(23, 27, 51, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--navy-border);
}

.nav-brand { display: flex; align-items: center; }

.nav-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  /* initial state set by GSAP */
}

.nav-links {
  display: flex;
  gap: 2.75rem;
  list-style: none;
}

.nav-links a {
  color: rgba(252, 249, 249, 0.6);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s var(--ease-out);
}

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

/* Hamburger toggle button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.25s ease;
  transform-origin: center;
}

nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  /* Override generic section constraints — needs full viewport width */
  max-width: 100%;
  padding: 0;
  margin: 0;
  width: 100%;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Fade the canvas out smoothly into the next section */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, var(--navy) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(29, 91, 148, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 90%, rgba(40, 136, 194, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 10% 70%, rgba(89, 187, 215, 0.07) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: 0 1.5rem;
}

.hero-logo {
  width: 72px;
  height: auto;
  object-fit: contain;
  /* initial: opacity 0, scale 0.8 — set by GSAP */
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  /* initial: opacity 0 — set by GSAP */
}

.hero-title {
  font-size: clamp(3rem, 9.5vw, 8.5rem);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.025em;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.03em;
  white-space: nowrap;
}

.letter-wrap {
  display: inline-block;
  overflow: hidden;
  line-height: 1.05;
}

.letter {
  display: inline-block;
  /* initial: translateY(110%) — set by GSAP */
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 400;
  color: rgba(252, 249, 249, 0.5);
  max-width: 460px;
  line-height: 1.75;
  /* initial: opacity 0, y 20 — set by GSAP */
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.4rem;
  /* initial: opacity 0, y 15 — set by GSAP */
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.85rem;
  background: linear-gradient(135deg, var(--mid-blue), var(--dark-blue));
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--ff-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary svg {
  width: 15px; height: 15px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(40, 136, 194, 0.35);
}

.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.85rem;
  background: transparent;
  color: rgba(252, 249, 249, 0.65);
  border: 1px solid rgba(252, 249, 249, 0.18);
  border-radius: 6px;
  font-family: var(--ff-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--white);
  background: rgba(89, 187, 215, 0.07);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 3;
  /* initial: opacity 0 — set by GSAP */
}

.scroll-indicator span {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(252, 249, 249, 0.55);
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(89, 187, 215, 0.9), transparent);
  animation: scrollPulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.5) translateY(-10px); }
  50%       { opacity: 1;    transform: scaleY(1)   translateY(0px); }
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
section {
  padding: 9rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.1rem;
  display: block;
}

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.025rem;
  color: rgba(252, 249, 249, 0.5);
  max-width: 560px;
  margin-bottom: 4rem;
  line-height: 1.75;
}

/* ============================================================
   WORK SECTION
   ============================================================ */
#work { padding-top: 7rem; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.work-card {
  background: rgba(28, 34, 64, 0.65);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  /* initial: opacity 0, y 40 — set by GSAP */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dark-blue), var(--cyan), var(--mid-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}

.work-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% -20%, rgba(40,136,194,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(40, 136, 194, 0.35);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(89,187,215,0.08);
}

.work-card:hover::before { transform: scaleX(1); }
.work-card:hover::after  { opacity: 1; }

.card-icon {
  width: 46px;
  height: 46px;
  background: rgba(40, 136, 194, 0.1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  transition: background var(--transition), transform var(--transition);
}

.work-card:hover .card-icon {
  background: rgba(40, 136, 194, 0.2);
  transform: scale(1.1);
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.86rem;
  color: rgba(252, 249, 249, 0.48);
  line-height: 1.7;
}

.card-tag {
  display: inline-block;
  margin-top: 1.4rem;
  padding: 0.22rem 0.7rem;
  background: rgba(89, 187, 215, 0.09);
  border: 1px solid rgba(89, 187, 215, 0.18);
  border-radius: 100px;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(89, 187, 215, 0.8);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { position: relative; }

#about::before {
  content: '';
  position: absolute;
  top: 0; left: -10%; right: -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-border), transparent);
}

.about-inner {
  max-width: 720px;
}

.about-text .section-label,
.about-text .section-title {
  /* Rely on GSAP for initial state */
}

.about-p {
  font-size: 1.05rem;
  color: rgba(252, 249, 249, 0.65);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  /* initial: opacity 0, y 20 — set by GSAP */
}

.about-p strong { color: var(--white); font-weight: 700; }

/* Disclaimer */
.disclaimer-bar {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 2.5rem;
  padding: 1.1rem 1.4rem;
  background: rgba(29, 91, 148, 0.1);
  border: 1px solid rgba(40, 136, 194, 0.22);
  border-radius: 10px;
  /* initial: opacity 0, y 20 — set by GSAP */
}

.disclaimer-icon {
  font-style: normal;
  color: var(--cyan);
  font-size: 0.85rem;
  margin-top: 0.08rem;
  flex-shrink: 0;
  opacity: 0.8;
}

.disclaimer-text {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: rgba(252, 249, 249, 0.4);
  line-height: 1.6;
}

.disclaimer-text strong {
  color: rgba(252, 249, 249, 0.6);
  font-weight: 500;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  overflow: hidden;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  background: rgba(28, 34, 64, 0.5);
  text-align: center;
  transition: background var(--transition);
  /* initial: opacity 0, y 20 — set by GSAP */
}

.about-stat:hover { background: rgba(40, 136, 194, 0.08); }

.about-stat:nth-child(1) { border-bottom: 1px solid var(--navy-border); border-right: 1px solid var(--navy-border); }
.about-stat:nth-child(2) { border-bottom: 1px solid var(--navy-border); }
.about-stat:nth-child(3) { border-right: 1px solid var(--navy-border); }

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--cyan), var(--mid-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.6rem;
}

.stat-label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(252, 249, 249, 0.35);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  position: relative;
  padding-top: 7rem;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0; left: -10%; right: -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-border), transparent);
}

.contact-wrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Flow */
.contact-flow {
  margin-top: 2.75rem;
  min-height: 200px;
  position: relative;
}

.flow-step {
  display: none;
}

.flow-step.active {
  display: block;
}

/* Step 0: trigger button */
.cta-big {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.15rem 2.75rem;
  background: linear-gradient(135deg, var(--mid-blue) 0%, var(--dark-blue) 100%);
  border: none;
  border-radius: 10px;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
  box-shadow: 0 4px 28px rgba(40, 136, 194, 0.3);
  letter-spacing: -0.01em;
}

.cta-big svg {
  width: 18px; height: 18px;
  transition: transform 0.3s ease;
}

.cta-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(40, 136, 194, 0.45);
}

.cta-big:hover svg { transform: translateX(5px); }

/* Step 1: choice */
.flow-heading {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.flow-sub {
  font-size: 0.875rem;
  color: rgba(252, 249, 249, 0.45);
  margin-bottom: 1.85rem;
}

.choice-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}

.choice-btn {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 1.4rem;
  background: rgba(28, 34, 64, 0.7);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--ff-display);
  color: var(--white);
  text-align: left;
  width: 100%;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.choice-btn:hover {
  background: rgba(40, 136, 194, 0.1);
  border-color: rgba(40, 136, 194, 0.4);
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.choice-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(40, 136, 194, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.choice-btn:hover .choice-icon { background: rgba(40, 136, 194, 0.22); }

.choice-label {
  font-size: 0.925rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.choice-desc {
  font-size: 0.775rem;
  color: rgba(252, 249, 249, 0.4);
  line-height: 1.45;
}

/* Step 2: result */
.result-icon {
  font-size: 2.75rem;
  display: block;
  margin-bottom: 1.1rem;
}

.result-heading {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.result-sub {
  font-size: 0.875rem;
  color: rgba(252, 249, 249, 0.5);
  max-width: 420px;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
}

.email-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  background: rgba(28, 34, 64, 0.8);
  border: 1px solid rgba(40, 136, 194, 0.25);
  border-radius: 10px;
  padding: 1.15rem 1.6rem;
  margin-bottom: 1.4rem;
}

.email-address {
  font-family: var(--ff-mono);
  font-size: 0.95rem;
  color: var(--cyan);
  letter-spacing: 0.04em;
}

.copy-btn {
  background: rgba(40, 136, 194, 0.12);
  border: 1px solid rgba(40, 136, 194, 0.28);
  border-radius: 6px;
  padding: 0.35rem 0.7rem;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--cyan);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.copy-btn:hover         { background: rgba(40, 136, 194, 0.22); }
.copy-btn.copied        { background: rgba(89,187,215,0.18); border-color: var(--cyan); color: var(--white); }

/* Flow back */
.flow-back {
  background: transparent;
  border: none;
  color: rgba(252, 249, 249, 0.35);
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.flow-back:hover { color: rgba(252, 249, 249, 0.7); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--navy-border);
  padding: 2.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity var(--transition);
}

.footer-logo:hover { opacity: 1; }

.footer-copy {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  color: rgba(252, 249, 249, 0.28);
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  color: rgba(252, 249, 249, 0.3);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--cyan); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  nav        { padding: 1.1rem 1.5rem; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(23, 27, 51, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 205;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.35s var(--ease-out);
  }

  nav.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
  }

  section    { padding: 6rem 1.5rem; }
  #work      { padding-top: 5rem; }
  #contact   { padding-top: 5rem; }

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

  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer-links { gap: 1.5rem; }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3rem, 14vw, 4.5rem); }

  .email-display {
    flex-direction: column;
    gap: 0.7rem;
  }

  .copy-btn { width: 100%; justify-content: center; text-align: center; }
}

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

  .scroll-line { animation: none; opacity: 0.5; }
}
