/* ============================================================
   Abdul Maaieh — Bento
   Modular tile system · water-bubble entrance · live palettes
   ============================================================ */

/* ---------- palettes ---------- */
:root, [data-pal="cobalt"] { --bg:#f4f5f2; --bg2:#eceee9; --ink:#14161c; --soft:#545863; --faint:#9295a1; --line:rgba(20,22,28,0.12); --accent:#1f54e0; --tile:#ffffff; --portbg:#d6dce8; --onac:#fff; color-scheme: light; }
[data-pal="ivory"]    { --bg:#f5f2ea; --bg2:#ece7dd; --ink:#201c16; --soft:#5d564b; --faint:#978f81; --line:rgba(32,28,22,0.13); --accent:#9c6a30; --tile:#fbf9f3; --portbg:#d8cdb9; --onac:#fff; color-scheme: light; }
[data-pal="vermilion"]{ --bg:#f4f1ea; --bg2:#ebe6dd; --ink:#1c1a18; --soft:#5a544c; --faint:#94897d; --line:rgba(28,26,24,0.13); --accent:#d8482e; --tile:#fbf9f3; --portbg:#e3cfc4; --onac:#fff; color-scheme: light; }
[data-pal="forest"]   { --bg:#eef0ea; --bg2:#e4e6dd; --ink:#14140f; --soft:#52544a; --faint:#8a8b7d; --line:rgba(20,20,15,0.13); --accent:#2f6f4e; --tile:#f7f8f2; --portbg:#cdd6c8; --onac:#fff; color-scheme: light; }
[data-pal="midnight"] { --bg:#0d0d14; --bg2:#14141d; --ink:#f1f1f7; --soft:#b6b5c4; --faint:#75747f; --line:rgba(255,255,255,0.12); --accent:#8d7cf3; --tile:#17171f; --portbg:#21212c; --onac:#13111f; color-scheme: dark; }
[data-pal="espresso"] { --bg:#16120d; --bg2:#1f1912; --ink:#f2ebdd; --soft:#b9af9d; --faint:#877e6e; --line:rgba(242,235,221,0.13); --accent:#d9a35a; --tile:#211b14; --portbg:#2a2218; --onac:#18140e; color-scheme: dark; }
[data-pal="slate"]    { --bg:#0a0e11; --bg2:#10161d; --ink:#eef2f5; --soft:#9aa6b0; --faint:#697680; --line:rgba(255,255,255,0.11); --accent:#46cabc; --tile:#111820; --portbg:#1c2730; --onac:#08110f; color-scheme: dark; }

:root {
  --font-display: "Newsreader", Georgia, serif;
  --font-sans: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --maxw: 1280px;
  --pad: clamp(18px, 4vw, 56px);
  --r: 22px;
  --gap: clamp(12px, 1.2vw, 18px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* , *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-sans); background: var(--bg); color: var(--ink);
  -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: hidden;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
::selection { background: var(--accent); color: var(--onac); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input { font: inherit; color: inherit; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(48px, 7vw, 104px); }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: clamp(20px, 3vw, 36px); flex-wrap: wrap; }
.sec-head h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -0.02em; line-height: 1; }
.sec-head h2 em { font-style: italic; color: var(--accent); }
.sec-kick { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }

/* ---------- bento grid + tile ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); grid-auto-rows: minmax(146px, auto); grid-auto-flow: row dense; }
.c2 { grid-column: span 2; } .c3 { grid-column: span 3; } .c4 { grid-column: span 4; }
.r2 { grid-row: span 2; } .r3 { grid-row: span 3; }
@media (max-width: 920px) { .bento { grid-template-columns: repeat(2, 1fr); } .c3, .c4 { grid-column: span 2; } .r3 { grid-row: span 2; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .c2, .c3, .c4 { grid-column: auto; } .r2, .r3 { grid-row: auto; } }

.tile {
  position: relative; overflow: hidden;
  background: var(--tile); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(20px, 1.9vw, 30px);
  display: flex; flex-direction: column;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tile.link { cursor: pointer; }
.tile.link:hover { border-color: color-mix(in oklab, var(--accent) 55%, var(--line)); transform: translateY(-3px); box-shadow: 0 24px 50px -34px rgba(0,0,0,0.4); }

/* water-bubble entrance */
.tile { opacity: 0; }
.anim-on .tile.in {
  animation: waterBubble var(--bdur, 1.05s) cubic-bezier(0.33, 0.7, 0.45, 1.28) both,
             bubbleMorph var(--bdur, 1.05s) cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--bd, 0s);
  will-change: transform, border-radius;
  transform-origin: 50% 100%;
}
/* the bubble swells up from a small, round droplet and squash-settles into place;
   --jiggle (default 1) scales the wobble/squash intensity */
@keyframes waterBubble {
  0%   { opacity: 0; transform: translateY(46px) scale(0.6); }
  26%  { opacity: 1; }
  60%  { transform: translateY(calc(-4px * var(--jiggle, 1)))
                    scaleX(calc(1 + 0.015 * var(--jiggle, 1)))
                    scaleY(calc(1 - 0.035 * var(--jiggle, 1))); }
  80%  { transform: translateY(0)
                    scaleX(calc(1 - 0.008 * var(--jiggle, 1)))
                    scaleY(calc(1 + 0.012 * var(--jiggle, 1))); }
  100% { opacity: 1; transform: translateY(0) scaleX(1) scaleY(1); }
}
/* corners stay generously round the whole rise, then relax into the final radius —
   never passing through sharp/square corners */
@keyframes bubbleMorph {
  0%   { border-radius: 50%; }
  45%  { border-radius: 46% 48% 47% 49% / 49% 47% 48% 46%; }
  100% { border-radius: var(--r); }
}
.tile-inner { opacity: 1; display: flex; flex-direction: column; flex: 1; min-width: 0; }
.anim-on .tile.in .tile-inner {
  animation: contentWarp var(--bdur, 1.05s) cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--bd, 0s) + 0.1s);
  transform-origin: 50% 60%;
  will-change: transform, filter;
}
/* content refracts up through the droplet — blurred + stretched, then settles sharp;
   --warp (default 1) scales the refraction/stretch intensity */
@keyframes contentWarp {
  0%   { opacity: 0;
         transform: scaleX(calc(1 - 0.16 * var(--warp, 1)))
                    scaleY(calc(1 + 0.34 * var(--warp, 1)))
                    translateY(calc(14px * var(--warp, 1)));
         filter: blur(calc(9px * var(--warp, 1))); }
  30%  { opacity: 1; }
  56%  { transform: scaleX(calc(1 + 0.03 * var(--warp, 1)))
                    scaleY(calc(1 - 0.06 * var(--warp, 1)))
                    translateY(calc(-1px * var(--warp, 1)));
         filter: blur(calc(1.5px * var(--warp, 1))); }
  78%  { transform: scaleX(calc(1 - 0.01 * var(--warp, 1)))
                    scaleY(calc(1 + 0.012 * var(--warp, 1)))
                    translateY(0);
         filter: blur(calc(0.3px * var(--warp, 1))); }
  100% { opacity: 1; transform: none; filter: none; }
}
/* fallback: no-anim / reduced motion shows tiles immediately */
.tile.shown, .anim-off .tile { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .tile { opacity: 1 !important; animation: none !important; }
  .tile-inner { animation: none !important; }
}

/* tile content helpers */
.t-lab { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.t-lab.ac { color: var(--accent); }
.t-title { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; line-height: 1.04; }
.spacer { flex: 1; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.tag { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.02em; color: var(--soft); border: 1px solid var(--line); border-radius: 100px; padding: 5px 11px; white-space: nowrap; }
.dot-ac { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }

/* ---------- NAV ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 90; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px var(--pad); transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease); border-bottom: 1px solid transparent; }
.nav.scrolled { background: color-mix(in oklab, var(--bg) 80%, transparent); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding-block: 10px; }
.brand { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: -0.01em; white-space: nowrap; }
.brand .d { color: var(--accent); }
.nav-r { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); }
.nav-links { display: flex; gap: clamp(12px, 1.6vw, 22px); }
.nav-links a { font-size: 0.86rem; color: var(--soft); transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
@media (max-width: 760px) { .nav-links { display: none; } }
.ask-btn { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.82rem; font-weight: 600; background: var(--accent); color: var(--onac); padding: 0.62em 1.05em; border-radius: 100px; white-space: nowrap; transition: transform 0.3s var(--ease); }
.ask-btn:hover { transform: translateY(-1px); }
.ask-btn .b { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- HERO ---------- */
.hero { padding-top: clamp(90px, 12vh, 124px); padding-bottom: clamp(20px, 4vw, 40px); }
.hero .bento { grid-auto-rows: minmax(150px, auto); }
.t-intro { justify-content: space-between; }
.t-intro h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.1rem, 4.2vw, 3.7rem); line-height: 1.05; letter-spacing: -0.025em; margin-top: 14px; text-wrap: balance; }
.t-intro h1 em { font-style: italic; color: var(--accent); }
.t-port { padding: 0; }
.t-port .portrait-img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; object-position: 50% 38%; display: block; }
/* the photo rises as one solid bubble with its tile — skip the content-warp
   fade, which would otherwise reveal the tile backing behind the image */
.anim-on .tile.t-port.in .tile-inner { animation: none; }
.t-stat .big { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 0.95; letter-spacing: -0.02em; }
.t-ask { background: var(--accent); color: var(--onac); justify-content: space-between; }
.t-ask .arrow { font-family: var(--font-display); font-size: 1.8rem; }
.t-now { justify-content: space-between; }
.t-now .v { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.1; margin-top: 8px; }
.t-skills .t-skills-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.t-skills .see-all { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--soft); border: 1px solid var(--line); border-radius: 100px; padding: 5px 11px; display: inline-flex; align-items: center; gap: 5px; transition: color .15s, border-color .15s; }
.t-skills .see-all:hover { color: var(--accent); border-color: var(--accent); }
.t-skills .skill-groups { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.t-skills .skill-group { display: flex; flex-direction: row; align-items: center; gap: 14px; }
.t-skills .sg-lab { flex: none; width: 64px; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }
.t-skills .sg-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.t-skills .skill-group .tag { font-size: 0.76rem; padding: 6px 12px; color: var(--ink); }

/* ---------- AI ASSISTANT ---------- */
.ai-tile { padding: 0; }
.ai-bar { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.ai-bar .dots { display: flex; gap: 6px; }
.ai-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); display: block; }
.ai-bar .dots i:first-child { background: var(--accent); }
.ai-bar .title { font-family: var(--font-mono); font-size: 0.72rem; color: var(--soft); letter-spacing: 0.04em; }
.ai-bar .meta { margin-left: auto; font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); display: inline-flex; align-items: center; gap: 0.5em; }
.ai-bar .meta::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #43b96a; }
.ai-body { padding: clamp(22px, 3vw, 38px); }
.ai-transcript { display: flex; flex-direction: column; gap: 16px; height: clamp(260px, 40vh, 380px); overflow-y: auto; padding-right: 28px; scroll-behavior: smooth; overscroll-behavior: contain; scrollbar-gutter: stable; }
.ai-msg { max-width: 82%; }
.ai-msg .who { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.ai-msg .bubble { font-size: 1.06rem; line-height: 1.6; }
.ai-msg.user { align-self: flex-end; text-align: right; }
.ai-msg.user .bubble { font-family: var(--font-mono); font-size: 0.9rem; color: var(--accent); }
.ai-msg.bot .bubble { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.4; border-left: 2px solid var(--accent); padding-left: 16px; }
.ai-msg.bot .bubble.thinking { color: var(--faint); font-style: italic; }
.ai-caret { display: inline-block; width: 8px; height: 1.05em; background: var(--accent); vertical-align: -2px; margin-left: 2px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.ai-chips { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.ai-chip { font-family: var(--font-mono); font-size: 0.74rem; color: var(--soft); border: 1px solid var(--line); border-radius: 100px; padding: 8px 13px; transition: border-color 0.3s, color 0.3s; }
.ai-chip:hover { border-color: var(--accent); color: var(--ink); }
.ai-chip::before { content: "↳ "; color: var(--accent); }
.ai-input { margin-top: 18px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 100px; padding: 6px 6px 6px 18px; transition: border-color 0.3s; }
.ai-input:focus-within { border-color: var(--accent); }
.ai-input .p { font-family: var(--font-mono); color: var(--accent); }
.ai-input input { flex: 1; border: none; background: none; outline: none; font-family: var(--font-mono); font-size: 0.9rem; }
.ai-input input::placeholder { color: var(--faint); }
.ai-send { width: 38px; height: 38px; flex: none; border-radius: 50%; background: var(--accent); color: var(--onac); display: grid; place-items: center; transition: transform 0.3s; }
.ai-send:hover { transform: scale(1.07); }
.ai-send:disabled { opacity: 0.45; }
.ai-note { margin-top: 12px; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.04em; color: var(--faint); text-align: center; }

/* ---------- WORK ---------- */
.t-work { justify-content: space-between; }
.t-work .t-title { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
.t-work.feat { }
.t-work .media { margin: 16px -2px 0; border-radius: 12px; overflow: hidden; background: var(--portbg); aspect-ratio: 16/9; }
.t-work .media image-slot { width: 100%; height: 100%; }
.t-work .role { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin-top: 6px; }
.t-work p { color: var(--soft); font-size: 0.98rem; line-height: 1.6; margin-top: 12px; }
.proj-link { position: absolute; top: clamp(20px, 1.9vw, 30px); right: clamp(20px, 1.9vw, 30px); z-index: 2; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--soft); border: 1px solid var(--line); border-radius: 100px; padding: 6px 13px; display: inline-flex; align-items: center; gap: 6px; background: var(--tile); transition: color 0.15s, border-color 0.15s; }
.proj-link:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- EXPERIENCE ---------- */
.t-exp { justify-content: space-between; }
.t-exp .when { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--faint); }
.t-exp .when .now { color: var(--accent); }
.t-exp .role { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 2.3vw, 1.9rem); line-height: 1.08; letter-spacing: -0.01em; margin-top: 14px; }
.t-exp .org { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.04em; color: var(--accent); margin-top: 4px; }
.t-exp p { color: var(--soft); font-size: 0.95rem; line-height: 1.58; margin-top: 12px; }

/* ---------- timeline · alternating (How I got here) ---------- */
.tl { position: relative; max-width: 920px; margin: 0 auto; padding: 8px 0; }
.tl .spine { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); background: var(--line); }

.tl .row { position: relative; display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 26px; }
.tl .row:last-child { margin-bottom: 0; }

.tl .card {
  background: var(--tile); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px 22px; max-width: 360px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tl .row.l .card { grid-column: 1; justify-self: end; margin-right: 34px; text-align: right; }
.tl .row.r .card { grid-column: 2; justify-self: start; margin-left: 34px; }
.tl .card:hover { border-color: color-mix(in oklab, var(--accent) 50%, var(--line)); transform: translateY(-3px); box-shadow: 0 24px 50px -34px rgba(0,0,0,0.4); }

.tl .node {
  position: absolute; left: 50%; top: 24px; width: 14px; height: 14px; border-radius: 50%;
  transform: translateX(-50%); background: var(--bg); border: 2px solid var(--faint); z-index: 1;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tl .row.now .node { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 14%, transparent); }
.tl .row.now .node { animation: tlPulse 2.6s var(--ease) infinite; }
@keyframes tlPulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 14%, transparent); }
  50%      { box-shadow: 0 0 0 8px color-mix(in oklab, var(--accent) 4%, transparent); }
}

