/* ============================================================
   GAME SEED ASSETS — style.css
   Gradient reference: Gradient.png (#1e5c3a → #6ecf35)
   ============================================================ */

@font-face {
  font-family: 'IntegralCF';
  src: url('fonts/IntegralCF-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:        #080f09;
  --bg2:       #0c160e;
  --bg3:       #111e13;

  --g1:  #1e5c3a;
  --g2:  #2d7a4f;
  --g3:  #4aaa3a;
  --g4:  #6ecf35;
  --grad: linear-gradient(135deg, #1e5c3a 0%, #2d7a4f 35%, #4aaa3a 68%, #6ecf35 100%);

  --white:    #f0f7f1;
  --muted:    rgba(240,247,241,0.5);
  --dim:      rgba(240,247,241,0.22);
  --gold:     #d4b44a;
  --gold2:    #f0cc60;

  --glass:    rgba(255,255,255,0.05);
  --glass-b:  rgba(110,207,53,0.15);

  --serif: 'IntegralCF', Georgia, serif;
  --sans:  'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --mono:  'DM Mono', 'Courier New', monospace;

  --r-card: 14px;
  --r-btn:  8px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (hover: hover) and (pointer: fine) {
  body, a, button { cursor: none; }
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.symbol-font {
  font-family: var(--sans);
  letter-spacing: 0;
}

.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9500;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #6ecf35;
  box-shadow:
    0 0 0 16px rgba(110,207,53,0.12),
    0 0 0 30px rgba(110,207,53,0.035),
    0 0 28px rgba(110,207,53,0.8);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.9);
  transition: opacity 0.18s ease, transform 0.16s ease, box-shadow 0.22s ease;
  animation: cursorBreathe 1.75s ease-in-out infinite;
}
.cursor-dot.is-active { opacity: 1; }
.cursor-dot.is-pressed { transform: translate3d(-50%, -50%, 0) scale(0.65); }
.cursor-dot.is-hovering {
  transform: translate3d(-50%, -50%, 0) scale(1.25);
  box-shadow:
    0 0 0 22px rgba(110,207,53,0.13),
    0 0 0 42px rgba(110,207,53,0.04),
    0 0 34px rgba(110,207,53,0.9);
}
@keyframes cursorBreathe {
  0%, 100% { box-shadow: 0 0 0 14px rgba(110,207,53,0.1), 0 0 0 28px rgba(110,207,53,0.03), 0 0 24px rgba(110,207,53,0.72); }
  50% { box-shadow: 0 0 0 20px rgba(110,207,53,0.14), 0 0 0 38px rgba(110,207,53,0.045), 0 0 32px rgba(110,207,53,0.86); }
}

/* ── GRAIN OVERLAY ───────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.28;
}

/* ── PARTICLES CANVAS ────────────────────────────────────── */
#bg-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ── SVG ORGANIC LAYER ───────────────────────────────────── */
#organic-layer {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}

/* ── NAVBAR ──────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
  background: rgba(8,15,9,0.82);
  backdrop-filter: blur(22px) saturate(1.5);
  border-bottom: 1px solid var(--glass-b);
  animation: navSlide 0.7s ease both;
}
@keyframes navSlide { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 0.68rem;
  letter-spacing: 0.06em; color: var(--white); line-height: 1.3;
}
.nav-brand img { height: 28px; filter: brightness(0) invert(1); opacity: 0.9; }

.nav-links {
  display: flex; gap: 34px;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 500; color: var(--muted);
  letter-spacing: 0.02em; position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-badges { display: flex; gap: 18px; align-items: center; }
.nav-badges a { opacity: 0.65; transition: opacity 0.2s, transform 0.2s; }
.nav-badges a:hover { opacity: 1; transform: scale(1.07); }
.nav-badges a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(110,207,53,0.15));
}

/* ── REVEAL SYSTEM ───────────────────────────────────────── */
/* IMPORTANT: all animated-in elements start visible for no-JS safety,
   then JS adds .will-reveal class which hides them, then .revealed shows them */
.will-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.will-reveal.from-left  { transform: translateX(-30px); }
.will-reveal.from-right { transform: translateX(30px); }
.will-reveal.from-scale { transform: scale(0.93); }

.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 110px 24px 120px;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(110,207,53,0.09), transparent 18%),
    radial-gradient(circle at 82% 74%, rgba(74,170,58,0.08), transparent 22%);
  pointer-events: none;
}

