/* =============================================
   WOUTER SLOTBOOM — HIGH-END STYLESHEET
   ============================================= */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #06060c;
  --bg2:      #0d0d18;
  --bg3:      #12121f;
  --border:   rgba(255,255,255,.07);
  --accent:   #00e5a0;
  --accent2:  #0ea5e9;
  --accent3:  #8b5cf6;
  --text:     #e8e8f0;
  --muted:    #6b6b80;
  --card:     rgba(255,255,255,.03);
  --card-hov: rgba(255,255,255,.055);
  --inter:    'Inter', sans-serif;
  --mono:     'JetBrains Mono', monospace;
  --r:        12px;
  --r-lg:     20px;
  --tr:       0.4s cubic-bezier(.16,1,.3,1);
}

/* ── Light Mode ───────────────────────────────── */
html.light {
  --bg:       #f4f4f8;
  --bg2:      #eaeaf0;
  --bg3:      #e0e0ea;
  --border:   rgba(0,0,0,.08);
  --text:     #0f0f1a;
  --muted:    #6b6b80;
  --card:     rgba(0,0,0,.03);
  --card-hov: rgba(0,0,0,.055);
}
html.light .hero-gradient::before {
  background: radial-gradient(circle, rgba(0,180,120,.1) 0%, transparent 60%);
}
html.light .hero-gradient::after {
  background: radial-gradient(circle, rgba(14,120,200,.08) 0%, transparent 60%);
}
html.light #navbar.scrolled {
  background: rgba(244,244,248,.9);
}
html.light .hero-marquee {
  background: rgba(255,255,255,.6);
}
html.light .speaking-quote blockquote {
  background: #fff;
}
html.light .form-group input,
html.light .form-group select,
html.light .form-group textarea {
  background: #fff;
  color: var(--text);
}
html.light .form-group select {
  background-color: #fff;
}
html.light footer {
  background: var(--bg2);
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }


/* ── Layout ───────────────────────────────────── */
.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

section {
  padding-block: 6rem;
}

/* ── Labels ───────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--accent);
}

/* ── Section Headers ──────────────────────────── */
.section-header {
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
}

/* ── Accent Text ──────────────────────────────── */
.text-accent { color: var(--accent); }

/* ── Scroll Reveal ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--tr), transform .7s var(--tr);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(6,6,12,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--inter);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  transition: color .2s;
}
.logo:hover { color: var(--accent); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-num {
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--accent);
  opacity: .7;
}

/* Nav right group */
.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Lang toggle */
.lang-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .2rem .55rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  cursor: pointer;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: border-color .2s;
}
.lang-toggle:hover { border-color: var(--accent); }
.lang-opt { color: var(--muted); transition: color .2s; line-height: 1; }
.lang-opt.active { color: var(--accent); }
.lang-sep { color: var(--border); line-height: 1; }

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--muted);
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--card-hov); color: var(--text); border-color: rgba(255,255,255,.15); }
.theme-toggle .icon-moon { display: none; }
html.light .theme-toggle .icon-sun  { display: none; }
html.light .theme-toggle .icon-moon { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: var(--tr);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-menu .mm-link {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -.04em;
  transition: color .2s;
}
.mobile-menu .mm-link:hover { color: var(--accent); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

/* Noise texture overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  opacity: .5;
  z-index: 0;
}

/* Gradient blobs */
.hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-gradient::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,229,160,.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: blob1 12s ease-in-out infinite alternate;
}
.hero-gradient::after {
  content: '';
  position: absolute;
  bottom: 0; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,.07) 0%, transparent 60%);
  border-radius: 50%;
  animation: blob2 16s ease-in-out infinite alternate;
}
@keyframes blob1 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.1); }
}
@keyframes blob2 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-40px, -60px) scale(1.15); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
  padding-top: 10rem;
  padding-bottom: 8rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  padding: .4rem .9rem;
  border: 1px solid rgba(0,229,160,.2);
  border-radius: 100px;
  background: rgba(0,229,160,.04);
}
.tag-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

h1.hero-name {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.05em;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.hero-name .line { display: block; }
.hero-name .accent-line {
  color: var(--accent);
}
html.light .hero-name .accent-line {
  color: #006644;
}

/* Hero staggered char entrance */
.hero-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) skewX(-8deg);
  animation: char-in .6s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes char-in {
  to { opacity: 1; transform: translateY(0) skewX(0deg); }
}
.hero-name .line { overflow: hidden; display: block; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-sub em { color: var(--text); font-style: normal; }

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  background: var(--accent);
  color: #06060c;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  border-radius: 100px;
  transition: transform .2s, box-shadow .2s;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,229,160,.3);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-weight: 500;
  font-size: .9rem;
  color: var(--muted);
  transition: color .2s, border-color .2s;
}
.btn-hero-ghost:hover { color: var(--text); border-color: rgba(255,255,255,.2); }
.arrow-anim { display: inline-block; transition: transform .2s; }
.btn-hero-ghost:hover .arrow-anim { transform: translateX(4px); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 5rem;
  left: max(1.5rem, calc((100% - 1200px) / 2));
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 1;
}
.scroll-track {
  width: 1px; height: 48px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.scroll-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  background: var(--accent);
  height: 50%;
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* Hero marquee */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 44px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
  z-index: 1;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--muted);
}
.marquee-track .dot { color: var(--accent); opacity: .5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
#about {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: start;
}