/* current roles read as a touch more present — subtle border lift only */
.tl .row.now .card { border-color: color-mix(in oklab, var(--accent) 28%, var(--line)); }

/* a small breathing "live" dot next to the Now label */
.tl .row.now .when-t .acc { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.tl .row.l.now .when-t .acc { flex-direction: row-reverse; }
.tl .row.now .when-t .acc::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: tlDot 2.6s var(--ease) infinite;
}
@keyframes tlDot {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 45%, transparent); }
  50%      { box-shadow: 0 0 0 5px color-mix(in oklab, var(--accent) 0%, transparent); }
}
@media (prefers-reduced-motion: reduce) { .tl .row.now .when-t .acc::before { animation: none; } }

/* text */
.tl .when-t { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--faint); }
.tl .acc { color: var(--accent); }
.tl .role-t { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.08; font-size: clamp(1.2rem, 1.8vw, 1.45rem); margin-top: 6px; }
.tl .org-t { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--accent); margin-top: 4px; }
.tl .desc-t { color: var(--soft); font-size: 0.88rem; line-height: 1.58; text-wrap: pretty; margin-top: 10px; }

/* entrance — cards glide in from their side, nodes pop */
.tl .card, .tl .node { transition:
  opacity 0.6s var(--ease) var(--tl-d, 0s),
  transform 0.6s var(--ease) var(--tl-d, 0s),
  border-color 0.4s var(--ease),
  box-shadow 0.4s var(--ease); }
