/* =========================================================
   DIGI — style.css
   Brand: Josefin Sans, Electric Green (#00FFC8), dark teal bg
   ========================================================= */

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

:root {
  --bg:    #010707;
  --bg2:   #020D0D;
  --sur:   #071212;
  --sur2:  #0A1818;
  --neon:  #00FFC8;
  --neon2: #00F0FF;
  --text:  #FFFFFF;
  --mid:   #5A8C88;
  --dim:   #2E5450;
  --line:  1px solid rgba(0,255,200,0.13);
  --ndim:  rgba(0,255,200,0.07);
  --nbord: rgba(0,255,200,0.14);
  --font:  'Josefin Sans', sans-serif;
  --max:   1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .02em;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* ── Noise texture ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  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='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* ── Grid background ───────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,200,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,200,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}

/* ── Utility ───────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--neon);
  padding: 5px 12px;
  border: 1px solid var(--nbord);
  background: var(--ndim);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

/* ── Buttons ───────────────────────────────────────────── */
.btn, .btn-o {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 26px;
  cursor: pointer;
  border: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.btn {
  background: var(--neon);
  color: #010707;
}
.btn:hover {
  background: var(--neon2);
  transform: translateY(-1px);
}

.btn-o {
  background: transparent;
  color: var(--neon);
  border: 1px solid var(--nbord);
}
.btn-o:hover {
  background: var(--ndim);
}

/* ── Reveal on scroll ──────────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.r.on {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section labels ────────────────────────────────────── */
.sec-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 32px;
}
.sec-label span { color: var(--neon); margin-right: 4px; }

/* ── Section headings ──────────────────────────────────── */
h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  color: var(--text);
}
h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--mid);
}

/* Keyword highlight — neon green on key value-prop words */
.kw {
  color: var(--neon);
  font-style: normal;
  font-weight: 700;
}

h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--text);
}
h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--neon);
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(1,7,7,.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.logo .get { color: var(--neon); }
.logo .digi { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mid);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neon);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: var(--line);
  background: rgba(1,7,7,.97);
  padding: 16px 40px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mid);
  padding: 12px 0;
  border-bottom: var(--line);
  transition: color .2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--text); }

@media (max-width: 820px) {
  .nav-links, nav > .wrap > .nav-inner .btn-o { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 160px 0 100px;
  position: relative;
}

.hero-tag { margin-bottom: 32px; }

.hero h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.1;
  max-width: 820px;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .02em;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Stat bar */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--nbord);
  border: var(--line);
}
.stat-item {
  background: var(--bg);
  padding: 28px 32px;
}
.stat-item:hover { background: var(--sur); }
.stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
}

@media (max-width: 700px) {
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  border-top: var(--line);
  border-bottom: var(--line);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tick 32s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dim);
  flex-shrink: 0;
}
.ticker-item .diam {
  color: var(--neon);
  font-size: 8px;
}

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

/* ============================================================
   INSIGHT STRIP
   ============================================================ */
.insight-strip {
  background: var(--neon);
  padding: 48px 0;
  position: relative;
  z-index: 1;
}
.insight-strip .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.insight-strip blockquote {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: .02em;
  color: #010707;
  max-width: 780px;
  line-height: 1.45;
}
.insight-strip cite {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(1,7,7,.4);
  font-style: normal;
}

/* ============================================================
   THESIS
   ============================================================ */
.thesis {
  padding: 100px 0;
  position: relative;
}

.thesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.thesis-left p {
  color: var(--mid);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.thesis-left p strong {
  color: var(--text);
  font-weight: 600;
}
.thesis-left .btn-o { margin-top: 16px; }

.thesis-table {
  border: var(--line);
}
.thesis-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: var(--line);
  transition: background .2s;
}
.thesis-row:last-child { border-bottom: none; }
.thesis-row:hover { background: var(--sur); }
.thesis-row-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--mid);
}
.thesis-row-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--neon);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .thesis-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach {
  background: var(--bg2);
  padding: 100px 0;
}

.approach-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--nbord);
  border: var(--line);
}

.approach-card {
  background: var(--bg2);
  padding: 48px 40px;
  transition: background .2s;
}
.approach-card:hover { background: var(--sur); }

.approach-num {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--dim);
  margin-bottom: 20px;
}

.approach-card h3 { margin-bottom: 12px; }

.approach-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pill {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--nbord);
  color: var(--neon);
  background: var(--ndim);
}

@media (max-width: 700px) {
  .approach-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NETWORK
   ============================================================ */
.network {
  padding: 100px 0;
}

.network-header { margin-bottom: 64px; }
.network-header h2 { margin-bottom: 20px; }
.network-header p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  max-width: 600px;
  line-height: 1.75;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--nbord);
  border: var(--line);
  margin-bottom: 2px;
}

.platform-item {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s;
}
.platform-item:hover { background: var(--sur); }

.platform-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
}

.platform-bar-wrap {
  height: 2px;
  background: var(--nbord);
  position: relative;
}
.platform-bar {
  height: 100%;
  background: var(--neon);
  transition: width .8s ease;
}

.platform-pct {
  font-size: 24px;
  font-weight: 700;
  color: var(--neon);
}
.platform-desc {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
}

.geo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--nbord);
  border: var(--line);
}
.geo-item {
  background: var(--bg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background .2s;
}
.geo-item:hover { background: var(--sur); }
.geo-flag { font-size: 20px; }
.geo-name {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
}

@media (max-width: 820px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .geo-row { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--bg2);
  padding: 100px 0;
}

.reviews-header { margin-bottom: 48px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--nbord);
  border: var(--line);
}

.review-card {
  background: var(--bg2);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: background .2s;
}
.review-card:hover { background: var(--sur); }

