/* ─── Hero ────────────────────────────────── */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  padding: 0;
  min-height: calc(100svh - var(--hero-offset-desktop));
}

.hero-now-arrow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 3520ms ease;
  z-index: 1;
}

.hero-now-arrow.ready {
  opacity: 0.9;
}

.hero-now-arrow-line {
  fill: none;
  stroke: #ff6b4a;
  stroke-width: 4.5;
  stroke-dasharray: 16 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 107, 74, 0.35));
}

#hero-now-arrow-head path {
  fill: none;
  stroke: #ff6b4a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 107, 74, 0.35));
}

.hero-cloud { display: none; }

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  animation: heroTextEntrance 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.8;
  margin: 0;
}

.hero-text h1 {
  margin: 0;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.typewriter-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: 2.3em;
  max-width: 90vw;
  width: 100%;
  overflow: hidden;
}

.highlight-name {
  color: var(--orange);
  text-shadow: 0 0 32px rgba(255, 127, 80, 0.3);
}

.hero-role {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.96;
  text-align: center;
  text-shadow: 0 0 14px rgba(154, 213, 214, 0.28);
  position: relative;
  z-index: 0;
  overflow: visible;
}

.hero-role::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(154, 213, 214, 0.42);
  background: rgba(154, 213, 214, 0.08);
  clip-path: polygon(7% 0, 92% 0, 93.5% 1.5%, 99% 48.5%, 99% 51.5%, 93.5% 98.5%, 92% 100%, 7% 100%, 5.5% 98.5%, 0 51.5%, 0 48.5%, 5.5% 1.5%);
  box-shadow: 0 0 26px rgba(154, 213, 214, 0.14), inset 0 0 14px rgba(154, 213, 214, 0.08);
  z-index: -2;
}

.hero-role::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(154, 213, 214, 0.15) 0px,
    rgba(154, 213, 214, 0.15) 1px,
    transparent 1px,
    transparent 9px
  );
  clip-path: polygon(11% 0, 89% 0, 90.2% 1.2%, 95.7% 48.8%, 95.7% 51.2%, 90.2% 98.8%, 89% 100%, 11% 100%, 9.8% 98.8%, 4.3% 51.2%, 4.3% 48.8%, 9.8% 1.2%);
  z-index: -1;
}

.hero-role-badge {
  position: absolute;
  top: 75%;
  left: 3.5%;
  transform: translate(calc(-50% - 10px), calc(-50% + 4px));
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(154, 213, 214, 0.6);
  border-radius: 50%;
  background: rgba(154, 213, 214, 0.08);
  color: rgba(154, 213, 214, 0.95);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1;
  z-index: 2;
}

.mobile-now-note {
  display: none;
  margin: 0;
  max-width: 680px;
  font-family: var(--body);
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}

.hero-role-icon {
  display: none;
}

.lede {
  font-family: var(--body);
  color: var(--muted);
  max-width: 680px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  margin: 0;
}

.lede-delayed {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1650ms cubic-bezier(0.22, 1, 0.36, 1), transform 1650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lede-delayed.ready {
  opacity: 1;
  transform: translateY(0);
}

/* hero stats row */
.hero-stats {
  display: flex;
  gap: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1;
  font-family: var(--body);
}

.stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.status-chip {
  display: inline-flex;
  position: relative;
  isolation: isolate;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(181, 214, 124, 0.1);
  border: 1px solid rgba(181, 214, 124, 0.5);
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(181, 214, 124, 0.18), 0 0 6px rgba(181, 214, 124, 0.12);
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── Portrait ────────────────────────────── */

.portrait-stack {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.portrait-frame {
  animation: portraitEntrance 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  width: 320px;
  height: 420px;
  border-radius: 160px;
  overflow: hidden;
  background: #0c1b1f;
  border: 1px solid rgba(154, 213, 214, 0.12);
  box-shadow:
    0 0 0 8px rgba(154, 213, 214, 0.03),
    0 0 80px rgba(154, 213, 214, 0.08),
    0 40px 80px rgba(0,0,0,0.6);
  position: relative;
  will-change: transform;
}


@keyframes coinSpin {
  0% {
    transform: rotateY(0deg) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    transform: rotateY(360deg) scale(1.08);
    opacity: 1;
  }
  96% {
    transform: rotateY(0deg) scale(1.01);
    opacity: 1;
  }
  100% {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
}

.portrait-frame.coin-spin {
  animation: coinSpin 2.2s cubic-bezier(0.19, 1, 0.22, 1) 0s both;
}

.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(242,181,168,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ─── Buttons ─────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid var(--rule);
  background: rgba(154, 213, 214, 0.05);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn.primary {
  background: rgba(154, 213, 214, 0.12);
  border-color: rgba(154, 213, 214, 0.3);
  color: var(--accent);
}

.btn.ghost { background: transparent; }

.btn:hover {
  background: rgba(154, 213, 214, 0.1);
  border-color: rgba(154, 213, 214, 0.3);
  transform: translateY(-1px);
}

.btn.primary:hover {
  background: rgba(154, 213, 214, 0.2);
  border-color: rgba(154, 213, 214, 0.5);
}

.btn-icon { width: 13px; height: 13px; flex-shrink: 0; }

/* ─── Contact chips ───────────────────────── */

.contact-chip {
  font-family: var(--mono);
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(154, 213, 214, 0.4);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(154, 213, 214, 0.15), 0 0 6px rgba(154, 213, 214, 0.1);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.contact-chip-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-chip-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-chip.contact-chip-icon {
  padding: 10px 14px;
  min-width: 0;
}

.contact-chip.contact-chip-icon::after {
  content: "";
}

.contact-chip:hover {
  color: var(--ink);
  border-color: rgba(154, 213, 214, 0.7);
  box-shadow: 0 0 28px rgba(154, 213, 214, 0.25), 0 0 8px rgba(154, 213, 214, 0.15);
}

