/* ============ HireWalks — Pure CSS3 ============ */
/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--hw-text-main);
  background: var(--hw-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 {
  font-family: 'Outfit', 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--hw-text-main);
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* Tokens (prefixed to avoid clashes with Tailwind's :root variables) */
:root {
  --hw-primary: #E83251;
  --hw-primary-hover: #c8253f;
  --hw-primary-soft: #FFF1F3;
  --hw-primary-glow: rgba(232, 50, 81, 0.18);
  --hw-bg: #ffffff;
  --hw-bg-soft: #fafafa;
  --hw-surface: #f7f7f8;
  --hw-text-main: #0c0c0e;
  --hw-text-muted: #6b6b73;
  --hw-border: #ececef;
  --hw-border-strong: #d9d9de;
  --hw-dark: #0c0c0e;
  --hw-shadow-sm: 0 1px 2px rgba(12,12,14,0.04);
  --hw-shadow-md: 0 8px 30px rgba(12,12,14,0.06);
  --hw-shadow-lg: 0 20px 50px rgba(12,12,14,0.10);
  --hw-radius-sm: 8px;
  --hw-radius-md: 14px;
  --hw-radius-lg: 24px;
  --hw-radius-xl: 32px;
  --hw-container: 1200px;
}

.container { width: 100%; max-width: var(--hw-container); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--hw-primary); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hw-text-muted);
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--hw-border);
  border-radius: 999px;
  background: #fff;
}
.eyebrow__dot { width: 6px; height: 6px; background: var(--hw-primary); border-radius: 50%; box-shadow: 0 0 0 4px var(--hw-primary-soft); }
.eyebrow--light { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }

