@property --hue {
  syntax: "<number>";
  inherits: false;
  initial-value: 160;
}

/* ── Tokens ── */
:root {
  --bg:       #060a08;
  --surface:  #0b1410;
  --border:   rgba(0,210,130,.06);
  --border-h: rgba(0,210,130,.2);
  --jade:     #00c896;
  --jade-d:   #009966;
  --jade-lt:  #6ee7b7;
  --grad:     linear-gradient(135deg, #009966 0%, #00c896 100%);
  --grad-h:   linear-gradient(135deg, #00b37e 0%, #33d6a0 100%);
  --text:     #f0f5f2;
  --text-2:   #7a9e90;
  --text-3:   #3a5c50;
  --max-w:    1140px;
  --nav-h:    68px;
  --r:        12px;
  --r-lg:     20px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

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

/* ── Loader ── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #020503;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: clip-path .6s cubic-bezier(.77,0,.18,1), opacity .3s .5s;
  clip-path: inset(0 0 0 0);
}
.loader.done {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
}
.loader-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 800;
  letter-spacing: -5px;
  background: linear-gradient(135deg, #fff 40%, #00c896 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: loaderIn .3s cubic-bezier(.22,.61,.36,1) .05s forwards;
}
.loader-name span { -webkit-text-fill-color: var(--jade); }
.loader-bar-wrap {
  width: 120px;
  height: 1px;
  background: rgba(0,200,150,.12);
  border-radius: 1px;
  overflow: hidden;
  opacity: 0;
  animation: loaderIn .3s ease .4s forwards;
}
.loader-bar {
  height: 100%;
  background: var(--jade);
  width: 0%;
  animation: loaderFill .5s cubic-bezier(.4,0,.2,1) .2s forwards;
  box-shadow: 0 0 8px var(--jade);
}
@keyframes loaderIn { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(16px); } }
@keyframes loaderFill { to { width: 100%; } }

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--grad);
  z-index: 9000;
  box-shadow: 0 0 10px var(--jade);
  transition: width .08s linear;
}

/* ── Scroll blur ── */
.scroll-blur {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 90px;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transition: opacity .3s ease;
}

/* ── Canvas ── */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .7;
}

/* ── Nav ── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s, border-color .4s;
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-right: auto;
  letter-spacing: -1px;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .7; }
.dot { color: var(--jade); }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: .8px;
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--grad);
  transition: width .25s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  border: none;
  transition: transform .25s, box-shadow .25s, background .25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .5s;
}
.btn:hover .btn-shine { transform: translateX(100%); }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 28px rgba(0,200,150,.18);
}
.btn-primary:hover {
  box-shadow: 0 0 48px rgba(0,200,150,.38);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(0,200,150,.05);
  color: var(--jade-lt);
  border: 1px solid rgba(0,200,150,.22);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(0,200,150,.1);
  border-color: rgba(0,200,150,.48);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg { padding: .95rem 2.25rem; font-size: 1rem; }

/* ── Gradient text ── */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Section base ── */
section { position: relative; z-index: 1; }
.section { padding: 9rem 0; }
.eyebrow {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--jade);
  margin-bottom: 1rem;
}
.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 3rem;
}

/* ── Reveal ── */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s cubic-bezier(.22,.61,.36,1), transform .5s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 7rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('assets/Farm.jpg');
  background-size: cover;
  background-position: center 50%;
  z-index: -2;
  transform-origin: center;
  filter: blur(3px);
  will-change: transform;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,10,8,.72) 0%, rgba(6,10,8,.52) 40%, rgba(6,10,8,.88) 100%);
}
/* aurora glow layer */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 15% 60%, rgba(0,180,100,.12) 0%, transparent 65%),
    radial-gradient(ellipse 55% 70% at 85% 20%, rgba(0,120,70,.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,80,50,.14) 0%, transparent 50%);
  animation: auroraShift 12s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0%   { opacity: .7; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1.03) translateX(10px); }
  100% { opacity: .8; transform: scale(1.05) translateY(-8px); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
/* Big name */
.hero-name {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(5.5rem, 20vw, 14rem);
  font-weight: 800;
  line-height: .85;
  letter-spacing: -8px;
  margin-bottom: 2.5rem;
  animation: fadeUp .8s cubic-bezier(.22,.61,.36,1) .4s both;
}
.hn-a {
  display: inline-block;
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.9), 0 4px 28px rgba(0,0,0,.6);
  animation: charIn .7s cubic-bezier(.22,.61,.36,1) .4s both;
}
.hn-j {
  display: inline-block;
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.9), 0 4px 28px rgba(0,0,0,.6);
  animation: charIn .7s cubic-bezier(.22,.61,.36,1) .52s both;
}
.hn-dot {
  display: inline-block;
  color: var(--jade);
  -webkit-text-fill-color: var(--jade);
  text-shadow: 0 0 60px rgba(0,200,150,.6), 0 0 120px rgba(0,200,150,.25);
  animation: charIn .7s cubic-bezier(.22,.61,.36,1) .64s both;
}
@keyframes charIn {
  from { opacity: 0; transform: translateY(80px) skewX(-12deg); }
  to   { opacity: 1; transform: translateY(0) skewX(0deg); }
}