.review-quote {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  flex: 1;
}
.review-quote::before {
  content: '"';
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 12px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--sur2);
  border: 1px solid var(--nbord);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--neon);
  flex-shrink: 0;
}
.review-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
}
.review-role {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 2px;
}

@media (max-width: 820px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOW WE WORK / PROCESS
   ============================================================ */
.process {
  padding: 100px 0;
}

.process-header { margin-bottom: 64px; }
.process-header h2 { margin-bottom: 16px; }
.process-header p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
}

/* Ops table */
.ops-table {
  border: var(--line);
  margin-bottom: 80px;
  counter-reset: ops;
}

.ops-row {
  display: grid;
  grid-template-columns: 64px 280px 1fr;
  align-items: start;
  border-bottom: var(--line);
  transition: background .2s;
  counter-increment: ops;
}
.ops-row:last-child { border-bottom: none; }
.ops-row:hover { background: var(--sur); }

.ops-num {
  padding: 24px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  color: var(--dim);
  align-self: center;
}
.ops-num::before {
  content: "0" counter(ops);
}

.ops-title {
  padding: 24px 24px 24px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  border-right: var(--line);
  align-self: center;
}

.ops-detail {
  padding: 24px 32px;
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}

@media (max-width: 700px) {
  .ops-row { grid-template-columns: 48px 1fr; }
  .ops-title { border-right: none; grid-column: 2; padding: 24px 16px 8px 0; }
  .ops-detail { grid-column: 1 / -1; padding: 0 16px 24px; }
}

/* Dashboard */
.dashboard-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2px;
  background: var(--nbord);
  border: var(--line);
}

.dashboard-copy {
  background: var(--bg);
  padding: 48px 40px;
}
.dashboard-copy h3 { margin-bottom: 16px; }
.dashboard-copy p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.dashboard-copy .btn-o { margin-top: 24px; }

.dashboard-ui {
  background: var(--bg);
  padding: 32px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dash-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
}
.dash-meta {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
}

.dash-cols {
  display: grid;
  grid-template-columns: 1fr 80px 80px 60px;
  gap: 8px;
  margin-bottom: 8px;
  padding: 0 12px;
}
.dash-col-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
}

.kol-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px 60px;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: var(--line);
  margin-bottom: 2px;
  transition: background .2s;
}
.kol-row:hover { background: var(--sur); }

.kol-info { display: flex; align-items: center; gap: 10px; }
.kol-avatar {
  width: 28px;
  height: 28px;
  background: var(--sur2);
  border: 1px solid var(--nbord);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--neon);
  flex-shrink: 0;
}
.kol-name { font-size: 12px; font-weight: 600; color: var(--text); }
.kol-handle { font-size: 10px; color: var(--dim); }
.kol-reach { font-size: 12px; font-weight: 600; color: var(--mid); }
.kol-posts { font-size: 12px; color: var(--mid); text-align: center; }

.badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
}
.badge.live   { background: rgba(0,255,200,.1);    color: #00FFC8; border: 1px solid rgba(0,255,200,.18); }
.badge.review { background: rgba(255,209,102,.08); color: #FFD166; border: 1px solid rgba(255,209,102,.18); }
.badge.brief  { background: rgba(0,240,255,.07);   color: #00F0FF; border: 1px solid rgba(0,240,255,.14); }

@media (max-width: 900px) {
  .dashboard-wrap { grid-template-columns: 1fr; }
  .dash-cols, .kol-row { grid-template-columns: 1fr 80px 60px; }
  .kol-posts, .dash-col-label:nth-child(3) { display: none; }
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder {
  background: var(--bg2);
  padding: 100px 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.founder-photo {
  position: relative;
}
.founder-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: var(--line);
  filter: grayscale(20%);
  transition: filter .3s ease;
}
.founder-photo img:hover { filter: grayscale(0%); }
.founder-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(2,13,13,.6) 100%);
  pointer-events: none;
}

.founder-role-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 16px;
  display: block;
}

.founder-bio h2 {
  margin-bottom: 8px;
}

.founder-title {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 36px;
  display: block;
}

.founder-bio p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.founder-bio p strong {
  color: var(--text);
  font-weight: 600;
}

.founder-bio .btn-o {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-photo img {
    aspect-ratio: 1 / 1;
    max-width: 320px;
  }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: 120px 0;
  position: relative;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,255,200,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-final h2 { margin-bottom: 16px; max-width: 600px; }

.cta-final .sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 48px;
  max-width: 480px;
  line-height: 1.75;
}

.cta-form {
  display: flex;
  gap: 2px;
  width: 100%;
  max-width: 500px;
  margin-bottom: 16px;
  background: var(--nbord);
}

.cta-input {
  flex: 1;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--text);
  background: var(--bg);
  border: none;
  padding: 14px 20px;
  outline: none;
  transition: background .2s;
}
.cta-input::placeholder { color: var(--dim); }
.cta-input:focus { background: var(--sur); }

.cta-note {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 64px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border: var(--line);
  padding: 24px 32px;
  background: var(--bg2);
}
.contact-avatar {
  width: 56px;
  height: 56px;
  background: var(--sur2);
  border: 1px solid var(--nbord);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--neon);
  flex-shrink: 0;
  overflow: hidden;
}
.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-info { text-align: left; }
.contact-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 2px;
}
.contact-handle {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--neon);
  text-decoration: none;
}
.contact-handle:hover { color: var(--neon2); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: var(--line);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dim);
  transition: color .2s;
}
.footer-links a:hover { color: var(--mid); }

.footer-domain {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ============================================================
   RESPONSIVE — misc
   ============================================================ */
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 120px 0 80px; }
  .hero-ctas { flex-direction: column; }
  .contact-card { flex-direction: column; text-align: center; }
  .contact-info { text-align: center; }
  .cta-form { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
