/* HRDirectly — matte black / matte white theme */

:root {
  color-scheme: dark light;

  --surface: #0a0a0a;
  --surface-elevated: #111111;
  --surface-card: #171717;
  --surface-header: rgba(10, 10, 10, 0.9);
  --text: #f5f5f5;
  --text-secondary: #a3a3a3;
  --text-muted: #737373;
  --border: #262626;
  --accent: #f5f5f5;
  --accent-hover: #e5e5e5;
  --accent-fg: #0a0a0a;
  --success: #22c55e;
  --danger: #ef4444;
  --shadow: rgba(0, 0, 0, 0.45);
  --overlay: rgba(255, 255, 255, 0.05);
  --overlay-strong: rgba(255, 255, 255, 0.09);
  --orb: rgba(255, 255, 255, 0.04);
  --phone-screen: #0a0a0a;
  --phone-screen-alt: #111111;
}

@media (prefers-color-scheme: light) {
  :root {
    --surface: #fafafa;
    --surface-elevated: #f5f5f5;
    --surface-card: #ffffff;
    --surface-header: rgba(250, 250, 250, 0.92);
    --text: #0a0a0a;
    --text-secondary: #525252;
    --text-muted: #737373;
    --border: #e5e5e5;
    --accent: #0a0a0a;
    --accent-hover: #171717;
    --accent-fg: #fafafa;
    --shadow: rgba(0, 0, 0, 0.1);
    --overlay: rgba(0, 0, 0, 0.04);
    --overlay-strong: rgba(0, 0, 0, 0.07);
    --orb: rgba(0, 0, 0, 0.04);
    --phone-screen: #0a0a0a;
    --phone-screen-alt: #111111;
  }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content { flex: 1; }

/* ── Header ─────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-header);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 16px var(--shadow);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--text);
  background: var(--overlay);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: 0 8px 24px var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-hover);
  box-shadow: 0 12px 32px var(--shadow);
}

.btn-secondary {
  background: var(--text);
  color: var(--surface);
}

.btn-ghost {
  background: var(--overlay);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 14px 24px; font-size: 16px; }
.btn-xl { padding: 18px 32px; font-size: 18px; }

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

.hero {
  position: relative;
  overflow: visible;
  padding: 80px 24px 100px;
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  background: var(--orb);
}

.orb-1 {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -80px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -60px;
}

.orb-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 45%;
  opacity: 0.5;
}

.grid-floor {
  position: absolute;
  bottom: 0;
  left: -20%;
  right: -20%;
  height: 45%;
  background:
    linear-gradient(180deg, transparent, var(--overlay)),
    repeating-linear-gradient(
      90deg,
      var(--overlay) 0,
      var(--overlay) 1px,
      transparent 1px,
      transparent 48px
    ),
    repeating-linear-gradient(
      0deg,
      var(--overlay) 0,
      var(--overlay) 1px,
      transparent 1px,
      transparent 48px
    );
  transform: perspective(600px) rotateX(72deg);
  transform-origin: center bottom;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--overlay);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
  white-space: pre-line;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-card {
  padding: 16px;
  min-width: 120px;
  background: var(--overlay);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-card strong {
  font-size: 1.5rem;
  font-weight: 800;
}

.stat-label { font-size: 13px; font-weight: 600; }
.stat-sub { font-size: 12px; color: var(--text-muted); }

/* ── 3D phone scene ─────────────────────────────────── */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
  padding: 16px 40px;
  overflow: visible;
}

.scene-3d {
  position: relative;
  width: 100%;
  max-width: 420px;
  perspective: 1600px;
  perspective-origin: 50% 50%;
}

.scene-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -48%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--overlay-strong) 0%,
    transparent 72%
  );
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.phone-stack {
  position: relative;
  width: 340px;
  height: 560px;
  margin: 0 auto;
  transform-style: preserve-3d;
  animation: floatScene 8s ease-in-out infinite alternate;
  z-index: 1;
}