.anim-on .tl .row .card { opacity: 0; }
.anim-on .tl .row.l .card { transform: translateX(-24px); }
.anim-on .tl .row.r .card { transform: translateX(24px); }
.anim-on .tl .row .node { opacity: 0; transform: translateX(-50%) scale(0); }
.anim-on .tl .row.in .card { opacity: 1; transform: none; }
.anim-on .tl .row.in .node { opacity: 1; transform: translateX(-50%) scale(1); }

/* collapse to a single left rail on narrow screens */
@media (max-width: 720px) {
  .tl { max-width: 100%; }
  .tl .spine { left: 7px; }
  .tl .row { grid-template-columns: 1fr; }
  .tl .node { left: 7px; }
  .tl .row.l .card, .tl .row.r .card {
    grid-column: 1; justify-self: stretch; text-align: left;
    margin: 0 0 0 34px; max-width: none;
  }
  .anim-on .tl .row.l .card, .anim-on .tl .row.r .card { transform: translateX(24px); }
  .anim-on .tl .row.in .card { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .tl .row.now .node { animation: none; }
  .anim-on .tl .row .card, .anim-on .tl .row .node { opacity: 1; }
  .anim-on .tl .row .card { transform: none; }
  .anim-on .tl .row .node { transform: translateX(-50%); }
}

/* ---------- SKILLS ---------- */
.t-skill h3 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.t-skill ul { list-style: none; display: grid; gap: 9px; }
.t-skill li { font-size: 0.98rem; color: var(--soft); display: flex; align-items: baseline; gap: 9px; }
.t-skill li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex: none; transform: translateY(-3px); }
.t-skill li b { color: var(--ink); font-weight: 600; }

/* ---------- CONTACT ---------- */
.t-cta { justify-content: center; align-items: flex-start; }
.t-cta h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 0.95; letter-spacing: -0.025em; }
.t-cta h2 em { font-style: italic; color: var(--accent); }
.t-cta p { color: var(--soft); margin-top: 14px; max-width: 36ch; }
.t-link { justify-content: space-between; }
.t-link .v { font-family: var(--font-display); font-size: 1.4rem; margin-top: 10px; word-break: break-word; }
.t-link:hover .v { color: var(--accent); }

.footer { padding: 26px var(--pad); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.04em; color: var(--faint); }
