:root {
  --bg-dark: #050816;
  --bg-deep: #071a3a;
  --bg-accent: #1e3a8a;

  --text: #f8fbff;
  --muted: #93a4bd;
  --line: #1f2d46;
  --card: #0d1728;
  --card-2: #111d31;

  --primary: #3b82f6;
  --secondary: #6366f1;

  --blue: #3b82f6;
  --violet: #8b5cf6;
  --cyan: #22d3ee;
  --green: #22c55e;
  --orange: #f59e0b;

  --gradient: linear-gradient(135deg, #3b82f6, #6366f1);
  --gradient-main: linear-gradient(135deg, #050816, #071a3a, #1e3a8a);

  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.18), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(99, 102, 241, 0.16), transparent 30%),
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.08), transparent 35%),
    linear-gradient(180deg, #050816 0%, #071a3a 45%, #020617 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(59, 130, 246, 0.15), transparent 40%),
    linear-gradient(240deg, rgba(99, 102, 241, 0.12), transparent 40%);
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  top: -100px;
  left: -100px;
  filter: blur(80px);
  z-index: -1;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #dbeafe, #e0f2fe, #dbeafe);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
  padding: 12px 0;
  position: relative;
}

.brand-wrap {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
}

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

.brand-logo {
  height: 78px;
  width: auto;
  object-fit: contain;
  display: block;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  filter: none !important;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-name {
  display:bloack;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.05;
  color: #0f172a;
}

.brand-tagline {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
  color: #334155;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.12);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #6366f1);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-btn {
  min-width: 138px;
  min-height: 52px;
  padding: 0 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 900px) {
  .nav-inner {
    min-height: 78px;
  }

  .brand-logo {
    height: 50px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-tagline {
    font-size: 11.5px;
    max-width: 220px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav-btn {
    width:auto !important;
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    background: rgba(219, 234, 254, 0.98);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  .nav-links a::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .nav-inner {
    gap: 12px;
  }

  .brand-wrap {
    min-width: 0;
    flex: 1;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    height: 44px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-tagline {
    font-size: 10.5px;
    line-height: 1.3;
    max-width: 170px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border: none;
  color: white;
  box-shadow: 0 14px 34px rgba(59, 130, 246, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(59, 130, 246, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: white;
  border-color: var(--line);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.full {
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.20), transparent 40%),
    radial-gradient(circle at 70% 40%, rgba(99, 102, 241, 0.18), transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.tag,
.mini-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: #8ab4ff;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.mini-tag.danger {
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.16);
}

.mini-tag.success {
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.16);
}

.hero h1,
.section-head h2 {
  background: linear-gradient(90deg, #fff, #93c5fd, #6366f1);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.workflow-panel {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, rgba(13, 23, 40, 0.95), rgba(17, 29, 49, 0.95));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.workflow-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.flow-step h4 {
  margin: 0 0 6px;
  font-size: 17px;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.dot.blue { background: var(--blue); box-shadow: 0 0 16px var(--blue); }
.dot.violet { background: var(--violet); box-shadow: 0 0 16px var(--violet); }
.dot.cyan { background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.dot.green { background: var(--green); box-shadow: 0 0 16px var(--green); }
.dot.orange { background: var(--orange); box-shadow: 0 0 16px var(--orange); }

.flow-line {
  width: 2px;
  height: 22px;
  background: var(--line);
  margin: 8px 0 8px 5px;
}

/* SECTIONS */
.section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.section-head h2 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* PIPELINE */
.pipeline {
  display: grid;
  grid-template-columns: repeat(9, auto);
  gap: 12px;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 8px;
}

.pipe-card {
  min-width: 180px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.pipe-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: #8ab4ff;
  font-weight: 700;
}

.pipe-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.pipe-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pipe-arrow {
  color: #5f7598;
  font-size: 24px;
  font-weight: 700;
}

/* PROBLEM / SOLUTION */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dark-card {
  background: linear-gradient(180deg, rgba(13, 23, 40, 0.96), rgba(17, 29, 49, 0.96));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.dark-card h3 {
  margin: 18px 0 16px;
  font-size: 32px;
  line-height: 1.15;
}

.dark-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.95;
}

/* SNAPSHOTS */
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.snapshot-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow);
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #6d5efc);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.snapshot-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.snapshot-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.status-chip {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #8ab4ff;
  font-size: 12px;
  font-weight: 700;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pricing-dark-card {
  background: linear-gradient(180deg, rgba(13, 23, 40, 0.96), rgba(17, 29, 49, 0.96));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.pricing-dark-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.pricing-dark-card.active {
  border: 1px solid rgba(59, 130, 246, 0.8);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.35);
  transform: translateY(-6px);
}

.pricing-dark-card.active .btn {
  background: var(--gradient);
  color: white;
}

.pricing-dark-card.active .price-label {
  background: rgba(59, 130, 246, 0.16);
  color: #dbeafe;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.price-label {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 700;
}

.pricing-dark-card h3 {
  margin: 18px 0 10px;
  font-size: 28px;
}

.price {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.hidden-section {
  display: none;
}

.pricing-dark-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 18px;
}

.selected-plan {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #dbeafe;
  font-weight: 700;
}

/* UPLOAD */
.upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.upload-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.08;
}

.upload-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.upload-points {
  display: grid;
  gap: 10px;
  color: #dbeafe;
  font-weight: 600;
}

.upload-panel {
  background: linear-gradient(180deg, rgba(13, 23, 40, 0.96), rgba(17, 29, 49, 0.96));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.resume-form {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
  font-size: 14px;
  color: #dbeafe;
}

.form-group input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.03);
  color: white;
}

.form-group input::placeholder {
  color: #6f86a8;
}

.form-group input:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

.small-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* FINAL CTA */
.final-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(79, 70, 229, 0.2));
  border: 1px solid rgba(59, 130, 246, 0.22);
  padding: 54px 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.final-box h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.final-box p {
  margin: 0 0 24px;
  color: var(--muted);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer h3 {
  margin: 0 0 8px;
}

.footer h4 {
  margin: 0 0 14px;
  color: #dbeafe;
}

.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 14px;
  color: #7f93b2;
}

/* POPUP */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-overlay.show {
  display: flex;
}

.popup-box {
  width: min(92%, 420px);
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.popup-box h2,
.popup-box h3 {
  margin: 0 0 12px;
  color: #fff;
}

.popup-box p {
  margin: 0 0 10px;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .brand-name {
    font-size: 20px;
  }

  .brand-tagline {
    font-size: 11px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 8px 10px;
  }

  .nav-btn {
    min-width: 118px;
    height: 46px;
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .dual-grid,
  .snapshot-grid,
  .pricing-grid,
  .upload-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pipeline {
    grid-template-columns: 1fr;
  }

  .pipe-arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-inner {
    min-height: 74px;
    padding: 10px 0;
    gap: 10px;
    align-items: center;
  }

  .brand-wrap {
    flex: 1;
    min-width: 0;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .brand-logo {
    height: 52px;
    width: auto;
    flex-shrink: 0;
  }

  .brand-copy {
    min-width: 0;
    overflow: hidden;
  }

  .brand-name {
    font-size: 16px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-tagline {
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    order: 3;
    flex-shrink: 0;
  }

  .nav-btn {
    min-width: 110px;
    height: 42px;
    padding: 0 14px;
    font-size: 13px;
    order: 2;
    flex-shrink: 0;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(31, 45, 70, 0.12);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
  }

  .nav-links a::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .nav-inner {
    gap: 8px;
  }

  .brand-logo {
    height: 48px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-tagline {
    font-size: 9.5px;
    max-width: 130px;
  }

  .nav-btn {
    min-width: 102px;
    height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 70px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .workflow-panel,
  .dark-card,
  .pricing-dark-card,
  .upload-panel,
  .snapshot-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    min-height: 70px;
  }

  .brand-logo {
    height: 52px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-tagline {
    font-size: 9px;
    max-width: 110px;
  }

  .nav-btn {
    min-width: 96px;
    height: 38px;
    font-size: 11px;
    padding: 0 10px;
    border-radius: 12px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }
}