:root {
  --bg: #0b0f19;
  --bg-alt: #10162a;
  --surface: #151b2e;
  --text: #e8ebf5;
  --text-dim: #9aa3c0;
  --accent: #6c5ce7;
  --accent-2: #00d4ff;
  --card-bg: #f5f6fa;
  --card-ink: #1c2030;
  --radius: 16px;
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  background: radial-gradient(circle at 20% 0%, #1a2140 0%, var(--bg) 45%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated background blobs */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  will-change: transform;
}

.blob-1 {
  width: 420px; height: 420px;
  top: -120px; left: -100px;
  background: var(--accent);
  animation: blobFloat1 22s ease-in-out infinite;
}

.blob-2 {
  width: 380px; height: 380px;
  top: 40%; right: -140px;
  background: var(--accent-2);
  animation: blobFloat2 26s ease-in-out infinite;
}

.blob-3 {
  width: 320px; height: 320px;
  bottom: -120px; left: 30%;
  background: #ff6b9d;
  animation: blobFloat3 24s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 80px) scale(1.15); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-70px, -50px) scale(1.1); }
}

@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -60px) scale(1.2); }
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-ring {
  width: 48px; height: 48px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent-2);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Cursor glow */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: transform;
}

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

/* Hero stagger entrance */
.hero-stagger {
  opacity: 0;
  transform: translateY(24px);
  animation: heroRise 0.8s ease forwards;
  animation-delay: var(--d, 0s);
}

@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

/* Magnetic buttons */
.magnetic { will-change: transform; }

/* Tech marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--bg-alt);
  padding: 18px 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s, transform 0.2s;
}

.tech-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background-color: var(--ic, currentColor);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: filter 0.2s;
}

.marquee-track span:hover {
  opacity: 1;
  color: var(--accent-2);
  transform: translateY(-2px);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Gradient glow border cards */
.glow-card {
  position: relative;
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: conic-gradient(from var(--angle, 0deg), var(--accent), var(--accent-2), #ff6b9d, var(--accent));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  animation: rotateGlow 5s linear infinite;
}

.glow-card:hover::before { opacity: 0.55; }

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateGlow {
  to { --angle: 360deg; }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

h1, h2, h3 { font-family: "Poppins", sans-serif; }

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

ul { list-style: none; }

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 15, 25, 0.55);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(11, 15, 25, 0.85);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
}

.logo span { color: var(--accent-2); }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--text); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 60px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  width: 100%;
  min-height: calc(100vh - 180px);
}

.hero-text {
  align-self: center;
}

.hero-greeting {
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 6px;
  background: linear-gradient(120deg, #fff, #a8b0d6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-role {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 18px;
  min-height: 1.4em;
}

.cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-desc {
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  position: relative;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn:hover::before { left: 130%; }

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(108, 92, 231, 0.5); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
}

.btn-outline:hover { background: rgba(255,255,255,0.08); }

.hero-socials {
  display: flex;
  gap: 14px;
}

.hero-socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--text-dim);
  transition: all 0.2s;
  font-size: 0.85rem;
}

.hero-socials a:hover {
  color: #fff;
  border-color: var(--accent-2);
  transform: translateY(-3px);
}

/* ID Card + Lanyard */
.hero-card-stage {
  position: relative;
  height: 710px;
  margin-top: -120px;
  display: flex;
  justify-content: center;
  perspective: 900px;
}

.lanyard {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  pointer-events: none;
}

.lanyard-strap {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 150px;
  margin-left: -9px;
  transform-origin: top center;
  overflow: visible;
}

.lanyard-strap-text {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #2b2b2e, #161618 50%, #2b2b2e);
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0,0,0,.35), inset 1px 0 0 rgba(255,255,255,.06), inset -1px 0 0 rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 44px;
  padding: 14px 0;
  overflow: hidden;
}

.lanyard-strap-text span {
  font: 700 .44rem/1 "Poppins", sans-serif;
  letter-spacing: 1px;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
  writing-mode: vertical-lr;
  flex-shrink: 0;
}

.lanyard-hook {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 38%);
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.45));
}

.id-card {
  position: absolute;
  top: 290px;
  width: 292px;
  min-height: 422px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,243,249,.98)),
    var(--card-bg);
  color: var(--card-ink);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 14px;
  padding: 0 22px 14px;
  box-shadow: 0 30px 65px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(16,29,61,.06);
  cursor: grab;
  user-select: none;
  touch-action: none;
  transform-style: preserve-3d;
  transition: box-shadow 0.2s;
}

.id-card.tilting {
  transition: box-shadow 0.2s, transform 0.3s ease;
}

.id-card::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 7px;
  left: 50%;
  width: 45px;
  height: 9px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #17213c;
  box-shadow: inset 0 1px 2px #050815, 0 1px 0 rgba(255,255,255,.45);
}

.id-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 18%, rgba(255,255,255,.32) 43%, transparent 57%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.id-card:hover::after { transform: translateX(120%); }

.id-card.dragging {
  cursor: grabbing;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
  transition: none;
}

.card-security-pattern {
  position: absolute;
  right: -44px;
  bottom: 58px;
  width: 180px;
  height: 180px;
  border: 22px double rgba(76, 91, 189, .035);
  border-radius: 50%;
  box-shadow: 0 0 0 13px rgba(0, 198, 235, .025), inset 0 0 0 13px rgba(0, 198, 235, .025);
}

