/* ============================================================
   GOLF ARUNKIJTHAWORNKUL — PORTFOLIO
   style.css
   ============================================================ */

/* ------------------------------------------------------------
   CSS VARIABLES — design tokens
   ------------------------------------------------------------ */
:root {
  --bg:           #0a0a0f;
  --bg-mid:       #0d1120;
  --bg-card:      #0e0e1a;
  --bg-sidebar:   #080810;
  --accent:       #2563eb;
  --accent-dim:   rgba(37, 99, 235, 0.15);
  --accent-glow:  rgba(37, 99, 235, 0.08);

  --text-primary:   #e8eef8;
  --text-secondary: #8aabce;
  --text-muted:     #3a4a60;
  --text-dim:       #4a5f7a;

  --border:       rgba(37, 99, 235, 0.12);
  --border-faint: rgba(255, 255, 255, 0.04);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --sidebar-width: 280px;
  --top-bar-height: 56px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ------------------------------------------------------------
   TOP BAR
   ------------------------------------------------------------ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 50;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-faint);
}

.top-wordmark {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.top-bar-icons {
  display: flex;
  gap: 18px;
}

.top-bar-icons i {
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}

.top-bar-icons i:hover {
  color: var(--text-primary);
}

/* ------------------------------------------------------------
   SIDEBAR NAV
   ------------------------------------------------------------ */
.sidebar-edge {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100vh;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sidebar-edge::before {
  content: '';
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 3px;
  background: var(--accent);
  opacity: 0.4;
  transition: opacity var(--transition);
  pointer-events: none;
}

.sidebar-edge:hover::before {
  opacity: 0;
}

.sidebar-edge::after {
  content: '«';
  position: fixed;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 108px;
  color: var(--accent);
  opacity: 0.6;
  pointer-events: none;
  transition: opacity var(--transition);
}

.sidebar-edge:hover::after {
  opacity: 0;
}


.sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--bg-sidebar);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  transform: translateX(100%);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
}

.sidebar.open {
  transform: translateX(0);
  opacity: 1;
}

/* Identity block */
.sidebar-identity {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-faint);
}

.sidebar-name-big {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.sidebar-name-full {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

.sidebar-tagline {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-top: 8px;
  line-height: 1.6;
}

/* Nav links */
.sidebar-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-faint);
  transition: color var(--transition);
  position: relative;
}

.sidebar-link i {
  font-size: 16px;
  color: var(--text-dim);
  transition: color var(--transition);
  flex-shrink: 0;
}

.sidebar-link .sidebar-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: auto;
  opacity: 0;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: var(--text-primary);
}

.sidebar-link:hover i,
.sidebar-link.active i {
  color: var(--accent);
}

.sidebar-link.active .sidebar-dot {
  opacity: 1;
}

/* Sidebar footer */
.sidebar-footer {
  padding-top: 24px;
  border-top: 1px solid var(--border-faint);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-avail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.sidebar-langs {
  display: flex;
  gap: 10px;
}

.lang-item {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-dim);
  cursor: pointer;
  transition: color var(--transition);
}

.lang-item.active {
  color: var(--text-primary);
}

.lang-item:hover {
  color: var(--text-secondary);
}

.sidebar-cv-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 12px;
  transition: opacity var(--transition);
}

.sidebar-cv-btn:hover {
  opacity: 0.8;
}

/* ------------------------------------------------------------
   MAIN CONTENT
   ------------------------------------------------------------ */
.main-content {
  padding-top: var(--top-bar-height);
  min-height: 100vh;
}

/* ------------------------------------------------------------
   SHARED BUTTONS
   ------------------------------------------------------------ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* ------------------------------------------------------------
   SHARED SECTION LABEL
   ------------------------------------------------------------ */
.section-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 32px;
  border-top: 1px solid var(--border-faint);
  background: var(--bg);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.footer-credit {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-langs {
  display: flex;
  gap: 10px;
}

/* ------------------------------------------------------------
   SCROLLBAR
   ------------------------------------------------------------ */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--text-dim);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ------------------------------------------------------------
   UTILITY
   ------------------------------------------------------------ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   INDEX PAGE — add this to the bottom of style.css
   ============================================================ */

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
  padding: 72px 80px 56px 80px;
  min-height: calc(100vh - var(--top-bar-height) - 60px);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-name {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  line-height: 1;
}