/* radial glow blob */
#hero::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -54%);
  width: 860px; height: 680px;
  background: radial-gradient(ellipse, rgba(78,170,58,0.16) 0%, rgba(30,92,58,0.08) 45%, transparent 72%);
  pointer-events: none;
}

/* pixel leaf bounce */
.hero-leaf {
  width: 72px; height: 72px; margin: 0 auto 20px;
  animation: leafFloat 3.8s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(110,207,53,0.45));
  position: relative; z-index: 2;
}
@keyframes leafFloat {
  0%,100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-16px) rotate(7deg); }
}

.hero-eyebrow {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.32em;
  color: var(--g4); text-transform: uppercase; margin-bottom: 22px;
  position: relative; z-index: 2;
  animation: fadeUp 0.8s 0.25s ease both;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 10.5vw, 9rem);
  line-height: 0.95; letter-spacing: 0;
  padding: 0.08em 0.08em 0.12em;
  position: relative; z-index: 2;
  animation: fadeUp 0.9s 0.4s ease both;
}
.hero-h1 .l1 { display: block; color: var(--white); }
.hero-h1 .l2 {
  display: block;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(110,207,53,0.3));
}
.hero-h1 .l3 {
  display: block; color: var(--dim);
  font-size: 0.38em; letter-spacing: 0.2em; margin-top: 14px;
}

.hero-sub {
  max-width: 460px; margin: 30px auto 0;
  font-size: 1rem; font-weight: 300; line-height: 1.8; color: var(--muted);
  position: relative; z-index: 2;
  animation: fadeUp 0.9s 0.55s ease both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-top: 44px; position: relative; z-index: 2;
  animation: fadeUp 0.9s 0.7s ease both;
}
.btn-grad {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: #061208;
  font-family: var(--sans); font-weight: 700; font-size: 0.84rem;
  padding: 14px 30px; border-radius: var(--r-btn);
  box-shadow: 0 4px 22px rgba(110,207,53,0.28);
  transition: box-shadow 0.25s, transform 0.2s;
}
.btn-grad:hover { box-shadow: 0 8px 36px rgba(110,207,53,0.42); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--glass-b); color: var(--white);
  font-size: 0.84rem; font-weight: 500;
  padding: 13px 26px; border-radius: var(--r-btn);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: rgba(110,207,53,0.5); color: var(--g4); transform: translateY(-2px); }

.hero-store-row {
  display: flex; gap: 30px; align-items: center; justify-content: center;
  margin-top: 56px; flex-wrap: wrap;
  position: relative; z-index: 2;
  animation: fadeUp 0.9s 0.88s ease both;
}
.hero-store-row a { opacity: 0.6; transition: opacity 0.2s, transform 0.2s; }
.hero-store-row a:hover { opacity: 1; transform: scale(1.07); }
.hero-store-row img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(110,207,53,0.18));
}
.store-sep { width: 1px; height: 22px; background: var(--glass-b); }

.scroll-pip {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--dim); font-size: 0.58rem; letter-spacing: 0.22em;
  font-family: var(--mono); z-index: 2;
  animation: fadeUp 0.9s 1.1s ease both;
}
.scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--g4), transparent);
  animation: linePulse 2.4s ease-in-out infinite;
}
@keyframes linePulse { 0%,100%{opacity:0.25;} 50%{opacity:0.9;} }

/* ── SECTION LAYOUT ──────────────────────────────────────── */
.section { position: relative; z-index: 2; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }

.s-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.28em;
  color: var(--g4); text-transform: uppercase; margin-bottom: 16px;
}
.s-label::before { content: ''; width: 22px; height: 1.5px; background: var(--grad); }

.s-heading {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.2vw, 3.5rem);
  line-height: 1.04; letter-spacing: -0.01em;
}
.s-heading em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  height: 1px; margin: 0 7%;
  background: linear-gradient(90deg, transparent, rgba(110,207,53,0.18), transparent);
}

/* ── ASSETS SECTION ──────────────────────────────────────── */
#assets { padding: 130px 0 80px; }
#assets .container { padding-bottom: 0; }
.section-head { margin-bottom: 64px; }

/* bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 420px 420px;
  gap: 14px;
  background: transparent;
  border: 0;
  border-radius: 18px;
  overflow: visible;
}

/* layout: row 1 = wide(4) + tall(2), row 2 = 2+2+wide(2) */
.bcard:nth-child(1) { grid-column: 1 / 5; grid-row: 1; }  /* Rope Puzzle — wide */
.bcard:nth-child(2) { grid-column: 5 / 7; grid-row: 1; }  /* Bull Rider */
.bcard:nth-child(3) { grid-column: 1 / 3; grid-row: 2; }  /* Dark 2D */
.bcard:nth-child(4) { grid-column: 3 / 5; grid-row: 2; }  /* Fog */
.bcard:nth-child(5) { grid-column: 5 / 7; grid-row: 2; }  /* Rain */

.bcard {
  position: relative; overflow: hidden;
  background: var(--bg2);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: z-index 0s;
}
.bcard {
  border: 1px solid rgba(110,207,53,0.12);
  border-radius: 16px;
}
.bcard-media,
.bcard iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none; pointer-events: none;
  transform: scale(1.09);
}
.bcard-media {
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.bcard:hover .bcard-media { transform: scale(1.14); filter: saturate(1.08) brightness(1.05); }
.bcard-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(8,15,9,0.97) 0%,
    rgba(8,15,9,0.55) 48%,
    rgba(8,15,9,0.1) 100%);
  transition: background 0.4s;
}
.bcard:hover .bcard-veil {
  background: linear-gradient(to top,
    rgba(8,15,9,0.99) 0%,
    rgba(8,15,9,0.68) 55%,
    rgba(8,15,9,0.2) 100%);
}
.bcard-body { position: relative; z-index: 2; padding: 24px; }
.bcard-tag {
  font-family: var(--mono); font-size: 0.52rem; letter-spacing: 0.16em;
  color: var(--g4); border: 1px solid rgba(110,207,53,0.22);
  background: rgba(110,207,53,0.08);
  display: inline-block; padding: 4px 10px; margin-bottom: 10px;
}
.bcard-name {
  font-family: var(--serif); font-size: 1.1rem; line-height: 1.25;
  margin-bottom: 18px;
}
.bcard-btns { display: flex; gap: 9px; flex-wrap: wrap; }
.bbtn {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600;
  padding: 9px 16px; border-radius: 6px;
  text-decoration: none; transition: all 0.2s;
}
.bbtn-g { background: var(--grad); color: #061208; }
.bbtn-g:hover { box-shadow: 0 0 18px rgba(110,207,53,0.38); transform: translateY(-1px); }
.bbtn-o { border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.8); }
.bbtn-o:hover { border-color: rgba(110,207,53,0.5); color: var(--g4); transform: translateY(-1px); }
.bbtn-gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #1a0800; }
.bbtn-gold:hover { box-shadow: 0 0 16px rgba(212,180,74,0.4); transform: translateY(-1px); }

/* hover shimmer */
.bcard::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(110,207,53,0.04), transparent 60%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.bcard:hover::after { opacity: 1; }

/* ── TRUST ───────────────────────────────────────────────── */
#trust { padding: 110px 0; }
#trust .container {
  position: relative;
  max-width: 1320px;
}
.trust-inner {
  max-width: 760px; min-height: 380px; margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(110,207,53,0.13);
  border-radius: 20px; padding: 86px 52px 76px;
  text-align: center; position: relative; overflow: visible;
}
.trust-inner::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at 50% 0%, rgba(110,207,53,0.07), transparent 60%);
  pointer-events: none;
}
.trust-inner::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(110,207,53,0.05), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='980' height='520' viewBox='0 0 980 520'%3E%3Cg fill='none' stroke='%236ecf35' stroke-width='2' stroke-linecap='round' stroke-dasharray='10 11' opacity='.22'%3E%3Cpath d='M40 410 C180 275 90 150 250 78 S510 145 380 250 S530 445 690 320 S770 100 940 130'/%3E%3Cpath d='M110 120 C230 210 170 345 330 390 S560 350 625 190 S790 175 900 285'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
  pointer-events: none;
}
.trust-num {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 12vw, 9rem); line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 30px rgba(110,207,53,0.2));
}
.trust-label {
  font-size: 0.95rem; font-weight: 300; color: var(--muted);
  line-height: 1.75; margin-top: 14px; position: relative; z-index: 1;
}
.trust-seeds {
  display: flex; justify-content: center; gap: 10px; margin-top: 30px;
  position: relative; z-index: 1;
}
.trust-seeds span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad); opacity: 0.4;
}
.trust-seeds span:nth-child(2) { width: 40px; height: 8px; border-radius: 4px; opacity: 0.7; }