.hero-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  font-weight: 500;
  color: var(--jade-lt);
  -webkit-text-fill-color: var(--jade-lt);
  text-shadow: 0 1px 6px rgba(0,0,0,.85), 0 3px 18px rgba(0,0,0,.5);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5em;
  animation: fadeUp .7s ease .75s both;
}
.role-prefix { color: #fff; -webkit-text-fill-color: #fff; }
.typed-text {
  color: var(--jade-lt);
  -webkit-text-fill-color: var(--jade-lt);
  font-weight: 700;
}
.cursor-blink {
  color: var(--jade);
  -webkit-text-fill-color: var(--jade);
  animation: blink .65s step-end infinite;
  margin-left: 1px;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.hero-sub {
  font-size: clamp(.88rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 5px rgba(0,0,0,.8), 0 2px 14px rgba(0,0,0,.45);
  max-width: 420px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
  animation: fadeUp .7s ease .82s both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .7s ease .92s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUpCentered {
  from { opacity: 0; transform: translateX(-50%) translateY(22px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  animation: fadeUpCentered .6s ease 1.2s both;
}
.hero-scroll span {
  font-size: .62rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--text-3);
}
.scroll-track {
  width: 1px;
  height: 52px;
  background: rgba(0,200,150,.12);
  border-radius: 1px;
  overflow: hidden;
}
.scroll-thumb {
  width: 100%;
  height: 45%;
  background: linear-gradient(to bottom, transparent, var(--jade));
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}
.about-left .section-heading { margin-bottom: 1.5rem; }
.about-left > p { color: var(--text-2); font-size: .98rem; line-height: 1.95; }
.about-left > p + p { margin-top: 1.1rem; }
.trait-row { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 2rem; }
.trait {
  padding: .3rem .8rem;
  background: rgba(0,200,150,.055);
  border: 1px solid rgba(0,200,150,.16);
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--jade-lt);
  letter-spacing: .3px;
}

.about-right { display: flex; flex-direction: column; gap: 2rem; }
.photo-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-avatar-wrap { position: relative; flex-shrink: 0; }
.about-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 12%;
  border: 2px solid rgba(0,200,150,.25);
  display: block;
}
.photo-label { display: flex; flex-direction: column; gap: .25rem; }
.photo-label strong { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; }
.photo-label span { font-size: .8rem; color: var(--text-2); }

/* Code window */
.code-window {
  background: #040e09;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 50px 120px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.03),
    inset 0 1px 0 rgba(255,255,255,.05);
}
.code-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.25rem;
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.code-dots { display: flex; gap: .4rem; }
.cd { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f57; } .yellow { background: #febc2e; } .green { background: #28c840; }
.code-file { font-family: 'JetBrains Mono', monospace; font-size: .74rem; color: var(--text-3); margin-left: .2rem; }
.code-body {
  padding: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .85rem;
  line-height: 1.9;
  overflow-x: auto;
  white-space: pre-wrap;
}
.ck { color: #ff79c6; } .cv { color: #f8f8f2; } .co { color: #ff79c6; }
.cb { color: #f8f8f2; } .ckey { color: #50fa7b; } .cs { color: #f1fa8c; } .cp { color: #f8f8f2; }

/* ── Expertise ── */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.xcard {
  background: rgba(255,255,255,.018);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.xcard:hover {
  border-color: rgba(0,200,150,.28);
  box-shadow: 0 30px 80px rgba(0,0,0,.28), 0 0 0 1px rgba(0,200,150,.08), 0 0 60px rgba(0,200,150,.04);
}
/* cursor-following glow */
.xcard-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0,200,150,.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .35s;
  left: var(--gx, 50%);
  top:  var(--gy, 50%);
}
.xcard:hover .xcard-glow { opacity: 1; }
.xcard > *:not(.xcard-glow) { position: relative; z-index: 1; }
.xcard-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(0,200,150,.07);
  border: 1px solid rgba(0,200,150,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--jade);
  transition: all .3s;
}
.xcard:hover .xcard-icon {
  background: rgba(0,200,150,.13);
  border-color: rgba(0,200,150,.28);
  color: var(--jade-lt);
  box-shadow: 0 0 24px rgba(0,200,150,.15);
}
.xcard-icon svg { width: 22px; height: 22px; }
.xcard h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: .55rem;
}
.xcard > p { color: var(--text-2); font-size: .88rem; line-height: 1.8; margin-bottom: 1.25rem; }
.xcard-list { display: flex; flex-direction: column; gap: .3rem; }
.xcard-list li {
  font-size: .8rem;
  color: var(--text-3);
  padding-left: 1.1rem;
  position: relative;
}
.xcard-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--jade);
  font-size: .7rem;
  top: .05em;
}

/* ── Stack / Marquee ── */
.section-stack { overflow: hidden; }
.section-stack .container { margin-bottom: 3.5rem; }
.marquee-wrap { display: flex; flex-direction: column; gap: .85rem; }
.marquee-row {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: .85rem;
  width: max-content;
}
.marquee-l { animation: mLeft  28s linear infinite; }
.marquee-r { animation: mRight 28s linear infinite; }
@keyframes mLeft  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes mRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee-row:hover .marquee-track { animation-play-state: paused; }
.sitem {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1.1rem;
  background: rgba(255,255,255,.032);
  border: 1px solid var(--border);
  border-radius: 8px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background .2s, border-color .2s, transform .2s;
}
.sitem:hover {
  background: rgba(0,200,150,.07);
  border-color: rgba(0,200,150,.22);
  transform: translateY(-2px);
}
.sitem img { width: 18px; height: 18px; object-fit: contain; }
.sitem span { font-size: .82rem; font-weight: 500; color: var(--text-2); }
.ai-spark { color: var(--jade-lt); flex-shrink: 0; }

/* ── Contact ── */
.section-contact {
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.contact-photo {
  position: absolute;
  inset: 0;
  background-image: url('assets/20231005_144631.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(1px);
  z-index: 0;
}
.contact-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,10,8,1) 0%, rgba(6,10,8,.7) 30%, rgba(6,10,8,.82) 100%);
}
.section-contact .container { position: relative; z-index: 1; }
.contact-card {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 5rem 3.5rem;
  background: rgba(255,255,255,.014);
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,200,150,.4), transparent);
}
.contact-card .section-heading { margin-bottom: 1.25rem; }
.contact-sub {
  color: var(--text-2);
  font-size: .95rem;
  line-height: 1.85;
  max-width: 380px;
  margin: 0 auto 2.75rem;
}
.contact-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
#contact .btn-primary { background: linear-gradient(135deg, #00a86b, #00d98f); box-shadow: 0 0 28px rgba(0,200,150,.22); }
#contact .btn-primary:hover { box-shadow: 0 0 52px rgba(0,200,150,.45); }

