:root {
  --bg: #061225;
  --bg-2: #0a1830;
  --bg-3: #0f2343;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f8fafc;
  --muted: #9fb1c8;
  --muted-2: #cbd5e1;
  --primary: #8b5cf6;
  --primary-2: #7c5cff;
  --primary-3: #a855f7;
  --dark-btn: #0f172a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(124, 92, 255, 0.18), transparent 34%),
    radial-gradient(circle at 100% 20%, rgba(37, 99, 235, 0.18), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #08172e 45%, #091a34 100%);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.top-bar {
  background: linear-gradient(90deg, #4f46e5, #7c5cff);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.top-bar-inner {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.top-bar a {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(2, 6, 23, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav .active-link {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: 0.22s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: #101827;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.btn-dark:hover {
  background: #172134;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-2), var(--primary-3));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(124, 92, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 35px rgba(124, 92, 255, 0.36);
}

.hero-section {
  padding: 52px 0 20px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.16);
  color: #d8ccff;
  border: 1px solid rgba(124, 92, 255, 0.26);
  font-size: 12px;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 16px 0 16px;
  font-size: clamp(42px, 5.3vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 900;
  max-width: 680px;
}

.hero-text {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: var(--muted-2);
  font-size: 13px;
}

.hero-proof span {
  position: relative;
}

.hero-proof span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -12px;
  color: #64748b;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.24), transparent 68%);
  filter: blur(20px);
  z-index: 0;
}

.resume-mockup-card {
  position: relative;
  z-index: 2;
  width: min(100%, 510px);
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.resume-mockup {
  display: grid;
  grid-template-columns: 34% 66%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
}

.mock-sidebar {
  background: linear-gradient(180deg, #244d42, #1d453b);
  padding: 22px 16px;
  position: relative;
}

.mock-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 14px;
}

.mock-side-title {
  width: 72px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  margin-bottom: 12px;
}

.mock-side-title.second {
  margin-top: 20px;
}

.mock-side-line {
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.34);
  margin-bottom: 9px;
}

.mock-side-line.short { width: 58px; }
.mock-side-line.medium { width: 88px; }
.mock-side-line.long { width: 104px; }

.mock-main {
  padding: 22px 20px;
  color: #0f172a;
}

.mock-name {
  font-size: 28px;
  font-weight: 800;
  color: #5b61f6;
  margin-bottom: 4px;
}

.mock-role {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 14px;
  font-weight: 600;
}

.mock-meta,
.mock-section-title,
.mock-line {
  border-radius: 999px;
  background: #dbe4f2;
}

.mock-meta {
  width: 94px;
  height: 8px;
  margin-bottom: 18px;
}

.mock-section {
  margin-bottom: 18px;
}

.mock-section-title {
  width: 80px;
  height: 10px;
  margin-bottom: 10px;
}

.mock-line {
  height: 8px;
  margin-bottom: 8px;
}

.mock-line.long { width: 100%; }
.mock-line.medium { width: 78%; }
.mock-line.short { width: 52%; }

.floating-card {
  position: absolute;
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.94);
  color: #0f172a;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 220px;
}

.floating-card strong {
  font-size: 12px;
  line-height: 1.35;
}

.floating-card span {
  font-size: 11px;
  line-height: 1.45;
  color: #64748b;
}

.floating-card-1 {
  top: 40px;
  right: -18px;
}

.floating-card-2 {
  bottom: 76px;
  left: -26px;
}

.floating-card-3 {
  bottom: -8px;
  right: 26px;
}

.feature-strip-section {
  padding: 10px 0 8px;
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
  font-size: 13px;
  color: #c7d2fe;
  padding: 12px 16px;
}

.feature-strip span {
  position: relative;
}

.feature-strip span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -16px;
  color: #64748b;
}

.stats-section,
.feature-highlight-section,
.benefits-section,
.templates-section {
  padding: 72px 0 10px;
}

