/* ── FONTS ── */
@font-face {
  font-family: 'Nohemi';
  src: url('../Nohemi/Web-TT/Nohemi-Thin.woff2') format('woff2'),
       url('../Nohemi/Web-TT/Nohemi-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nohemi';
  src: url('../Nohemi/Web-TT/Nohemi-ExtraLight.woff2') format('woff2'),
       url('../Nohemi/Web-TT/Nohemi-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nohemi';
  src: url('../Nohemi/Web-TT/Nohemi-Light.woff2') format('woff2'),
       url('../Nohemi/Web-TT/Nohemi-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nohemi';
  src: url('../Nohemi/Web-TT/Nohemi-Regular.woff2') format('woff2'),
       url('../Nohemi/Web-TT/Nohemi-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nohemi';
  src: url('../Nohemi/Web-TT/Nohemi-Medium.woff2') format('woff2'),
       url('../Nohemi/Web-TT/Nohemi-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nohemi';
  src: url('../Nohemi/Web-TT/Nohemi-SemiBold.woff2') format('woff2'),
       url('../Nohemi/Web-TT/Nohemi-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nohemi';
  src: url('../Nohemi/Web-TT/Nohemi-Bold.woff2') format('woff2'),
       url('../Nohemi/Web-TT/Nohemi-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nohemi';
  src: url('../Nohemi/Web-TT/Nohemi-ExtraBold.woff2') format('woff2'),
       url('../Nohemi/Web-TT/Nohemi-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nohemi';
  src: url('../Nohemi/Web-TT/Nohemi-Black.woff2') format('woff2'),
       url('../Nohemi/Web-TT/Nohemi-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── SF PRO DISPLAY ── */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../Nohemi/SFPRODISPLAYREGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../Nohemi/SFPRODISPLAYMEDIUM.OTF') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../Nohemi/SFPRODISPLAYBOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg: #ffffff;
  --ink: #020000;
  --muted: #616161;
  --subtle: #f6f6f6;
  --border: #e8e8e8;
  --accent: #E8542E;
  --green: #22c55e;
  --sans: 'Nohemi', 'Outfit', sans-serif;
  --body: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─────────────────────────────
   NAV
───────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  height: 64px;
  max-width: 1224px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  width: fit-content;
  max-width: 200px;
  position: relative;
  z-index: 1;
}

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

.nav-pills {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 2px;
  background: transparent;
  position: relative;
  z-index: 10;
}

.nav-pill {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
  padding: 7px 20px;
  border-radius: 999px;
  border: none;
  background: transparent;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.nav-pill:hover {
  background: var(--subtle);
  opacity: 1;
}

.nav-pill--active {
  background: var(--ink);
  color: #fff;
}

.nav-pill--active:hover {
  background: var(--ink);
  opacity: 1;
}

/* 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(--ink);
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: var(--bg);
  z-index: 99;
  padding: 48px 32px;
  flex-direction: column;
  gap: 24px;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
  transition: color 0.18s;
}

.nav-mobile a:hover {
  color: var(--accent) !important;
}

.nav-mobile .mob-cv {
  margin-top: 12px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 12px 24px;
  width: fit-content;
}

/* ─────────────────────────────
   HERO
───────────────────────────── */
.hero {
  padding: 80px 80px 32px;
  max-width: 1224px;
  margin: 0 auto;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Avatar pill */
.hero-avatar {
  width: 140px;
  height: 80px;
  border-radius: 48px;
  overflow: hidden;
  margin-bottom: 36px;
  background: linear-gradient(135deg, #fde8df, #f5bfac);
  animation: fadeUp 0.5s ease both;
  flex-shrink: 0;
}

.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.hero-headline {
  font-family: var(--sans);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 60px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-headline .accent-line {
  color: var(--accent);
  display: block;
}

/* Stats row — 12-col grid, each stat spans 4 cols */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  margin-bottom: 60px;
  animation: fadeUp 0.6s 0.2s ease both;
  padding-top: 40px;
}

.hero-stat {
  grid-column: span 4;
  padding-right: 60px;
}

.hero-stat:nth-child(2) {
  padding-left: 40px;
}

.hero-stat:last-child {
  padding-right: 0;
  padding-left: 40px;
}

.hero-stat-icon {
  margin-bottom: 18px;
}

.hero-stat-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.hero-stat-num {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.hero-stat-desc {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0;
  color: #616161;
}

/* Logo strip */
.hero-logos-wrap {
  max-width: 1224px;
  margin: 0 auto;
  padding: 40px 80px;
}

.hero-logos {
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}

.hero-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  transition: background 0.18s;
}

.hero-logo-cell:last-child {
  border-right: none;
}

.hero-logo-cell:hover {
  background: var(--subtle);
}

.hero-logo-cell span {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.lc-acko {
  color: #7b2cff !important;
}

.lc-mygate {
  color: var(--accent) !important;
}

.lc-xoxo {
  color: #ff6b35 !important;
}

.lc-net {
  color: #d97706 !important;
}

.lc-flip {
  color: #0d9488 !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* ─────────────────────────────
   TICKER
───────────────────────────── */
.ticker-wrap {
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 80px;
}

.ticker-track-wrap {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 0;
}

.ticker-track-wrap::before,
.ticker-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 260px;
  z-index: 2;
  pointer-events: none;
}

.ticker-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, var(--bg) 40%, transparent 100%);
}

.ticker-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, var(--bg) 40%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-set {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
  flex-shrink: 0;
}

.ticker-logo {
  height: 48px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 1;
}

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

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─────────────────────────────
   SHARED SECTION
───────────────────────────── */
.divider {
  border-top: 1px solid var(--border);
}

.section-wrap {
  padding: 80px 80px;
  max-width: 1224px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--sans);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.section-title .light {
  font-family: 'Nohemi', sans-serif;
  font-weight: 300;
  color: var(--accent);
}

.see-all {
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.18s;
  white-space: nowrap;
}

.see-all:hover {
  color: var(--ink);
}

/* ─────────────────────────────
   WORK CARDS
───────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.work-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--bg);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.07);
}

.work-card-img {
  overflow: hidden;
  background: var(--subtle);
  flex-shrink: 0;
  height: 260px;
}

.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s;
  filter: saturate(0.88);
}

.work-card:hover .work-card-img img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.gi-acko {
  background: linear-gradient(135deg, #f0e8ff, #fde8df);
}

.gi-mygate {
  background: linear-gradient(135deg, #fde8df, #ffe8e0);
}

.gi-community {
  background: linear-gradient(135deg, #e8f5e9, #e3f2fd);
}

.gi-xoxo {
  background: linear-gradient(135deg, #fff3ee, #ffe0d0);
}

.work-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work-logo-wrap {
  overflow: hidden;
  height: 40px;
  width: 160px;
  max-width: 100%;
  margin-bottom: 6px;
  margin-left: 0;
}

.work-logo {
  width: 130%;
  height: 130%;
  object-fit: contain;
  object-position: left center;
  margin-left: -8%;
  margin-top: -8%;
  display: block;
  transform-origin: left center;
}

.work-title {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0;
}

.work-metrics {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 24px;
  margin-top: 32px;
}

.work-metric {
  display: flex;
  flex-direction: column;
}

.work-metric-num {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.work-metric-label {
  font-family: var(--body);
  font-size: 12px;
  color: var(--muted);
}

.work-card--soon {
  opacity: 0.72;
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  background: var(--ink);
  padding: 10px 20px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  width: fit-content;
  transition: opacity 0.18s;
}

.work-link:hover {
  opacity: 0.8;
}

.work-link--soon {
  background: transparent;
  color: var(--muted);
  border: 1.5px dashed var(--border);
  border-radius: 8px;
}

/* ─────────────────────────────
   ABOUT STRIP
───────────────────────────── */
.about-strip {
  background: var(--ink);
  padding: 0;
}

.about-inner {
  max-width: 1224px;
  height: 330px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  width: 360px;
  height: 330px;
  margin-left: auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, var(--ink) 100%),
    linear-gradient(to right, transparent 60%, var(--ink) 100%),
    linear-gradient(to left, transparent 60%, var(--ink) 100%);
  pointer-events: none;
}

.about-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-big {
  font-family: var(--sans);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.about-big .light {
  font-weight: 300;
  color: var(--accent);
}

.about-body {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: 18px;
}

.about-body strong {
  color: #fff;
  font-weight: 400;
}

.stats-row {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
}

.stat-num {
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-family: var(--body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ─────────────────────────────
   EXPERIENCE
───────────────────────────── */
.exp-list {
  display: flex;
  flex-direction: column;
}

.exp-item {
  display: grid;
  grid-template-columns: 200px 1fr 160px;
  align-items: start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.exp-item:first-child {
  border-top: 1px solid var(--border);
}

.exp-company {
  display: flex;
  align-items: center;
  gap: 12px;
}

.exp-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  flex-shrink: 0;
  color: #fff;
}

.logo-xoxo {
  background: linear-gradient(135deg, #ff6b35, #E8542E);
}

.logo-acko {
  background: linear-gradient(135deg, #7b2cff, #5b1fd4);
}

.logo-mygate {
  background: linear-gradient(135deg, #E8542E, #b83a18);
}

.logo-net {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.logo-flip {
  background: linear-gradient(135deg, #0d9488, #0f766e);
}

.logo-waamos {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.exp-company-name {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}

.exp-role {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}

.exp-desc {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0;
  color: #616161;
}

.exp-desc strong {
  color: var(--ink);
}

.exp-date {
  font-family: var(--body);
  font-size: 11.5px;
  color: var(--muted);
  text-align: right;
  padding-top: 2px;
}

/* ─────────────────────────────
   WRITING
───────────────────────────── */
.article-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.article-content {
  min-width: 0;
}

.article-image-wrap {
  width: 200px;
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.article-tag {
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.article-title {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
}

.article-desc {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0;
  color: #616161;
  max-width: 640px;
}

.article-arrow {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.article-card:hover .article-arrow {
  background: var(--ink);
  border-color: var(--ink);
  transform: rotate(45deg);
}

.article-card:hover .article-arrow svg path {
  stroke: #fff;
}

.article-arrow svg {
  width: 15px;
  height: 15px;
  fill: none;
  transition: stroke 0.2s;
}

.article-arrow svg path {
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
footer {
  background: var(--ink);
  padding: 0;
}

.footer-inner {
  max-width: 1224px;
  margin: 0 auto;
  padding: 84px 80px 44px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-headline {
  font-family: var(--sans);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.1;
}

.footer-headline .light {
  font-weight: 300;
  color: var(--accent);
}

.footer-contact {}

.footer-email-label {
  font-family: var(--body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-email-link {
  font-family: var(--sans);
  font-size: 17px;
  color: #fff;
  transition: color 0.18s;
  display: block;
}

.footer-email-link:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

.footer-copy {
  font-family: var(--body);
  font-size: 12.5px;
  color: #fff;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  color: #fff;
  font-size: 11.5px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.social-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  display: block;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ─────────────────────────────
   REVEAL ANIMATION
───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 960px) {
  .header-inner {
    padding: 0 24px;
  }

  .ticker-wrap {
    padding: 0 24px;
  }

  .ticker-track-wrap {
    padding: 16px 0;
  }

  .ticker-track-wrap::before,
  .ticker-track-wrap::after {
    width: 80px;
  }

  .ticker-logo {
    height: 32px;
    max-width: 100px;
  }

  .ticker-set {
    gap: 40px;
    padding-right: 40px;
  }

  .nav-pills {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 48px 24px 52px;
  }

  .hero-avatar {
    width: 64px;
    height: 54px;
    margin-bottom: 28px;
  }

  .hero-headline {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .hero-stats {
    grid-template-columns: repeat(12, 1fr);
    gap: 28px 0;
    padding-top: 0;
  }

  .hero-stat {
    grid-column: span 12;
    padding: 0;
  }

  .hero-stat:nth-child(2) {
    padding-left: 0;
  }

  .hero-stat:last-child {
    padding-left: 0;
  }

  .hero-logos-wrap {
    padding: 24px;
  }

  .hero-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-logos .hero-logo-cell:nth-child(n+4) {
    border-top: 1px solid var(--border);
  }

  .section-wrap {
    padding: 60px 24px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

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

  .about-strip {
    padding: 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    padding: 0 0 40px;
    gap: 0;
  }

  .about-image-wrap {
    display: block;
    width: 100%;
    height: 180px;
    margin-left: 0;
    border-radius: 0;
    order: -1;
  }

  .about-big {
    padding: 32px 24px 0;
  }

  .stats-row {
    gap: 28px;
  }

  .exp-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .exp-date {
    text-align: left;
  }

  .article-card {
    grid-template-columns: 1fr;
  }

  .article-image-wrap {
    display: none;
  }

  .article-arrow {
    display: none;
  }

  .footer-inner {
    padding: 56px 24px 36px;
  }

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* ─────────────────────────────
   SMALL MOBILE
───────────────────────────── */
@media (max-width: 480px) {
  .hero {
    padding: 36px 20px 40px;
  }

  .hero-headline {
    font-size: 28px;
  }

  .hero-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-logos .hero-logo-cell:nth-child(n+3) {
    border-top: 1px solid var(--border);
  }

  .section-wrap {
    padding: 48px 20px;
  }

  .work-card-body {
    padding: 20px;
  }

  .work-metrics {
    gap: 20px;
  }

  .about-big {
    font-size: 28px;
    padding: 24px 20px 0;
  }

  .stats-row {
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-inner {
    padding: 48px 20px 32px;
  }

  .footer-headline {
    font-size: 28px;
  }
}

/* ─────────────────────────────
   LARGE SCREEN
───────────────────────────── */
@media (min-width: 1440px) {
  .hero-headline {
    font-size: 56px;
  }
}

