

#home {
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 40px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1;
  max-width: 520px;
}

/* ── Available badge ── */
.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  background: var(--black-2);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s var(--ease-out) 0.1s forwards;
}

.available-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulseDot 2s infinite;
}

/* ── Heading ── */
.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s var(--ease-out) 0.2s forwards;
}

/* ── Subtitle ── */
.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s var(--ease-out) 0.35s forwards;
}

/* ── CTA buttons ── */
.hero-actions {
  display: flex;
  gap: 14px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s var(--ease-out) 0.5s forwards;
}

/* ── Right visual ── */
.hero-right {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(32px);
  animation: fadeFromRight 0.9s var(--ease-out) 0.4s forwards;
}

.hero-visual {
  position: relative;
  display: inline-block;
}

.hero-card-main {
  width: 260px;
  height: 320px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.hero-card-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black-3) 0%, transparent 60%);
}

.hero-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--black-4) 0%, var(--black-5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.hero-card-chip {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 72px;
  height: 72px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-secondary);
}

.hero-card-chip2 {
  position: absolute;
  bottom: 40px;
  left: -50px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
}