.phone {
  position: absolute;
  width: 250px;
  height: 520px;
  border-radius: 38px;
  padding: 2px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.06) 35%,
    rgba(0, 0, 0, 0.85) 100%
  );
  box-shadow:
    0 50px 100px var(--shadow),
    0 0 0 1px var(--border),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.phone-bezel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: var(--phone-screen);
}

.phone-back {
  top: 36px;
  left: 0;
  transform: translateZ(-90px) rotateY(26deg) rotateX(2deg) scale(0.94);
  opacity: 0.65;
}

.phone-front {
  top: 0;
  left: 72px;
  transform: translateZ(60px) rotateY(-16deg) rotateX(4deg);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  border-radius: 11px;
  background: #000;
  z-index: 3;
}

.phone-screen {
  height: 100%;
  padding: 38px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.screen-session {
  background: linear-gradient(165deg, #111111 0%, #0a0a0a 55%, #050505 100%);
}

.screen-jobs {
  background: linear-gradient(165deg, #141414 0%, #0a0a0a 100%);
}

.screen-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.status-time {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 7px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #fecaca;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 100px;
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
  animation: pulseLive 1.5s ease-in-out infinite;
}

.screen-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}

.session-header {
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  flex-shrink: 0;
}

.hr-profile {
  display: flex;
  gap: 9px;
  align-items: center;
}

.mock-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #404040, #737373);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.avatar-initials {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.hr-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.hr-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hr-name {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.verified-badge {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
}

.hr-role {
  font-size: 10px;
  color: var(--text-secondary);
}

.hr-rating {
  font-size: 9px;
  color: #fbbf24;
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-height: 0;
  justify-content: center;
}

.chat-bubble {
  max-width: 90%;
  padding: 7px 10px;
  font-size: 9.5px;
  line-height: 1.4;
  border-radius: 12px;
}

.chat-bubble.incoming {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom-left-radius: 3px;
  color: rgba(255, 255, 255, 0.92);
}

.chat-bubble.outgoing {
  align-self: flex-end;
  background: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom-right-radius: 3px;
  color: #0a0a0a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.video-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.video-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
}

.wave-bar {
  width: 3px;
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(180deg, #d4d4d4, #a3a3a3);
  animation: waveAnim 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1)  { animation-delay: 0.0s; height: 10px; }
.wave-bar:nth-child(2)  { animation-delay: 0.1s; height: 18px; }
.wave-bar:nth-child(3)  { animation-delay: 0.2s; height: 14px; }
.wave-bar:nth-child(4)  { animation-delay: 0.3s; height: 22px; }
.wave-bar:nth-child(5)  { animation-delay: 0.15s; height: 16px; }
.wave-bar:nth-child(6)  { animation-delay: 0.25s; height: 24px; }
.wave-bar:nth-child(7)  { animation-delay: 0.05s; height: 20px; }
.wave-bar:nth-child(8)  { animation-delay: 0.35s; height: 14px; }
.wave-bar:nth-child(9)  { animation-delay: 0.2s; height: 18px; }
.wave-bar:nth-child(10) { animation-delay: 0.1s; height: 12px; }
.wave-bar:nth-child(11) { animation-delay: 0.3s; height: 16px; }
.wave-bar:nth-child(12) { animation-delay: 0.0s; height: 10px; }

.session-timer {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.8);
}

.session-controls {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.ctrl-btn {
  flex: 1;
  padding: 7px 2px;
  font-size: 8.5px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  cursor: default;
}

.ctrl-btn.active {
  color: #0a0a0a;
  background: #f5f5f5;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

/* Back phone — job cards */
.job-card {
  padding: 9px 10px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.job-card.muted {
  opacity: 0.5;
}

.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.job-badge {
  padding: 2px 6px;
  font-size: 8px;
  font-weight: 700;
  color: #86efac;
  background: rgba(22, 163, 74, 0.22);
  border-radius: 100px;
}

.job-salary {
  font-size: 9px;
  font-weight: 700;
  color: #d4d4d4;
}

.job-title {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 2px;
}

.job-meta {
  font-size: 9px;
  color: var(--text-muted);
}

/* Floating badges */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  background: var(--surface-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: 0 20px 40px var(--shadow);
  white-space: nowrap;
}

.fc-icon-wrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 9px;
  flex-shrink: 0;
}

.fc-icon-wrap.green {
  background: rgba(22, 163, 74, 0.22);
  color: #4ade80;
}

.fc-icon-wrap.muted {
  background: var(--overlay-strong);
}

.fc-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.fc-text strong {
  font-size: 12px;
  font-weight: 700;
}

.fc-text span {
  font-size: 10px;
  color: var(--text-muted);
}

.float-verified {
  top: 24px;
  right: -8px;
  transform: translateZ(80px);
  animation: floatCard1 4.5s ease-in-out infinite alternate;
}

.float-roles {
  bottom: 64px;
  left: -4px;
  transform: translateZ(100px);
  animation: floatCard2 5.5s ease-in-out infinite alternate;
}

@keyframes floatScene {
  0% { transform: rotateY(-5deg) rotateX(2deg) translateY(0); }
  100% { transform: rotateY(5deg) rotateX(-1deg) translateY(-10px); }
}

@keyframes floatCard1 {
  0% { transform: translateZ(80px) translateY(0); }
  100% { transform: translateZ(80px) translateY(-8px); }
}

@keyframes floatCard2 {
  0% { transform: translateZ(100px) translateY(0); }
  100% { transform: translateZ(100px) translateY(8px); }
}

@keyframes pulseLive {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.8); }
}

@keyframes waveAnim {
  0%, 100% { transform: scaleY(0.45); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ── Sections ───────────────────────────────────────── */

.section {
  padding: 96px 24px;
}

.section-alt {
  background: var(--surface-elevated);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 48px;
  max-width: 640px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin: 0;
}

.section-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-grid.compact {
  grid-template-columns: 1fr;
}

.feature-card {
  padding: 28px;
  background: var(--overlay);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--text-muted);
  box-shadow: 0 20px 40px var(--shadow);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0;
}

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

.split-copy h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 16px;
}

.split-copy p {
  color: var(--text-secondary);
  margin: 0 0 28px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  padding: 32px;
  background: var(--overlay);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  opacity: 0.12;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.step-card p {
  color: var(--text-secondary);
  margin: 0;
}

.capability-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.capability-chip {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  background: var(--overlay);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.check { color: var(--success); }

/* ── CTA ────────────────────────────────────────────── */

.cta-section {
  padding: 80px 24px;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 32px;
  border-radius: 32px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px var(--shadow);
}

.cta-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 16px;
}

.cta-inner p {
  color: var(--text-secondary);
  margin: 0 0 28px;
}

/* ── Footer ─────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  background: var(--surface-elevated);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  margin: 6px 0 0;
}

.footer-columns {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin: 0 0 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

/* ── Legal ──────────────────────────────────────────── */

.legal-page {
  padding: 64px 24px;
}

.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.legal-updated {
  color: var(--text-muted);
  margin: 0 0 32px;
}

.legal-inner h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 24px 0 12px;
}

.legal-inner p,
.legal-inner li {
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.legal-inner ul {
  padding-left: 24px;
  margin: 0 0 16px;
}

.support-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.support-card {
  padding: 24px;
  background: var(--overlay);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.support-card h3 {
  margin: 0 0 8px;
}

.support-card p {
  margin: 0 0 16px;
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 960px) {
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 420px;
    padding: 8px 16px;
  }

  .feature-grid,
  .steps-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .phone-stack {
    transform: scale(0.78);
    transform-origin: center top;
  }

  .float-verified { right: 4px; }
  .float-roles { left: 4px; }
}