.name-big {
  font-family: var(--font-display);
  font-size: 100px;
  letter-spacing: 4px;
  color: var(--text-primary);
  line-height: 0.95;
}

.name-full {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}

.hero-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  border-left: 2px solid var(--accent);
  padding-left: 14px;
  margin-bottom: 20px;
}

.hero-bio {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-lang-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lang-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--accent-dim);
  color: #60a5fa;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-psych {
  background: rgba(139, 92, 246, 0.1);
  color: #a78bfa;
  border-color: rgba(139, 92, 246, 0.2);
}

/* Photo */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 16px;
}

.photo-frame {
  position: relative;
  width: 260px;
  height: 320px;
}

.hero-photo {
  width: 260px;
  height: 320px;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-dim);
}

.photo-placeholder i {
  font-size: 52px;
}

.photo-placeholder span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.hero-photo-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

.stat-bubble {
  position: absolute;
  bottom: -16px;
  left: -20px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--accent);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

/* ------------------------------------------------------------
   THE VERDICT
   ------------------------------------------------------------ */
.verdict {
  padding: 64px 32px 56px;
}

.verdict-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.verdict-rule-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.verdict-symbol {
  font-size: 24px;
  color: var(--accent);
  opacity: 0.85;
  line-height: 1;
}

.verdict-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.verdict-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 32px 28px 36px;
  border-left: 4px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 780px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.verdict-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.verdict-card:nth-child(2) {
  transition-delay: 0.15s;
}

.verdict-card--left {
  flex-direction: row-reverse;
  margin-left: auto;
}

.verdict-card--right {
  flex-direction: row-reverse;
  margin-right: auto;
}

.verdict-photo {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e8eef8;
}

.verdict-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verdict-photo-placeholder {
  width: 100%;
  height: 100%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verdict-photo-placeholder i {
  font-size: 32px;
  color: #cbd5e1;
}

.verdict-content {
  flex: 1;
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.verdict-card--right .verdict-content {
  transform: translateX(32px);
}

.verdict-card.text-revealed .verdict-content {
  opacity: 1;
  transform: translateX(0);
}

.verdict-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(37, 99, 235, 0.1);
  line-height: 1;
  letter-spacing: 2px;
  font-style: italic;
  margin-bottom: 8px;
}

.verdict-quote {
  font-size: 14px;
  line-height: 1.75;
  color: #334155;
  font-style: italic;
  margin-bottom: 16px;
}

.verdict-quote strong {
  color: #1e293b;
  font-style: normal;
}

.verdict-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.verdict-dash {
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.verdict-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1e293b;
}

.verdict-role {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-top: 3px;
}

.verdict-company {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
  font-weight: 700;
}

.verdict-full {
  display: none;
}

.verdict-full.shown {
  display: inline;
}

.verdict-expand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 12px;
  transition: opacity var(--transition);
}

.verdict-expand:hover {
  opacity: 0.7;
}

.verdict-expand i {
  font-size: 14px;
  transition: transform var(--transition);
}

.verdict-expand.expanded i {
  transform: rotate(180deg);
}

/* ------------------------------------------------------------
   BOTTOM BAR
   ------------------------------------------------------------ */
.index-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px 24px;
}

.bottom-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-faint);
  padding: 8px 18px;
  border-radius: 20px;
}

/* ------------------------------------------------------------
   SCROLL REVEAL ANIMATION
   ------------------------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-left {
  animation: fadeUp 0.8s ease forwards;
}

.hero-right {
  animation: fadeUp 0.8s ease 0.2s both;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.claude-logo {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
}

.claude-name {
  color: #da7756;
  font-weight: 800;
}

/* ------------------------------------------------------------
   CUSTOMER SERVICE PAGE
   ------------------------------------------------------------ */
.cs-hero {
  padding: 72px 80px 48px;
  position: relative;
  overflow: hidden;
}

.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/static/assets/headset.jpg') center bottom / cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.cs-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,15,0.92) 40%, rgba(10,10,15,0.4) 100%);
  z-index: 0;
}

.cs-hero > * {
  position: relative;
  z-index: 2;
}

.cs-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.cs-title {
  font-family: var(--font-display);
  font-size: 80px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1;
  margin-bottom: 20px;
}