.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card,
.benefit-card,
.template-card,
.dashboard-card,
.cta-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stat-card {
  border-radius: 18px;
  padding: 26px 18px;
  text-align: center;
}

.stat-number {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: #c4b5fd;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.feature-highlight-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.dashboard-card {
  border-radius: 24px;
  padding: 16px;
}

.dashboard-top {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.dashboard-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.26);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

.dashboard-left {
  background: #eef2ff;
  padding: 16px 12px;
}

.dashboard-chip {
  height: 16px;
  border-radius: 999px;
  background: #dbe4f2;
  margin-bottom: 12px;
}

.dashboard-chip.active {
  background: #c7d2fe;
}

.dashboard-right {
  padding: 18px 16px;
}

.dash-title,
.dash-line {
  border-radius: 999px;
  background: #dbe4f2;
}

.dash-title {
  width: 120px;
  height: 12px;
  margin-bottom: 14px;
}

.dash-line {
  height: 9px;
  margin-bottom: 10px;
}

.dash-line.long { width: 100%; }
.dash-line.medium { width: 82%; }
.dash-line.short { width: 54%; }

.feature-highlight-copy h2 {
  margin: 14px 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.feature-highlight-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-list {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.65;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: #8b5cf6;
  font-weight: 900;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  border-radius: 20px;
  padding: 24px;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 92, 255, 0.18);
  color: #d8ccff;
  font-weight: 800;
  margin-bottom: 14px;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.template-card {
  border-radius: 20px;
  padding: 16px;
}

.template-preview {
  min-height: 180px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.mini-page {
  width: 110px;
  height: 138px;
  background: #ffffff;
  border-radius: 8px;
  padding: 12px;
}

.mini-page.split {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
}

.mini-sidebar {
  background: #dbe4f2;
  border-radius: 6px;
}

.mini-main {
  display: flex;
  flex-direction: column;
}

.mini-line {
  height: 6px;
  border-radius: 999px;
  background: #dbe4f2;
  margin-bottom: 7px;
}

.mini-line.title {
  height: 8px;
  width: 62px;
}

.mini-line.long { width: 100%; }
.mini-line.medium { width: 72%; }
.mini-line.short { width: 52%; }

.template-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 800;
}

.template-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.text-link {
  color: #c4b5fd;
  font-size: 13px;
  font-weight: 700;
}

.text-link:hover {
  color: #ddd6fe;
}

.cta-section {
  padding: 80px 0 90px;
}

.cta-box {
  border-radius: 26px;
  padding: 34px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at left top, rgba(124, 92, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(124, 92, 255, 0.12), rgba(168, 85, 247, 0.08));
}

.cta-box h2 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.cta-box p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 26px 0 36px;
  background: rgba(2, 6, 23, 0.35);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
}

.footer-logo-image {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.footer-copy {
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffffff;
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.delay-1 { animation-delay: 0.06s; }
.delay-2 { animation-delay: 0.14s; }
.delay-3 { animation-delay: 0.22s; }
.delay-4 { animation-delay: 0.3s; }

.floating-soft {
  animation: floatSoft 5.8s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .feature-highlight-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-copy,
  .feature-highlight-copy {
    text-align: center;
  }

  .hero-text,
  .feature-highlight-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-proof,
  .cta-actions {
    justify-content: center;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .stats-grid,
  .benefits-grid,
  .template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .nav {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-copy h1,
  .section-heading h2,
  .feature-highlight-copy h2,
  .cta-box h2 {
    font-size: 34px;
  }

  .hero-text,
  .section-heading p,
  .feature-highlight-copy p,
  .cta-box p {
    font-size: 15px;
  }

  .stats-grid,
  .benefits-grid,
  .template-grid {
    grid-template-columns: 1fr;
  }

  .resume-mockup-card {
    padding: 16px;
  }

  .floating-card {
    position: static;
    margin-top: 10px;
    max-width: 100%;
  }

  .cta-box {
    padding: 24px;
  }

  .logo-image {
    height: 50px;
  }

  .footer-logo-image {
    height: 38px;
  }
}