.id-card-header {
  position: relative;
  margin: 0 -22px 18px;
  min-height: 72px;
  padding: 25px 20px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background: linear-gradient(120deg, #3631a8 0%, #6254e9 52%, #08afd1 100%);
  border-bottom: 4px solid #28d0e8;
}

.id-card-brand { display: flex; align-items: center; gap: 9px; }

.id-card-brand > span:last-child { display: flex; flex-direction: column; line-height: 1.2; }

.id-card-logo {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  font: 800 .67rem/1 "Poppins", sans-serif;
  letter-spacing: -.5px;
}

.id-card-brand strong { font-size: .65rem; letter-spacing: .8px; }
.id-card-brand small { font-size: .43rem; opacity: .78; letter-spacing: .35px; }

.id-card-type {
  padding: 4px 7px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 4px;
  background: rgba(9,20,63,.15);
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.id-card-body {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.id-card-photo {
  width: 84px;
  height: 104px;
  border-radius: 7px;
  overflow: hidden;
  margin: 0;
  border: 3px solid #fff;
  outline: 1px solid #cfd6e4;
  background: #dfe5ef;
  box-shadow: 0 5px 12px rgba(25,34,62,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.id-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.id-card-photo.no-photo::before {
  content: "MC";
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
}

.id-card-name {
  margin: 2px 0 3px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.25px;
}

.id-card-title {
  font-size: 0.66rem;
  color: #565f76;
  font-weight: 600;
  margin-bottom: 9px;
}

.id-card-label,
.id-card-info dt {
  display: block;
  font-size: .46rem;
  line-height: 1.2;
  color: #8a93a8;
  font-weight: 700;
  letter-spacing: .8px;
}

.id-card-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 7px;
  color: #168454;
  background: #dff6ea;
  border-radius: 99px;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .7px;
}

.id-card-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22a66c;
  box-shadow: 0 0 0 2px rgba(34,166,108,.14);
}

.id-card-info {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin: 0 0 18px;
  padding: 14px 0;
  border-top: 1px solid #d8dde8;
  border-bottom: 1px solid #d8dde8;
}

.id-card-info dd {
  margin-top: 3px;
  color: #30384d;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .1px;
}

.id-card-footer {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr 19px;
  align-items: center;
  gap: 10px;
}

.id-card-code {
  width: 54px;
  height: 54px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 2px;
  padding: 4px;
  background: #fff;
  border: 1px solid #cfd5e1;
}

.id-card-code span { background: #182039; }
.id-card-code span:nth-child(3n),
.id-card-code span:nth-child(4n + 1),
.id-card-code span:nth-child(7),
.id-card-code span:nth-child(18) { opacity: 0; }

.id-card-code span:first-child,
.id-card-code span:nth-child(5),
.id-card-code span:nth-child(21),
.id-card-code span:nth-child(25) { opacity: 1; outline: 2px solid #182039; outline-offset: -1px; }

.id-card-verify { min-width: 0; }

.id-card-verify strong {
  display: block;
  width: 92px;
  padding: 2px 0 1px;
  border-bottom: 1px solid #aeb6c7;
  color: #3c4585;
  font: italic 600 .72rem/1.4 cursive;
}

.id-card-verify small {
  display: block;
  margin-top: 4px;
  color: #929aab;
  font-size: .42rem;
  line-height: 1.25;
}

.id-card-nfc {
  color: #5964b7;
  font: 700 .72rem/1 monospace;
  letter-spacing: -4px;
  transform: rotate(90deg);
}

.id-card-hint {
  text-align: center;
  margin-top: 9px;
  font-size: 0.48rem;
  color: #a0a7b7;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down span {
  display: block;
  width: 20px; height: 32px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-down span::after {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  80% { top: 18px; opacity: 0; }
  100% { top: 18px; opacity: 0; }
}

/* Sections */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px;
}

.section.alt {
  max-width: none;
  background: var(--bg-alt);
}

.section.alt > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  margin-top: 10px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-text { color: var(--text-dim); font-size: 1.02rem; }

.about-stats {
  display: grid;
  gap: 20px;
}

.stat {
  background: rgba(21, 27, 46, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: transform 0.25s, border-color 0.25s;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: var(--accent-2);
}

.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-2);
}

.stat-label { color: var(--text-dim); font-size: 0.85rem; }

/* Skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.skill-card {
  background: rgba(21, 27, 46, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.skill-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 32px rgba(108, 92, 231, 0.2);
}

.skill-card h3 { margin-bottom: 14px; font-size: 1.05rem; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tags span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(108, 92, 231, 0.15);
  color: #c7c2ff;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}

.tags span:hover {
  background: rgba(108, 92, 231, 0.28);
  transform: translateY(-2px);
}

.tags span .tech-icon {
  width: 14px;
  height: 14px;
}

.emoji-icon {
  font-size: 0.9rem;
  line-height: 1;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid rgba(255,255,255,0.1);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -39px;
  top: 4px;
  width: 14px; height: 14px;
  background: var(--accent-2);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(0, 212, 255, 0.25); }
}

.timeline-content {
  background: rgba(21, 27, 46, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: transform 0.25s, border-color 0.25s;
}

.timeline-content:hover {
  transform: translateX(4px);
  border-color: var(--accent-2);
}

.timeline-date {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.timeline-content h3 { font-size: 1.1rem; margin-bottom: 8px; }

.timeline-content p { color: var(--text-dim); max-width: 640px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info p { color: var(--text-dim); margin-bottom: 20px; }

.contact-info ul { display: flex; flex-direction: column; gap: 12px; }

.contact-info a:hover { color: var(--accent-2); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form button { align-self: flex-start; border: none; cursor: pointer; }

.footer {
  text-align: center;
  padding: 24px;
  color: var(--text-dim);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card-stage { height: 710px; order: -1; margin-top: 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
