@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --ink: #050b18;
  --panel: #0e1a2b;
  --muted: #b7c5d9;
  --line: rgba(255, 255, 255, 0.08);
  --blue: #3E8FFC;
  --cyan: #0CCBE0;
  --coral: #FF5662;
  --green: #28d1a2;
}

body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1f2937;
  background: linear-gradient(180deg, #f9fbff 0%, #eef3fb 50%, #f7faff 100%);
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  color: var(--coral);
}

.page-shell {
  min-height: 100vh;
  background: radial-gradient(circle at 10% 20%, rgba(12, 203, 224, 0.15), transparent 30%),
              radial-gradient(circle at 80% 0%, rgba(255, 86, 98, 0.12), transparent 32%),
              linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 255, 0.95));
  padding-bottom: 64px;
}

.product-image-analyzer {
  --accent: var(--blue);
  --accent-2: var(--coral);
}

.product-mora {
  --accent: var(--coral);
  --accent-2: var(--cyan);
}

.product-cv-matcher {
  --accent: var(--blue);
  --accent-2: var(--green);
}

.content-wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding-top: 40px;
}

.breadcrumbs {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
}

.breadcrumbs a {
  color: #fff;
  opacity: 0.8;
}

.breadcrumbs a:hover {
  opacity: 1;
}

.hero {
  margin-top: 20px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(140deg, #0f1b2d, #13294a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.hero-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(62, 143, 252, 0.15);
}

h1 {
  font-family: 'Crimson Text', 'Times New Roman', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: #0f172a;
  margin: 14px 0 8px;
}

.hero h1 {
  color: #fff;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: #2c3b52;
  margin-bottom: 20px;
}

.hero .lead {
  color: #d7e3f2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 24px;
}

.tag {
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid #dce6f5;
  background: #f2f6ff;
  color: #1f2937;
  font-size: 13px;
}

.hero .tag {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #e8eef7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(130deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 86, 98, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(62, 143, 252, 0.4);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  background: #0c182d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px;
  color: #e8eef7;
}

.stat h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  opacity: 0.9;
}

.stat strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  color: #fff;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: #cdd8e9;
  font-size: 13px;
}

.section {
  margin-top: 38px;
}

.section h2 {
  font-family: 'Crimson Text', 'Times New Roman', serif;
  font-size: 30px;
  margin-bottom: 10px;
  color: #0f172a;
}

.section p {
  margin: 0 0 12px;
  color: #2c3b52;
  line-height: 1.7;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #dce6f5;
  color: #0f172a;
  font-size: 14px;
}

.hero .pill {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e8eef7;
}

.layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.section.layout-grid {
  background: #ffffff;
  border: 1px solid #e5eaf1;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.card {
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5eaf1;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.stepper {
  display: grid;
  gap: 14px;
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e5eaf1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 203, 224, 0.08), rgba(255, 86, 98, 0.06));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.step:hover::after {
  opacity: 1;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.step h3 {
  margin: 0;
  color: #0f172a;
  font-size: 17px;
}

.step p {
  margin: 6px 0 0;
  color: #2c3b52;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.feature {
  background: #fff;
  border: 1px solid #e5eaf1;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.feature strong {
  display: block;
  color: #0f172a;
  margin-bottom: 6px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: #2c3b52;
}

.list li {
  margin-bottom: 6px;
}

.cta-block {
  margin-top: 34px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(12, 203, 224, 0.24), rgba(62, 143, 252, 0.22), rgba(255, 86, 98, 0.2));
  border: 1px solid rgba(12, 33, 68, 0.15);
  color: #0f172a;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.cta-block p {
  margin: 0;
  color: #0f172a;
}

.hero-visual {
  position: relative;
  border-radius: 20px;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12), transparent 45%),
              radial-gradient(circle at 80% 10%, rgba(255, 86, 98, 0.32), transparent 50%),
              rgba(7, 15, 33, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 220px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero-visual img {
  max-width: 78%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.badge-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge-stack .pill {
  background: rgba(0, 0, 0, 0.3);
}

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

  .hero {
    padding: 24px;
  }

  .hero-visual img {
    max-width: 90%;
  }
}

@media (max-width: 640px) {
  .content-wrap {
    width: 94vw;
  }

  .hero {
    padding: 18px;
  }

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

  .btn {
    width: 100%;
  }
}
