:root {
  --ork-bg: #07111f;
  --ork-bg-2: #0b1728;
  --ork-panel: rgba(15, 23, 42, 0.72);
  --ork-panel-strong: rgba(15, 23, 42, 0.92);
  --ork-border: rgba(148, 163, 184, 0.16);
  --ork-text: #e2e8f0;
  --ork-text-soft: #94a3b8;
  --ork-title: #f8fafc;
  --ork-primary: #7c6cff;
  --ork-primary-2: #2f7df6;
  --ork-cyan: #27c9ff;
  --ork-success: #14b8a6;
  --ork-warning: #f59e0b;
  --ork-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --ork-glow: 0 0 40px rgba(124, 108, 255, 0.20);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--ork-text);
  background:
    radial-gradient(circle at 10% 0%, rgba(124,108,255,.18), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(47,125,246,.15), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(39,201,255,.08), transparent 28%),
    linear-gradient(180deg, #050c17 0%, #081321 35%, #091625 100%);
  background-attachment: fixed;
}

a {
  text-decoration: none;
}

.ork-navbar {
  background: rgba(6, 12, 22, 0.72) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  min-height: 82px;
}

.ork-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ork-title) !important;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ork-brand-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 22px rgba(124,108,255,.20));
}

.ork-brand-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.navbar .nav-link {
  color: #cbd5e1 !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #ffffff !important;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 5.5rem;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.hero-section::before {
  width: 360px;
  height: 360px;
  background: rgba(124,108,255,.18);
  top: -60px;
  left: -80px;
}

.hero-section::after {
  width: 340px;
  height: 340px;
  background: rgba(47,125,246,.16);
  top: 30px;
  right: -60px;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(124,108,255,.20);
  box-shadow: var(--ork-glow);
  margin-bottom: 1.5rem;
}

.hero-logo {
  max-height: 62px;
  width: auto;
  display: block;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(124,108,255,.20);
  color: #c4b5fd;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--ork-glow);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--ork-title);
  margin-bottom: 1.4rem;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #b9a8ff 45%, #6ecfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.14rem;
  line-height: 1.85;
  color: #cbd5e1;
  max-width: 720px;
  margin-bottom: 2rem;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.proof-pill {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: #dbe7f5;
  font-size: 0.92rem;
  font-weight: 600;
}

.ork-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.95rem;
  padding: 0.9rem 1.3rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
}

.ork-btn-lg {
  padding: 1rem 1.45rem;
}

.ork-btn-gradient {
  background: linear-gradient(135deg, var(--ork-primary) 0%, var(--ork-primary-2) 100%);
  color: #fff;
  box-shadow: 0 18px 45px rgba(124, 108, 255, 0.30);
}

.ork-btn-gradient:hover {
  color: #fff;
  opacity: 0.97;
  transform: translateY(-1px);
}

.ork-btn-darkglass {
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  backdrop-filter: blur(12px);
}

.ork-btn-darkglass:hover {
  color: #fff;
  background: rgba(15, 23, 42, 0.75);
}

.section-padding {
  padding: 6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(10,18,32,.55) 0%, rgba(7,17,31,.25) 100%);
  border-top: 1px solid rgba(148,163,184,.05);
  border-bottom: 1px solid rgba(148,163,184,.05);
}

.section-heading {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.08;
  font-weight: 800;
  color: var(--ork-title);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ork-text-soft);
  font-size: 1.05rem;
}

.glass-panel,
.feature-card,
.story-card,
.quote-box,
.form-card,
.integration-card,
.widget-card,
.value-list-card,
.pricing-card,
.faq-card,
.cta-box,
.benefit-card,
.usecase-card,
.comparison-summary-card,
.comparison-card,
.slider-block {
  background: var(--ork-panel);
  border: 1px solid var(--ork-border);
  border-radius: 1.4rem;
  box-shadow: var(--ork-shadow);
  backdrop-filter: blur(18px);
}

.hero-shot-panel {
  padding: 1rem;
  position: relative;
  box-shadow: var(--ork-shadow), var(--ork-glow);
}

.window-bar {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.55);
}

.hero-shot-main {
  position: relative;
  z-index: 1;
}

.product-shot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

.bordered-shot {
  border: 1px solid rgba(148,163,184,.12);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.widget-shot {
  border-radius: 1.1rem 1.1rem 0 0;
}

.floating-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(124,108,255,.15);
  color: #f8fafc;
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(0,0,0,.30), 0 0 25px rgba(124,108,255,.10);
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  z-index: 2;
  animation: floatY 5s ease-in-out infinite;
}

.floating-card-1 {
  top: 82px;
  right: 14px;
}

.floating-card-2 {
  bottom: 28px;
  left: 20px;
  animation-delay: .8s;
}

.floating-card-3 {
  bottom: 104px;
  right: 28px;
  animation-delay: 1.4s;
}

.feature-card {
  height: 100%;
  padding: 1.55rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover,
.widget-card:hover,
.pricing-card:hover,
.faq-card:hover,
.benefit-card:hover,
.usecase-card:hover,
.comparison-card:hover,
.comparison-summary-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124,108,255,.28);
  box-shadow: var(--ork-shadow), 0 0 24px rgba(124,108,255,.10);
}