.accent-dot {
  color: var(--accent);
}

.cs-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
}

.tools-section {
  padding: 0 80px 56px;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tool-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  background: var(--accent-dim);
  color: #60a5fa;
  border: 1px solid rgba(37, 99, 235, 0.2);
  transition: background var(--transition), color var(--transition);
}

.tool-badge:hover {
  background: var(--accent);
  color: #fff;
}

.tool-badge--lang {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  border-color: rgba(139, 92, 246, 0.3);
}

.tool-badge--lang:hover {
  background: #7c3aed;
  color: #fff;
  border-color: #7c3aed;
}

.experience-section {
  padding: 0 80px 80px;
}

.exp-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.exp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-faint);
  border-radius: 14px;
  padding: 28px 32px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: relative;
  z-index: 1;
}

.exp-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.exp-card:nth-child(2) { transition-delay: 0.1s; }
.exp-card:nth-child(3) { transition-delay: 0.2s; }

.exp-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}

.exp-company {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.exp-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.exp-date {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.exp-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(37, 99, 235, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.exp-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.exp-bullets li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

.exp-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 1.5px;
  background: var(--accent);
}

/* ------------------------------------------------------------
   LOCALIZATION PAGE — work samples
   ------------------------------------------------------------ */
.work-samples {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-faint);
}

.samples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sample-slide {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-faint);
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}

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

.sample-slide img {
  width: 100%;
  display: block;
}

.sample-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--bg-card);
}

.loc-hero {
  padding: 72px 80px 48px;
  position: relative;
  overflow: hidden;
}

.loc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/static/assets/typing.png') center bottom / cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.loc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,15,0.92) 40%, rgba(10,10,15,0.4) 100%);
  z-index: 0;
}

.loc-hero > * {
  position: relative;
  z-index: 2;
}

/* ------------------------------------------------------------
   LOCALIZATION PAGE — floating scroll slide pairs
   ------------------------------------------------------------ */
.slide-pair {
  position: absolute;
  right: 80px;
  width: 494px;
  height: 338px;
  pointer-events: none;
  z-index: 0;
}

#pair-hackers {
  top: 780px;
}

#pair-newlogic {
  top: 1100px;
}

.slide-deck {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-card {
  position: absolute;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: transform 0.1s linear;
  transform-origin: center center;
}

.slide-card img {
  width: 100%;
  display: block;
}

.slide-front {
  transform: rotate(-3deg);
  z-index: 2;
}

.slide-back {
  transform: rotate(3deg);
  z-index: 1;
}

.slide-card .sample-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--bg-card);
}

/* Make experience section relative so absolute children anchor to it */
.experience-section {
  position: relative;
}

/* ------------------------------------------------------------
   TOOLS CAROUSEL
   ------------------------------------------------------------ */
.tools-carousel-section {
  padding: 0 0 64px;
}

.tools-carousel-section .section-eyebrow {
  margin: 0 80px 20px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 80px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.tool-card {
  flex-shrink: 0;
  width: 230px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  scroll-snap-align: start;
  transition: border-color var(--transition);
}

.tool-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
}

.tool-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tool-icon-wrap i {
  font-size: 22px;
  color: var(--accent);
}

.tool-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.tool-desc {
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.tool-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--accent-glow);
  color: var(--text-muted);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.tool-card-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  opacity: 0.35;
  min-height: 200px;
  gap: 10px;
}

.tool-card-placeholder i {
  font-size: 24px;
  color: var(--accent);
}

.tool-placeholder-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.drag-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 80px;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.drag-hint i {
  font-size: 18px;
  color: var(--accent);
}

/* ------------------------------------------------------------
   SIDE HUSTLE PAGE
   ------------------------------------------------------------ */
.sh-page {
  background: #f5f0e8;
  min-height: 100vh;
  color: #1a1a1a;
}

.sh-hero {
  background: #1a1a1a;
  padding: 48px 48px 40px;
  border-bottom: 3px solid #1a1a1a;
  position: relative;
  overflow: hidden;
}