.review-floaters {
  position: absolute;
  inset: -74px 8px -92px;
  z-index: 2;
  pointer-events: none;
}
.review-card {
  position: absolute;
  width: clamp(230px, 22vw, 315px);
  border: 1px solid rgba(110,207,53,0.22);
  border-radius: 14px;
  padding: 18px 18px 24px;
  color: rgba(240,247,241,0.92);
  text-align: left;
  background:
    linear-gradient(145deg, rgba(16,28,18,0.96), rgba(8,15,9,0.88)),
    radial-gradient(circle at 90% 12%, rgba(110,207,53,0.14), transparent 32%);
  box-shadow: 0 20px 50px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.04) inset;
  animation: reviewFloat 7s ease-in-out infinite;
}
.review-card::after {
  content: '';
  position: absolute;
  left: 42px;
  bottom: -13px;
  width: 26px;
  height: 26px;
  background: linear-gradient(145deg, rgba(16,28,18,0.96), rgba(8,15,9,0.9));
  border-right: 1px solid rgba(110,207,53,0.18);
  border-bottom: 1px solid rgba(110,207,53,0.18);
  transform: rotate(45deg);
}
.review-card strong {
  display: block;
  margin: 8px 0;
  font-size: 0.92rem;
  line-height: 1.35;
}
.review-card p {
  color: rgba(240,247,241,0.68);
  font-size: 0.78rem;
  line-height: 1.55;
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(240,247,241,0.75);
}
.stars {
  color: #90a8ff;
  font-family: var(--sans);
  letter-spacing: 1px;
  white-space: nowrap;
}
.review-card.r1 { left: 0; top: 20px; transform: rotate(-5deg); animation-delay: -1s; }
.review-card.r2 { right: 2%; top: 8px; transform: rotate(4deg); animation-delay: -2.5s; }
.review-card.r3 { left: 2%; bottom: 8px; transform: rotate(4deg); animation-delay: -4s; }
.review-card.r4 { right: 0; bottom: 24px; transform: rotate(-4deg); animation-delay: -3s; }
.review-card.r5 { left: 50%; bottom: -34px; transform: translateX(-50%) rotate(2deg); animation-delay: -5s; }
.trust-leaf {
  position: absolute;
  z-index: 3;
  width: 62px;
  filter: drop-shadow(0 0 20px rgba(110,207,53,0.45));
  opacity: 0.9;
  animation: leafFloat 4.6s ease-in-out infinite;
}
.trust-leaf.leaf-a { left: 14%; top: 45%; transform: rotate(-24deg); }
.trust-leaf.leaf-b { right: 16%; top: 50%; transform: rotate(19deg); animation-delay: -2s; }
@keyframes reviewFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -16px; }
}

/* ── HIRE ────────────────────────────────────────────────── */
#hire { padding: 110px 0; }
.hire-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.hire-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  line-height: 1.1; margin-bottom: 22px;
}
.hire-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hire-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(110,207,53,0.08); border: 1px solid rgba(110,207,53,0.2);
  border-radius: 100px; padding: 10px 18px;
  font-size: 0.8rem; color: var(--g4); margin-bottom: 22px;
}
.hire-desc {
  font-size: 0.9rem; font-weight: 300; line-height: 1.85;
  color: var(--muted); margin-bottom: 30px;
}
.hire-mailto {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.78rem; color: var(--g4);
  transition: gap 0.2s;
}
.hire-mailto:hover { gap: 16px; }