.icon-bubble {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(124,108,255,.20), rgba(47,125,246,.16));
  border: 1px solid rgba(124,108,255,.16);
  box-shadow: 0 0 24px rgba(124,108,255,.10);
}

.feature-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}

.section-before-after {
  position: relative;
  overflow: hidden;
}

.section-before-after::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(124,108,255,.06), transparent 20%),
    radial-gradient(circle at 85% 70%, rgba(39,201,255,.05), transparent 22%);
  pointer-events: none;
}

.comparison-top-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.comparison-summary-card {
  padding: 1.5rem;
}

.comparison-summary-core {
  border-color: rgba(148,163,184,.18);
}

.comparison-summary-ork {
  border-color: rgba(124,108,255,.25);
  box-shadow: var(--ork-shadow), var(--ork-glow);
}

.comparison-kicker {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  margin-bottom: .7rem;
  color: #c4b5fd;
}

.comparison-summary-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
}

.comparison-summary-card p {
  margin: 0;
  color: var(--ork-text-soft);
  line-height: 1.75;
}

.slider-block {
  padding: 1.4rem;
  border-color: rgba(124,108,255,.22);
  box-shadow: var(--ork-shadow), 0 0 24px rgba(124,108,255,.08);
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.slider-title {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.slider-legend {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}

.legend-pill {
  display: inline-flex;
  align-items: center;
  padding: .45rem .72rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
}

.legend-core {
  background: rgba(148,163,184,.12);
  border: 1px solid rgba(148,163,184,.18);
  color: #dbe7f5;
}

.legend-ork {
  background: rgba(124,108,255,.14);
  border: 1px solid rgba(124,108,255,.22);
  color: #d9d0ff;
}

.before-after-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(148,163,184,.12);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  background: rgba(9, 17, 31, 0.75);
}

.slider-image {
  width: 100%;
  display: block;
  user-select: none;
  pointer-events: none;
}

.slider-image-base {
  position: relative;
  z-index: 1;
}

.slider-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  z-index: 2;
  border-right: 1px solid rgba(255,255,255,.18);
}

.slider-overlay .slider-image {
  width: auto;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  z-index: 3;
}

.slider-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 0 18px rgba(255,255,255,.25);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ork-primary), var(--ork-primary-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(124,108,255,.28);
}

.slider-label {
  position: absolute;
  top: 16px;
  z-index: 4;
  padding: .45rem .72rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.slider-label-left {
  left: 16px;
  background: rgba(15,23,42,.82);
  border: 1px solid rgba(148,163,184,.18);
  color: #e2e8f0;
}

.slider-label-right {
  right: 16px;
  background: rgba(15,23,42,.88);
  border: 1px solid rgba(124,108,255,.20);
  color: #fff;
}

.slider-range-wrap {
  margin-top: 1.2rem;
}

.slider-range {
  width: 100%;
  appearance: none;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(148,163,184,.2), rgba(124,108,255,.28));
  outline: none;
}

.slider-range::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ork-primary), var(--ork-primary-2));
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(124,108,255,.28);
}

.slider-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ork-primary), var(--ork-primary-2));
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(124,108,255,.28);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.comparison-card {
  overflow: hidden;
  height: 100%;
}

.comparison-card-core {
  border-color: rgba(148,163,184,.18);
}

.comparison-card-ork {
  border-color: rgba(124,108,255,.22);
  box-shadow: var(--ork-shadow), 0 0 24px rgba(124,108,255,.08);
}

.comparison-card-head {
  padding: 1.35rem 1.35rem 1rem;
}

.comparison-card-head h3 {
  font-size: 1.28rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .65rem;
}

.comparison-card-head p {
  margin: 0;
  color: var(--ork-text-soft);
  line-height: 1.7;
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  padding: .42rem .72rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: .85rem;
}

.comparison-badge-core {
  background: rgba(148,163,184,.12);
  border: 1px solid rgba(148,163,184,.18);
  color: #dbe7f5;
}

.comparison-badge-ork {
  background: rgba(124,108,255,.14);
  border: 1px solid rgba(124,108,255,.22);
  color: #d9d0ff;
}

.comparison-shot-wrap {
  padding: 0 1.1rem 1.1rem;
}

.comparison-shot {
  border-radius: 1rem;
  border: 1px solid rgba(148,163,184,.12);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.comparison-bottom-note {
  margin-top: 2rem;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(124,108,255,.12), rgba(47,125,246,.08));
  border: 1px solid rgba(124,108,255,.18);
  border-radius: 1.1rem;
  padding: 1rem 1.1rem;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(124,108,255,.08);
}

.section-benefits {
  background: linear-gradient(180deg, rgba(10,18,32,.4), rgba(7,17,31,.2));
}

.benefit-card {
  padding: 1.6rem;
  height: 100%;
  transition: all .25s ease;
}

.benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
}