/* Section heading */
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  margin: 18px 0 16px;
}
.section-head p { color: var(--hw-text-muted); font-size: 1.0625rem; }
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  max-width: 100%; text-align: left; margin-bottom: 56px;
}
.section-head--row h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); margin: 14px 0 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-weight: 600; font-size: 0.9375rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn i { font-size: 1.1em; }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--primary { background: var(--hw-primary); color: #fff; box-shadow: 0 8px 20px var(--hw-primary-glow); }
.btn--primary:hover { background: var(--hw-primary-hover); transform: translateY(-2px); box-shadow: 0 12px 26px var(--hw-primary-glow); }
.btn--outline { border-color: var(--hw-text-main); color: var(--hw-text-main); background: #fff; }
.btn--outline:hover { background: var(--hw-text-main); color: #fff; transform: translateY(-2px); }
.btn--ghost { color: var(--hw-text-main); background: transparent; }
.btn--ghost:hover { background: var(--hw-surface); }
.btn--dark { background: var(--hw-text-main); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--block { width: 100%; }

.link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--hw-primary); font-weight: 600; font-size: 0.95rem;
  border-bottom: 1px solid transparent; transition: border-color .25s ease, gap .25s ease;
}
.link:hover { border-color: var(--hw-primary); gap: 10px; }

/* ============ NAVIGATION ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hw-border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--hw-text-main);
}
.nav__logo--light { color: #fff; }
.nav__logo-img { width: 38px; height: 38px; display: block; }
.nav__logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--hw-primary);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.nav__logo-mark svg { width: 20px; height: 20px; }
.nav__logo-mark--light { background: var(--hw-primary); }
.nav__links { display: none; gap: 28px; }
.nav__links a {
  font-size: 0.9375rem; color: var(--hw-text-muted); font-weight: 500;
  transition: color .2s ease;
  position: relative;
}
.nav__links a:hover { color: var(--hw-text-main); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--hw-primary); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: inline-flex; flex-direction: column; gap: 4px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 10px; border: 1px solid var(--hw-border);
}
.nav__toggle span { width: 18px; height: 2px; background: var(--hw-text-main); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav__mobile {
  display: flex; flex-direction: column; gap: 12px;
  padding: 18px 24px 28px;
  border-bottom: 1px solid var(--hw-border);
  background: #fff;
}
.nav__mobile a { font-size: 1rem; color: var(--hw-text-main); }
.nav__mobile .btn { justify-content: center; }
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }
}
@media (max-width: 600px) {
  .nav__actions .btn { display: none; }
  .nav__actions .btn--hw-primary { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 64px 0 0;
  background:
    radial-gradient(800px 400px at 90% -10%, var(--hw-primary-soft) 0%, transparent 60%),
    radial-gradient(700px 380px at -10% 30%, #fff6f8 0%, transparent 60%),
    #fff;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: center;
  padding-bottom: 96px;
}
.hero__title {
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  margin: 22px 0 18px;
}
.hero__title-lead {
  display: block;
  white-space: nowrap;
}
.hero__title-accent {
  color: var(--hw-primary);
  display: inline-block;
  position: relative;
}
.hero__title-accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 12px; background: var(--hw-primary-soft); z-index: -1; border-radius: 4px;
}

/* Rotator (swaps between "Get Hired." and "Hire.") */
.rotator {
  position: relative;
  display: inline-block;
  vertical-align: top;
  min-width: 1ch;
  line-height: 1.05;
}
.rotator__word {
  display: inline-block;
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(36%) rotateX(-70deg);
  transform-origin: 50% 100%;
  transition: opacity 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}
.rotator__word.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.rotator__word.is-leaving {
  opacity: 0;
  transform: translateY(-36%) rotateX(70deg);
}
.hero__sub {
  color: var(--hw-text-muted); font-size: 1.125rem; max-width: 560px;
  margin-bottom: 32px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero__meta { display: flex; align-items: center; gap: 16px; }
.hero__meta p { color: var(--hw-text-muted); font-size: 0.9375rem; }
.hero__meta strong { color: var(--hw-text-main); font-weight: 700; }
.avatars { display: inline-flex; }
.avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-left: -10px;
}
.avatars span:first-child { margin-left: 0; }

.hero__visual { position: relative; min-height: 420px; }
.hero__card { position: absolute; border-radius: var(--hw-radius-lg); background: #fff; box-shadow: var(--hw-shadow-lg); overflow: hidden; }
.hero__card--main {
  position: relative; width: 100%; max-width: 480px; aspect-ratio: 4/5;
  margin: 0 auto;
  border-radius: var(--hw-radius-xl);
}
.hero__card--main img { width: 100%; height: 100%; object-fit: cover; }
.hero__card-overlay {
  position: absolute; inset: auto 0 0 0;
  padding: 20px;
}
.hero__card-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: 999px;
  font-size: 0.875rem; font-weight: 600; color: var(--hw-text-main);
  box-shadow: var(--hw-shadow-sm);
}
.hero__card-pill i { color: #16a34a; }
.hero__card--float {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #fff;
  top: 20px; right: -20px;
  border-radius: var(--hw-radius-md);
  animation: float 4s ease-in-out infinite;
}
.hero__chip { width: 44px; height: 44px; border-radius: 12px; background: var(--hw-primary-soft); color: var(--hw-primary); display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.hero__chip-title { font-weight: 700; font-size: 0.9375rem; }
.hero__chip-sub { color: var(--hw-text-muted); font-size: 0.8125rem; }
.hero__card--ribbon {
  bottom: -10px; left: -10px;
  padding: 10px 14px; border-radius: 999px;
  background: var(--hw-text-main); color: #fff;
  font-size: 0.8125rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  animation: float 5s ease-in-out infinite;
  animation-delay: 0.5s;
}
.ribbon-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 4px rgba(34,197,94,0.25); animation: pulse 1.6s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.05fr 1fr; gap: 64px; padding-bottom: 120px; }
  .hero__visual { min-height: 560px; }
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--hw-border);
  border-bottom: 1px solid var(--hw-border);
  padding: 28px 0;
  background: var(--hw-bg-soft);
  overflow: hidden;
}
.marquee__label {
  text-align: center; color: var(--hw-text-muted);
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.marquee__track { display: flex; gap: 64px; width: max-content; animation: scroll 30s linear infinite; }
.marquee__row { display: flex; gap: 32px; align-items: center; flex-shrink: 0; }
.marquee__row span {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.5rem;
  color: var(--hw-text-main); opacity: 0.5;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 32px)); }
}

/* ============ PORTALS ============ */
.portals { padding: 100px 0; }
.portal-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.portal-card {
  position: relative;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--hw-border);
  border-radius: var(--hw-radius-lg);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.portal-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--hw-primary); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.portal-card:hover { transform: translateY(-4px); border-color: var(--hw-primary); box-shadow: var(--hw-shadow-lg); }
