/* ── HERO ── */
#hero {
  min-height: 100vh;
  padding: 140px 48px 100px 64px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: forb 9s ease-in-out infinite;
}
.o1 { width: 600px; height: 600px; background: rgba(180, 83, 9, .12); right: -160px; top: -160px;   animation-delay: 0s;  }
.o2 { width: 380px; height: 380px; background: rgba(15, 118, 110, .07);   left: 60px;   bottom: -80px;  animation-delay: -4s; }
.o3 { width: 250px; height: 250px; background: rgba(220, 38, 38, .06); left: 40%;    top: 30%;       animation-delay: -2s; }

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(180, 83, 9, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 83, 9, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 100%);
}

.hero-inner { position: relative; z-index: 1; width: 100%; }

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.hero-text { flex: 1; min-width: 0; max-width: 620px; }

/* ── PHOTO ── */
.hero-photo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 420px;
  height: 520px;
  margin-right: 32px;
  opacity: 0;
  animation: fup .9s .3s forwards;
}

.hero-photo {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border2);
  filter: none;
  position: relative;
  z-index: 1;
}

.hero-photo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 36px;
  border: 1px solid rgba(180, 83, 9, .25);
  z-index: 0;
  animation: forb 9s ease-in-out infinite;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fm);
  font-size: 11.5px;
  color: var(--a);
  background: rgba(180, 83, 9, .1);
  border: 1px solid rgba(180, 83, 9, .22);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fup .8s .1s forwards;
}
.hero-chip::before { content: '▶'; font-size: 8px; }

h1.ht {
  font-family: var(--fh);
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  opacity: 0;
  animation: fup .9s .2s forwards;
}
h1.ht .dim { color: var(--t2); }
.hero-name-line { display: block; white-space: nowrap; }

/* Typed line — fixed height so layout never shifts */
.typed-line {
  display: block;
  min-height: 1.1em;
  overflow: hidden;
}

h1.ht .acc {
  color: var(--a);
  white-space: nowrap;
  display: inline-block;
}

/* Blinking cursor after typed text */
h1.ht .acc::after {
  content: '|';
  color: var(--a);
  animation: blink .75s step-end infinite;
  margin-left: 3px;
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-desc {
  font-size: 17.5px;
  color: var(--t2);
  max-width: 520px;
  line-height: 1.82;
  font-weight: 300;
  margin: 32px 0 44px;
  opacity: 0;
  animation: fup .8s .35s forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fup .8s .45s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  transition: all .25s;
  border: none;
  cursor: none;
  font-family: var(--fb);
}
.btn-p { background: var(--a); color: #fff; padding: 14px 34px; }
.btn-p:hover { background: #c46c10; transform: translateY(-2px); box-shadow: 0 20px 48px rgba(180, 83, 9, .35); }
.btn-o { background: transparent; border: 1px solid var(--border2); color: var(--t2); padding: 14px 34px; }
.btn-o:hover { border-color: var(--a); color: var(--a); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 76px;
  padding-top: 52px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fup .8s .55s forwards;
  flex-wrap: wrap;
}
.stat-n { font-family: var(--fh); font-size: 40px; font-weight: 700; color: var(--t); line-height: 1; }
.stat-l { font-size: 12px; color: var(--t3); margin-top: 5px; font-family: var(--fm); }