/* ── Footer ── */
.footer { padding: 2.5rem 0; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.footer-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; }
.footer-tree-link { display: flex; }
.footer-tree { width: 26px; height: 26px; object-fit: contain; filter: invert(1); opacity: .09; transition: opacity .2s; }
.footer-tree-link:hover .footer-tree { opacity: .28; }
.footer-year  { color: var(--text-3); font-size: .78rem; }

/* ── Contact form ── */
.contact-form-wrap {
  max-width: 640px;
  margin: 1.75rem auto 3rem;
  opacity: 0;
  transform: translateY(36px);
  pointer-events: none;
  transition: opacity .55s cubic-bezier(.22,.61,.36,1), transform .55s cubic-bezier(.22,.61,.36,1);
}
.contact-form-wrap.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.contact-form-card {
  background: rgba(255,255,255,.014);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.5rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,200,150,.35), transparent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.form-field label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-2);
}
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,200,150,.1);
  border-radius: 10px;
  padding: .8rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  line-height: 1.5;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field textarea:focus {
  background: rgba(255,255,255,.058);
  border-color: rgba(0,200,150,.38);
  box-shadow: 0 0 0 3px rgba(0,200,150,.07);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-submit { width: 100%; justify-content: center; margin-top: .4rem; }
.form-submit:disabled { opacity: .55; pointer-events: none; }
.form-body { transition: opacity .25s ease; }
.form-body.sent { opacity: 0; pointer-events: none; height: 0; overflow: hidden; }
.form-success {
  text-align: center;
  padding: 2rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .4s .1s ease, transform .4s .1s ease;
}
.form-success.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.form-success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(0,200,150,.1);
  border: 1px solid rgba(0,200,150,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--jade);
}
.form-success h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 600; }
.form-success p { color: var(--text-2); font-size: .88rem; line-height: 1.75; max-width: 320px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-right { order: -1; }
  .expertise-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .code-window { display: none; }
}
@media (max-width: 640px) {
  .contact-card { padding: 3rem 1.75rem; }
  .section { padding: 5.5rem 0; }
  .hero-name { letter-spacing: -4px; }
  .hero-cta { flex-direction: column; align-items: center; }
}