/* Avatar card */
.avatar-card {
  position: relative;
  width: 180px;
  margin-bottom: 2rem;
}
.avatar-glow { display: none; }
.avatar-inner {
  position: relative;
  width: 180px; height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.02em;
  background: var(--bg2);
  border: 2px solid var(--border);
}
.avatar-badge {
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 500;
  white-space: nowrap;
  padding: .35rem .85rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.about-meta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.about-meta-item {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
}
.about-meta-label {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  transition: background .2s, color .2s, border-color .2s;
  width: fit-content;
}
.social-pill:hover {
  background: var(--card-hov);
  color: var(--text);
  border-color: rgba(255,255,255,.15);
}

.about-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.about-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.about-body {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1rem;
}
.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.skill-cloud span {
  font-size: .75rem;
  font-weight: 500;
  padding: .3rem .8rem;
  background: rgba(0,229,160,.06);
  border: 1px solid rgba(0,229,160,.15);
  border-radius: 100px;
  color: var(--accent);
  letter-spacing: .02em;
}

/* ══════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════ */
#stats {
  padding-block: 0;
  background: var(--bg);
}
.stats-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg2);
}
.stat-block {
  padding: 3rem 2.5rem;
  text-align: center;
}
.stat-block > p {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: .5rem;
  max-width: 160px;
  margin-inline: auto;
}
.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-prefix {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-sfx {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  font-family: var(--mono);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* ══════════════════════════════════════════════
   MEDIA / BENTO
   ══════════════════════════════════════════════ */
#media { background: var(--bg); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bento-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: background .2s, border-color .2s, transform .25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.bento-card:hover {
  background: var(--card-hov);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-3px);
}
.bento-hero {
  grid-column: span 2;
}
.bento-full {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(0,229,160,.04) 0%, rgba(14,165,233,.04) 100%);
  border-color: rgba(0,229,160,.15);
}
.bento-hero:hover {
  border-color: rgba(0,229,160,.3);
}
.bento-hero h3 {
  font-size: 1.4rem;
}

.bento-tag {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.outlet-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  border-radius: 3px;
}
.outlet-name {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}
.outlet-year {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--muted);
}
.tag-viral {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  background: rgba(0,229,160,.1);
  border: 1px solid rgba(0,229,160,.25);
  border-radius: 100px;
  color: var(--accent);
}

.bento-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.bento-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.bento-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.tags span {
  font-size: .65rem;
  font-weight: 500;
  padding: .2rem .6rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
}
.read-more {
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: opacity .2s;
}
.bento-card:hover .read-more { opacity: .7; }

/* ══════════════════════════════════════════════
   SPEAKING
   ══════════════════════════════════════════════ */
#speaking {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.speaking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
}

.speaking-row {
  display: flex;
  gap: 1.75rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--border);
}
.speaking-row:first-child { padding-top: 0; }
.speaking-row:last-child { border-bottom: none; padding-bottom: 0; }
.speaking-num {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  opacity: .6;
  min-width: 28px;
  padding-top: .15rem;
}
.speaking-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.speaking-content p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.7;
}
.speaking-content strong { color: var(--text); font-weight: 600; }

.speaking-quote {
  position: sticky;
  top: 7rem;
}
.speaking-quote blockquote {
  padding: 2.5rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-lg);
}
.speaking-quote blockquote p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.speaking-quote cite {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--muted);
  font-style: normal;
}

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
#contact { background: var(--bg); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.contact-left > p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.ci-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(0,229,160,.08);
  border: 1px solid rgba(0,229,160,.15);
  border-radius: 8px;
  color: var(--accent);
}
.contact-item strong {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .25rem;
}
.contact-item p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .75rem 1rem;
  color: var(--text);
  font-family: var(--inter);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: .6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,229,160,.4);
  box-shadow: 0 0 0 3px rgba(0,229,160,.08);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--bg2);
  padding-right: 2.5rem;
}
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 130px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  align-self: flex-start;
  padding: .9rem 2.25rem;
  background: var(--accent);
  color: #06060c;
  font-family: var(--inter);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,229,160,.3);
}
.btn-submit:disabled {
  opacity: .6;
  cursor: default;
  transform: none;
  box-shadow: none;
}
.btn-icon { transition: transform .2s; }
.btn-submit:hover .btn-icon { transform: translateX(4px); }

.form-note {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--accent);
  min-height: 1.2em;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  background: var(--bg2);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer-brand { max-width: 200px; }
.footer-logo {
  font-family: var(--mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: .5rem;
}
.footer-brand p {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer-nav a {
  font-size: .82rem;
  color: var(--muted);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--text); }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer-social a {
  font-size: .82rem;
  color: var(--muted);
  transition: color .2s;
}
.footer-social a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .78rem;
  color: var(--muted);
}
.footer-mono {
  font-family: var(--mono);
  color: rgba(0,229,160,.4) !important;
  font-size: .72rem !important;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
  .avatar-card { margin-bottom: 0; }
  .about-socials { flex-direction: row; flex-wrap: wrap; }
  .speaking-layout { grid-template-columns: 1fr; gap: 3rem; }
  .speaking-quote { position: static; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-hero { grid-column: span 2; }
  .bento-full { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding-block: 4rem; }
  h1.hero-name { font-size: clamp(2.8rem, 14vw, 6rem); }
  .hero-inner { padding-top: 8rem; padding-bottom: 6rem; }
  .hero-sub { font-size: .95rem; }
  .hero-cta { flex-wrap: wrap; gap: .75rem; }
  .hero-scroll { display: none; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .stat-block { padding: 2rem 1.5rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-hero, .bento-full { grid-column: span 1; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .nav-inner { gap: .5rem; }
  .logo { font-size: .85rem; }
  .lang-toggle { padding: .18rem .4rem; font-size: .65rem; }
  .hero-cta { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { justify-content: center; width: 100%; }
  .stats-strip { grid-template-columns: 1fr; }
  .section-header h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .speaking-row { gap: 1rem; }
  .contact-layout { gap: 2rem; }
  .bento-card { padding: 1.25rem; }
}