.big-mail,
.hire-panel-button {
  background: var(--grad);
  color: #061208;
  border-radius: var(--r-btn);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  padding: 18px 34px;
  box-shadow: 0 14px 34px rgba(110,207,53,0.22);
}
.hire-panel {
  min-height: 320px;
  border: 1px solid rgba(110,207,53,0.16);
  border-radius: 18px;
  padding: 52px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(110,207,53,0.08), rgba(255,255,255,0.025));
}
.hire-panel::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(110,207,53,0.22);
  border-radius: 48% 52% 45% 55%;
}
.hire-panel-title {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(0.98rem, 1.9vw, 1.45rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.hire-panel-copy {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 18px 0 34px;
  color: var(--muted);
  line-height: 1.7;
}
.hire-panel-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
}
.hire-panel-leaf {
  position: absolute;
  right: 42px;
  bottom: 38px;
  width: 86px;
  opacity: 0.24;
  transform: rotate(18deg);
}

/* ── SOCIAL ──────────────────────────────────────────────── */
#social { padding: 80px 0 120px; }
.social-box {
  max-width: 700px; margin: 0 auto;
  border: 1px solid rgba(110,207,53,0.13);
  border-radius: 20px; padding: 60px 44px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  position: relative; overflow: hidden;
}
.social-box::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 105%, rgba(110,207,53,0.06), transparent 58%);
  pointer-events: none;
}
.social-ring {
  width: 68px; height: 68px; margin: 0 auto 26px;
  border-radius: 50%; border: 1.5px solid rgba(110,207,53,0.22);
  background: rgba(110,207,53,0.07);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.social-ring img { height: 34px; filter: brightness(0) invert(1); opacity: 0.88; }
.social-ring::after {
  content: ''; position: absolute; inset: -7px;
  border-radius: 50%; border: 1px dashed rgba(110,207,53,0.2);
  animation: spinSlow 14s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.soc-grid {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 38px; position: relative; z-index: 1;
}
.soc-link {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  color: var(--muted); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em;
  width: 90px; transition: color 0.2s, transform 0.22s;
}
.soc-link:hover { color: var(--white); transform: translateY(-5px); }
.soc-icon {
  width: 50px; height: 50px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; background: rgba(255,255,255,0.04);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.soc-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.soc-mark {
  font-family: var(--serif);
  color: #6ecf35;
}
.soc-link:hover .soc-icon {
  border-color: rgba(110,207,53,0.32);
  background: rgba(110,207,53,0.08);
  box-shadow: 0 0 16px rgba(110,207,53,0.1);
}
.soc-note {
  display: block; font-size: 0.58rem; color: rgba(110,207,53,0.7);
  font-family: var(--mono); margin-top: -3px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  position: relative; z-index: 2;
  padding: 28px 52px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.72rem; color: var(--dim); flex-wrap: wrap; gap: 10px;
}
footer a { color: rgba(110,207,53,0.5); transition: color 0.2s; }
footer a:hover { color: var(--g4); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 360px); }
  .bcard:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .bcard:nth-child(2) { grid-column: 1 / 2; grid-row: 2; }
  .bcard:nth-child(3) { grid-column: 2 / 3; grid-row: 2; }
  .bcard:nth-child(4) { grid-column: 1 / 2; grid-row: 3; }
  .bcard:nth-child(5) { grid-column: 2 / 3; grid-row: 3; }
  .hire-grid { grid-template-columns: 1fr; gap: 50px; }
  .trust-inner { min-height: 360px; }
  .review-floaters { position: relative; inset: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
  .review-card { position: relative; inset: auto !important; width: 100%; transform: none !important; }
  .review-card.r5 { grid-column: 1 / 3; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .container { padding: 0 20px; }
  .bento { grid-template-columns: 1fr; grid-template-rows: repeat(5, 340px); }
  .bcard:nth-child(n) { grid-column: 1; }
  .bcard:nth-child(1) { grid-row: 1; }
  .bcard:nth-child(2) { grid-row: 2; }
  .bcard:nth-child(3) { grid-row: 3; }
  .bcard:nth-child(4) { grid-row: 4; }
  .bcard:nth-child(5) { grid-row: 5; }
  #assets, #trust, #hire, #social { padding: 80px 0; }
  .hero-h1 { font-size: 3.2rem; line-height: 1; }
  .hero-ctas { margin-top: 34px; }
  .trust-inner { min-height: 0; padding: 74px 20px; }
  .review-floaters { grid-template-columns: 1fr; }
  .review-card.r5 { grid-column: auto; }
  .trust-leaf { width: 48px; }
  .hire-panel { padding: 42px 26px; }
  .hire-panel-title { font-size: 1.1rem; }
  .hire-panel::before { inset: 16px; }
  footer { padding: 24px 20px; flex-direction: column; text-align: center; }
}