.story-wrap {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.story-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background: linear-gradient(180deg, rgba(124,108,255,.35), rgba(47,125,246,.08));
}

.story-step {
  position: relative;
  padding-left: 84px;
  margin-bottom: 2rem;
}

.story-step:last-child {
  margin-bottom: 0;
}

.story-dot {
  position: absolute;
  left: 15px;
  top: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ork-primary), var(--ork-primary-2));
  border: 4px solid #081321;
  box-shadow: 0 0 24px rgba(124,108,255,.35);
}

.story-card {
  padding: 1.5rem;
}

.story-label {
  display: inline-block;
  color: #c4b5fd;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.story-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ork-title);
  margin-bottom: 0.9rem;
}

.widget-card {
  overflow: hidden;
  height: 100%;
}

.widget-card-body {
  padding: 1.2rem 1.25rem 1.35rem;
}

.usecase-card {
  padding: 1.5rem;
  height: 100%;
  transition: all .25s ease;
}

.usecase-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .7rem;
}

.quote-box,
.value-list-card {
  padding: 2rem;
  height: 100%;
}

.quote-text {
  font-size: 1.35rem;
  line-height: 1.65;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.quote-sub {
  margin: 0;
  color: var(--ork-text-soft);
}

.mini-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c4b5fd;
  font-weight: 800;
  margin-bottom: 1rem;
}

.integration-card {
  padding: 1.5rem;
  height: 100%;
}

.integration-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(124,108,255,.12);
  border: 1px solid rgba(124,108,255,.18);
  color: #dcd4ff;
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0.2rem;
}

.contact-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(49,46,129,.82) 0%, rgba(67,56,202,.78) 45%, rgba(37,99,235,.76) 100%);
  border: 1px solid rgba(124,108,255,.20);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: var(--ork-shadow), var(--ork-glow);
}

.contact-box::before,
.contact-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  filter: blur(5px);
}

.contact-box::before {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -40px;
}

.contact-box::after {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -30px;
}

.contact-box > * {
  position: relative;
  z-index: 1;
}

.contact-box h2,
.contact-box p,
.contact-box li,
.contact-box label {
  color: #fff;
}

.text-soft,
.small-soft {
  color: rgba(255,255,255,.86) !important;
}

.form-card {
  background: rgba(7, 17, 31, 0.28);
  border: 1px solid rgba(255,255,255,.10);
  padding: 1.5rem;
}

.form-control,
.form-select {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 0.95rem;
  padding: 0.9rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(124,108,255,.45);
  box-shadow: 0 0 0 0.25rem rgba(124,108,255,.14);
}

.footer-main {
  color: var(--ork-text-soft);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1040;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(124,108,255,.30);
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .7s ease forwards;
}

.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }
.delay-4 { animation-delay: .32s; }
.delay-5 { animation-delay: .40s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 1199.98px) {
  .floating-card {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.9rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .story-wrap::before {
    left: 20px;
  }

  .story-step {
    padding-left: 58px;
  }

  .story-dot {
    left: 5px;
  }

  .ork-brand-logo {
    height: 38px;
  }

  .comparison-top-cards,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .slider-header {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 7.5rem 0 4rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-padding {
    padding: 4.5rem 0;
  }

  .story-title {
    font-size: 1.35rem;
  }

  .contact-box {
    padding: 2rem 1.25rem;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 16px;
    text-align: center;
  }

  .ork-brand-text {
    display: none;
  }

  .hero-logo {
    max-height: 48px;
  }

  .slider-handle {
    width: 44px;
    height: 44px;
  }

  .slider-label {
    font-size: .74rem;
    padding: .4rem .62rem;
  }
}
.cta-after-slider {
  margin-top: 2rem;
}

.cta-box-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 1.3rem;
  background: linear-gradient(135deg, rgba(124,108,255,.12), rgba(47,125,246,.08));
  border: 1px solid rgba(124,108,255,.18);
}

.cta-text h3 {
  margin: 0 0 .3rem;
  font-size: 1.3rem;
  color: #fff;
}

.cta-text p {
  margin: 0;
  color: var(--ork-text-soft);
}

@media (max-width: 768px) {
  .cta-box-inline {
    flex-direction: column;
    text-align: center;
  }
}


.target-card {
  background: var(--ork-panel);
  border: 1px solid var(--ork-border);
  border-radius: 1.4rem;
  padding: 1.6rem;
  height: 100%;
  transition: all .25s ease;
}

.target-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,108,255,.28);
  box-shadow: var(--ork-shadow), 0 0 24px rgba(124,108,255,.12);
}

.target-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.target-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .6rem;
}
.pricing-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--ork-panel);
  border: 1px solid var(--ork-border);
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border: 1px solid rgba(124,108,255,.4);
  box-shadow: 0 0 30px rgba(124,108,255,.2);
}

.pricing-card .badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--ork-primary);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin: 1rem 0;
}

.price span {
  font-size: 1rem;
  color: var(--ork-text-soft);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.pricing-list li {
  margin-bottom: .5rem;
  color: var(--ork-text-soft);
}