.portal-card:hover::before { transform: scaleX(1); }
.portal-card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--hw-primary-soft); color: var(--hw-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 24px;
}
.portal-card--recruiter .portal-card__icon { background: #0c0c0e; color: #fff; }
.portal-card h3 { font-size: 1.75rem; margin-bottom: 12px; }
.portal-card > p { color: var(--hw-text-muted); margin-bottom: 24px; }
.portal-card__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.portal-card__list li { display: flex; align-items: center; gap: 10px; color: var(--hw-text-main); font-weight: 500; }
.portal-card__list i { color: var(--hw-primary); font-size: 1rem; }
.portal-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (min-width: 800px) { .portal-grid { grid-template-columns: 1fr 1fr; } }

/* ============ FEATURES ============ */
.features { padding: 100px 0; background: var(--hw-bg-soft); }
.features__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.feature-card {
  position: relative;
  padding: 40px 32px 32px;
  background: #fff;
  border: 1px solid var(--hw-border);
  border-radius: var(--hw-radius-lg);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--hw-primary); box-shadow: var(--hw-shadow-md); }
.feature-card__num {
  position: absolute; top: 24px; right: 32px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.875rem;
  color: var(--hw-text-muted); letter-spacing: 0.12em;
}
.feature-card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--hw-primary-soft); color: var(--hw-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 28px;
}
.feature-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.feature-card p { color: var(--hw-text-muted); margin-bottom: 24px; }
.feature-card--accent { background: var(--hw-text-main); border-color: var(--hw-text-main); }
.feature-card--accent h3, .feature-card--accent .feature-card__num { color: #fff; }
.feature-card--accent p { color: rgba(255,255,255,0.7); }
.feature-card--accent .feature-card__icon { background: rgba(255,255,255,0.08); color: #fff; }
.feature-card--accent .link { color: #fff; }
.feature-card--accent .link:hover { border-color: #fff; }

@media (min-width: 800px) { .features__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============ STATS ============ */
.stats { padding: 100px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.stat {
  padding: 32px 28px;
  border: 1px solid var(--hw-border);
  border-radius: var(--hw-radius-lg);
  background: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat:hover { transform: translateY(-4px); border-color: var(--hw-primary); }
.stat__num {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--hw-primary); letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 12px;
}
.stat p { color: var(--hw-text-muted); font-weight: 500; font-size: 0.9375rem; }

@media (min-width: 800px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px) { .section-head--row { flex-direction: column; align-items: flex-start; } }

/* ============ CATEGORIES ============ */
.categories { padding: 100px 0; background: var(--hw-bg-soft); }
.categories__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.cat-card {
  display: flex; align-items: center; gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--hw-border);
  border-radius: var(--hw-radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cat-card:hover { transform: translateY(-3px); border-color: var(--hw-primary); box-shadow: var(--hw-shadow-sm); }
.cat-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--hw-primary-soft); color: var(--hw-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.cat-card h3 { font-size: 1.0625rem; font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: -0.01em; }
.cat-card p { color: var(--hw-text-muted); font-size: 0.875rem; }
.cat-card__arrow { margin-left: auto; color: var(--hw-text-muted); transition: color .25s ease, transform .25s ease; }
.cat-card:hover .cat-card__arrow { color: var(--hw-primary); transform: translate(3px, -3px); }
.cat-card--more { background: var(--hw-text-main); color: #fff; border-color: var(--hw-text-main); }
.cat-card--more p { color: rgba(255,255,255,0.65); }
.cat-card--more .cat-card__arrow { color: #fff; }
.cat-card--more:hover .cat-card__arrow { transform: translateX(4px); }

@media (min-width: 700px) { .categories__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .categories__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 100px 0; }
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.testimonial {
  position: relative;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--hw-border);
  border-radius: var(--hw-radius-lg);
  margin: 0;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--hw-primary); box-shadow: var(--hw-shadow-md); }
.testimonial__quote { font-size: 2rem; color: var(--hw-primary-soft); margin-bottom: -12px; }
.testimonial--accent .testimonial__quote { color: rgba(255,255,255,0.15); }
.testimonial blockquote { font-size: 1.0625rem; color: var(--hw-text-main); margin: 0 0 28px; line-height: 1.5; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar { width: 48px; height: 48px; border-radius: 50%; background-size: cover; background-position: center; }
.testimonial__author strong { display: block; font-size: 0.9375rem; font-weight: 700; }
.testimonial__author span { font-size: 0.8125rem; color: var(--hw-text-muted); }
.testimonial--accent { background: var(--hw-text-main); border-color: var(--hw-text-main); }
.testimonial--accent blockquote, .testimonial--accent .testimonial__author strong { color: #fff; }
.testimonial--accent .testimonial__author span { color: rgba(255,255,255,0.6); }

@media (min-width: 900px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============ DOWNLOAD ============ */
.download {
  padding: 100px 0;
  background: var(--hw-text-main);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.download::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, var(--hw-primary-glow), transparent 70%);
  pointer-events: none;
}
.download__inner {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: center; position: relative; z-index: 1;
}
.download__content h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 18px 0 16px; }
.download__content p { color: rgba(255,255,255,0.7); font-size: 1.0625rem; margin-bottom: 32px; max-width: 480px; }
.download__buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--hw-text-main);
  padding: 12px 22px; border-radius: 14px;
  transition: transform .25s ease, background .25s ease;
}
.store-btn:hover { transform: translateY(-2px); background: var(--hw-primary); color: #fff; }
.store-btn i { font-size: 1.8rem; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.1; }
.store-btn small { font-size: 0.6875rem; opacity: 0.7; }
.store-btn strong { font-size: 1rem; font-weight: 700; }

/* Phone mockup */
.download__visual { display: flex; justify-content: center; }
.phone {
  width: 280px; height: 560px;
  background: #fff; border-radius: 40px;
  padding: 14px; box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative;
}
.phone__notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px; background: var(--hw-text-main); border-radius: 14px;
  z-index: 2;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 28px;
  background: var(--hw-bg-soft); padding: 50px 22px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.phone__head { display: flex; justify-content: space-between; align-items: center; }
.phone__time { font-weight: 700; font-size: 0.875rem; color: var(--hw-text-main); }
.phone__dots { width: 24px; height: 6px; background: var(--hw-text-main); border-radius: 3px; opacity: 0.3; }
.phone__title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--hw-text-main); letter-spacing: -0.02em; }
.phone__sub { color: var(--hw-text-muted); font-size: 0.875rem; margin-top: -8px; }
.phone__card {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 14px; background: #fff; border-radius: 14px;
  border: 1px solid var(--hw-border);
}
.phone__card-row { display: flex; align-items: center; gap: 12px; }
.phone__logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--hw-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: 'Outfit', sans-serif;
}
.phone__logo--alt { background: var(--hw-text-main); }
.phone__card-row strong { font-size: 0.875rem; color: var(--hw-text-main); display: block; }
.phone__card-row small { font-size: 0.75rem; color: var(--hw-text-muted); }
.phone__tag {
  font-size: 0.7rem; font-weight: 700; padding: 4px 8px;
  background: var(--hw-primary-soft); color: var(--hw-primary);
  border-radius: 999px; white-space: nowrap;
}
.phone__cta {
  margin-top: auto; padding: 14px; background: var(--hw-primary); color: #fff;
  border-radius: 14px; text-align: center; font-weight: 700; font-size: 0.9375rem;
}

@media (min-width: 900px) {
  .download__inner { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}

/* ============ FINAL CTA ============ */
.finalcta { padding: 100px 0; }
.finalcta__card {
  padding: 64px 40px;
  background:
    radial-gradient(600px 300px at 20% 20%, var(--hw-primary-soft) 0%, transparent 60%),
    var(--hw-bg-soft);
  border: 1px solid var(--hw-border);
  border-radius: var(--hw-radius-xl);
  text-align: center;
}
.finalcta__card h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 16px; }
.finalcta__card p { color: var(--hw-text-muted); font-size: 1.0625rem; margin-bottom: 32px; }
.finalcta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { background: var(--hw-text-main); color: #fff; padding: 80px 0 24px; }
.footer__inner {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .nav__logo { color: #fff; }
.footer__tag { color: rgba(255,255,255,0.65); margin: 16px 0 20px; font-size: 0.9375rem; max-width: 320px; }
.footer__contact { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.9375rem; }
.footer__contact a:hover { color: var(--hw-primary); }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.footer__col h4 { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase; font-family: 'Manrope', sans-serif; }
.footer__col a { display: block; font-size: 0.9375rem; color: rgba(255,255,255,0.65); margin-bottom: 10px; transition: color .2s ease; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 24px;
  color: rgba(255,255,255,0.5); font-size: 0.875rem;
  align-items: center; text-align: center;
}
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.footer__socials a:hover { background: var(--hw-primary); border-color: var(--hw-primary); transform: translateY(-2px); }

@media (min-width: 800px) {
  .footer__inner { grid-template-columns: 1.2fr 2fr; gap: 64px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Hide emergent badge on tiny screens to avoid clutter */
@media (max-width: 480px) {
  #emergent-badge { transform: scale(0.85); transform-origin: bottom right; }
}