.sh-watermark {
  position: absolute;
  right: -20px;
  top: -10px;
  font-family: 'Georgia', serif;
  font-size: 180px;
  font-weight: 900;
  font-style: italic;
  color: rgba(245, 240, 232, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.sh-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f5f0e8;
  opacity: 0.4;
  margin-bottom: 12px;
}

.sh-title {
  font-family: 'Georgia', serif;
  font-size: 80px;
  font-weight: 900;
  font-style: italic;
  color: #f5f0e8;
  line-height: 0.95;
  letter-spacing: -3px;
}

.sh-dot { color: #c8f04a; }

.sh-sub {
  font-size: 13px;
  color: #f5f0e8;
  opacity: 0.45;
  margin-top: 16px;
  letter-spacing: 0.5px;
  max-width: 400px;
  line-height: 1.6;
}

/* Comic grid */
.comic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 3px solid #1a1a1a;
}

.panel {
  border: 1.5px solid #1a1a1a;
  position: relative;
  overflow: hidden;
}

.panel-hses-main {
  background: #c8f04a;
  grid-column: 1;
  grid-row: 1;
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.panel-hses-gif {
  background: #1a1a1a;
  grid-column: 1;
  grid-row: 2;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-hses-detail {
  background: #f5f0e8;
  grid-column: 1;
  grid-row: 3;
  padding: 28px 32px;
}

.panel-sarah-gif {
  background: #1a1a1a;
  grid-column: 2;
  grid-row: 1;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-sarah-main {
  background: #c9b8f0;
  grid-column: 2;
  grid-row: 2;
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.panel-sarah-detail {
  background: #f5f0e8;
  grid-column: 2;
  grid-row: 3;
  padding: 28px 32px;
}

/* Game typography */
.game-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a1a1a;
  opacity: 0.5;
}

.game-title {
  font-family: 'Georgia', serif;
  font-size: 40px;
  font-weight: 900;
  font-style: italic;
  color: #1a1a1a;
  line-height: 1.05;
  letter-spacing: -1px;
}

.game-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.tag-green { background: #1a1a1a; color: #c8f04a; }
.tag-purple { background: #1a1a1a; color: #c9b8f0; }

/* GIF placeholder */
.gif-placeholder {
  width: 80%;
  aspect-ratio: 16/9;
  border: 1.5px dashed rgba(245, 240, 232, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.gif-placeholder i {
  font-size: 28px;
  color: rgba(245, 240, 232, 0.2);
}

.gif-placeholder span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.2);
}

/* Detail panels */
.game-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #3a3530;
  margin-bottom: 20px;
}

.game-meta { }

.game-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 2px;
  border: 1.5px solid #1a1a1a;
  background: #00d4d4;
  color: #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-play:hover { opacity: 0.8; }
.btn-play i { font-size: 13px; }

.btn-repo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 2px;
  border: 1.5px solid #1a1a1a;
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-repo:hover { background: rgba(0, 0, 0, 0.06); }
.btn-repo i { font-size: 14px; }

/* Footer panel */
.comic-footer {
  grid-column: 1 / -1;
  background: #1a1a1a;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 3px solid #1a1a1a;
}

.footer-note {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
}

.footer-tech {
  display: flex;
  gap: 10px;
}

.tech-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  border: 1px solid rgba(245, 240, 232, 0.15);
  color: rgba(245, 240, 232, 0.4);
}

.panel-hses-gif img,
.panel-sarah-gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------------------------------------
   MOBILE NAV
   ------------------------------------------------------------ */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .top-bar {
    padding: 0 16px;
  }

  .sidebar-edge {
    width: 0;
    overflow: visible;
  }

  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    transform: translateX(100%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 299;
  }

  .sidebar.open {
    transform: translateX(0);
    opacity: 1;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 20px 40px;
    min-height: unset;
    gap: 32px;
  }

  .name-big {
    font-size: 36px;
    letter-spacing: 0px;
    line-height: 1.2;
  }

  .hero-bio {
    font-size: 13px;
  }

  .hero-right {
    display: flex;
    justify-content: center;
  }

  .hero-photo {
    width: 160px;
    height: 200px;
  }

  .hero-lang-badges {
    flex-wrap: wrap;
  }

  /* Verdict */
  .verdict {
    padding: 40px 20px;
  }

  .verdict-card {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    max-width: 100%;
  }

  .verdict-photo {
    width: 120px;
    height: 120px;
  }

  .verdict-person {
    justify-content: center;
  }

  .verdict-grid {
    max-width: 100%;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-left {
    display: contents;
  }

  .hero-eyebrow { order: 1; }
  .hero-name { order: 2; }
  .hero-tagline { order: 3; }
  .hero-bio { order: 4; }
  .hero-right { order: 5; }
  .hero-actions { order: 6; }
  .hero-lang-badges { order: 7; }

  .hero-actions {
    display: none;
  }

  /* Customer Service page */
  .cs-hero {
    padding: 32px 20px 32px;
  }

  .cs-title {
    font-size: 52px;
    letter-spacing: 0px;
  }

  .tools-section {
    padding: 0 20px 32px;
  }

  .experience-section {
    padding: 0 20px 40px;
  }

  .exp-card {
    max-width: 100% !important;
  }

  .exp-company {
    font-size: 24px;
  }

  /* Localization page */
  .loc-hero {
    padding: 32px 20px 32px;
  }

  .slide-pair {
    display: none;
  }

  .tools-carousel-section .section-eyebrow {
    margin: 0 20px 16px;
  }

  .carousel-track {
    padding: 4px 20px 16px;
  }

  .drag-hint {
    padding: 0 20px;
  }

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

  /* Side hustle page */
  .sh-hero {
    padding: 32px 24px 32px;
  }

  .sh-title {
    font-size: 52px;
    letter-spacing: -1px;
  }

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

  .panel-hses-main,
  .panel-sarah-main {
    min-height: 200px;
  }

  .panel-hses-main { grid-column: 1; grid-row: 1; }
  .panel-hses-gif { grid-column: 1; grid-row: 2; }
  .panel-hses-detail { grid-column: 1; grid-row: 3; }
  .panel-sarah-main { grid-column: 1; grid-row: 4; }
  .panel-sarah-gif { grid-column: 1; grid-row: 5; }
  .panel-sarah-detail { grid-column: 1; grid-row: 6; }

  .comic-footer {
    grid-column: 1;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Verdict section */
  .verdict-title {
    font-size: 48px;
  }

  .play-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 20px;
  }

  .play-hero-right {
    max-width: 100%;
    width: 100%;
  }

  .play-title {
    font-size: 48px;
  }
}

.verdict-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  cursor: pointer;
  padding: 7px 14px;
  margin-bottom: 12px;
  transition: all var(--transition);
}

.verdict-contact:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.verdict-contact i {
  font-size: 14px;
}

.verdict-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 8px 12px;
  background: var(--accent-dim);
  border-radius: 6px;
}

.verdict-email a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.verdict-email a:hover {
  text-decoration: underline;
}

.verdict-email i {
  font-size: 15px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   PLAY PAGES
   ------------------------------------------------------------ */
.play-page {
  background: #0a0a0f;
  min-height: calc(100vh - var(--top-bar-height));
}

.play-hero {
  padding: 48px 48px 32px;
  background: #1a1a1a;
  border-bottom: 3px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.play-hero-left { flex-shrink: 0; }

.play-hero-right {
  flex: 1;
  max-width: 400px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 24px;
}

.play-tutorial {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  border: none;
  padding: 0;
}

.play-tutorial i {
  font-size: 14px;
  flex-shrink: 0;
}

.play-controls {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.3px;
}

.play-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8f04a;
  margin-bottom: 12px;
}

.play-title {
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 900;
  font-style: italic;
  color: #f5f0e8;
  line-height: 0.95;
  letter-spacing: -2px;
}

.play-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  min-height: 500px;
}

.play-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  border: 2px dashed rgba(255,255,255,0.1);
  border-radius: 12px;
  color: rgba(255,255,255,0.2);
}

.play-placeholder i {
  font-size: 48px;
}

.play-placeholder span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   SARAH HOUSE — FULLSCREEN OVERLAY
   ------------------------------------------------------------ */
#sarah-frame-wrap {
  position: relative;
}

.play-fullscreen-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 10;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.play-fs-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 8px;
  background: #c9b8f0;
  color: #1a1a1a;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.play-fs-btn:hover {
  opacity: 0.85;
}

.play-fs-btn i {
  font-size: 20px;
}

.play-fs-hint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.play-fs-chrome {
  color: rgba(255,255,255,0.2);
  font-size: 10px;
}
