:root {
  /* Light, green-tinted system */
  --bg-primary: #173826;
  --bg-secondary: rgba(236, 253, 245, 0.72);
  /* mint glass */
  --bg-elevated: rgba(255, 255, 255, 0.72);
  /* white glass */

  --text-primary: #173826;
  --text-secondary: rgba(23, 56, 38, 0.78);
  --text-muted: rgba(23, 56, 38, 0.55);

  --accent: #34d399;
  /* emerald-400 */
  --accent-hover: #6ee7b7;
  /* emerald-300 */
  --accent-glow: rgba(52, 211, 153, 0.35);
  --accent-subtle: rgba(52, 211, 153, 0.18);

  --border: rgba(23, 56, 38, 0.18);

  /* Page background gradient (was "Unified" gradient) */
  --gradient-start: #34d399;
  --gradient-mid: #ecfdf5;
  --gradient-end: #ffffff;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui,
    sans-serif;
  background: transparent;
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animated Background (now the page background gradient) */
.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(135deg,
      var(--gradient-start) 0%,
      var(--gradient-mid) 55%,
      var(--gradient-end) 100%);
  background-size: 220% 220%;
  animation: gradientShift 16s ease infinite;
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Floating Orbs (green-tinted) */
.floating-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.35;
  will-change: transform;
  animation: floatOrb 20s ease-in-out infinite;
  z-index: -1;
}

.orb-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle,
      rgba(52, 211, 153, 0.35) 0%,
      transparent 70%);
  top: -220px;
  right: -220px;
  animation-delay: 0s;
}

.orb-2 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle,
      rgba(16, 185, 129, 0.28) 0%,
      transparent 70%);
  bottom: 18%;
  left: -140px;
  animation-delay: -7s;
  animation-duration: 25s;
}

.orb-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle,
      rgba(52, 211, 153, 0.22) 0%,
      transparent 70%);
  top: 52%;
  right: 12%;
  animation-delay: -14s;
  animation-duration: 30s;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -40px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(40px, 30px) scale(1.02);
  }
}

/* Navigation - ALWAYS VISIBLE AT TOP */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.15rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(236, 253, 245, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  /* Always visible - no transform or opacity changes */
  transform: translateY(0);
  opacity: 1;
  transition: none;
}

.nav-logo {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(23, 56, 38, 0.78);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 800;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bg-primary);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--bg-primary);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 14px 36px rgba(23, 56, 38, 0.18);
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #0f2d1e;
  box-shadow: 0 18px 44px rgba(23, 56, 38, 0.22);
}

.nav-links a:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid rgba(23, 56, 38, 0.55);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-headline {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 2rem;
  text-shadow: 0 10px 40px rgba(23, 56, 38, 0.08);
}

/* Kinetic Typography (character animation) */
.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotateX(-80deg);
  transform-origin: center bottom;
  animation: charReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line:nth-child(1) .char {
  --delay-base: 0.05s;
}

.hero-line:nth-child(2) .char {
  --delay-base: 0.35s;
}

.hero-line:nth-child(3) .char {
  --delay-base: 0.65s;
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

/* IMPORTANT: word highlight is now ink (background owns the gradient) */
.hero-line .gradient-text {
  color: var(--text-primary);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero-sub {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
  font-weight: 650;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
}

/* Magnetic CTA button */
.btn-primary {
  background: var(--bg-primary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 18px 60px rgba(23, 56, 38, 0.18);
  transform-style: preserve-3d;
  will-change: transform;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%,
      rgba(255, 255, 255, 0.26),
      transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg,
      rgba(52, 211, 153, 0.7),
      rgba(16, 185, 129, 0.35),
      rgba(52, 211, 153, 0.7));
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  filter: blur(16px);
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: #0f2d1e;
  box-shadow: 0 22px 70px rgba(23, 56, 38, 0.22);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover::after {
  opacity: 0.55;
}

.btn-primary:focus-visible {
  outline: 2px solid rgba(23, 56, 38, 0.55);
  outline-offset: 3px;
}

.link-secondary {
  color: rgba(23, 56, 38, 0.82);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  position: relative;
  transition: color 0.2s ease;
}

.link-secondary::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(23, 56, 38, 0.35);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-secondary:hover {
  color: var(--text-primary);
}

.link-secondary:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.link-secondary:focus-visible {
  outline: 2px solid rgba(23, 56, 38, 0.55);
  outline-offset: 4px;
}

/* Hero Shape */
.hero-shape {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
      rgba(23, 56, 38, 0.2) 0%,
      rgba(23, 56, 38, 0.05) 45%,
      transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}

/* Narrative */
.narrative {
  padding: 12rem 2rem;
  position: relative;
}

.narrative-content {
  max-width: 1000px;
  margin: 0 auto;
}

.narrative-text {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* Scroll-driven glow words */
.narrative-text .glow-word {
  display: inline;
  color: rgba(23, 56, 38, 0.48);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.narrative-text .glow-word.active {
  color: var(--text-primary);
  text-shadow: 0 0 40px rgba(23, 56, 38, 0.12);
}

.narrative-text .glow-word.accent {
  color: rgba(23, 56, 38, 0.48);
}

.narrative-text .glow-word.accent.active {
  color: #0f2d1e;
  text-shadow: 0 0 55px rgba(52, 211, 153, 0.25);
}

.narrative-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(23, 56, 38, 0.75),
      rgba(52, 211, 153, 0.55),
      transparent);
  margin: 4rem 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.narrative-divider.visible {
  opacity: 1;
  transform: scaleX(1);
}

/* Product */
.product {
  padding: 8rem 2rem 12rem;
  position: relative;
  perspective: 1000px;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.product-label {
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-primary);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(10px);
}

.product-label.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 760px;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
}

.product-title.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.product-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(10px);
  font-weight: 650;
}

.product-desc.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

/* UI Mockup (light) + 3D hover */
.ui-mockup {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 26px 90px -35px rgba(23, 56, 38, 0.22),
    0 0 0 1px rgba(23, 56, 38, 0.05) inset;
  opacity: 0;
  transform: translateY(60px) scale(0.95) rotateX(10deg);
  transform-style: preserve-3d;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ui-mockup.visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.ui-mockup:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 35px 120px -30px rgba(23, 56, 38, 0.24),
    0 0 0 1px rgba(23, 56, 38, 0.08) inset;
}

.ui-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: rgba(236, 253, 245, 0.9);
  border-bottom: 1px solid var(--border);
}

.ui-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(23, 56, 38, 0.18);
}

.ui-dot:nth-child(1) {
  background: #ff5f57;
}

.ui-dot:nth-child(2) {
  background: #febc2e;
}

.ui-dot:nth-child(3) {
  background: #28c840;
}

.ui-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 420px;
}

.ui-sidebar {
  background: rgba(236, 253, 245, 0.65);
  border-right: 1px solid var(--border);
  padding: 1.5rem;
}

.ui-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: rgba(23, 56, 38, 0.78);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  transition: all 0.2s ease;
  font-weight: 800;
}

.ui-nav-item.active {
  background: var(--accent-subtle);
  color: var(--bg-primary);
}

.ui-nav-icon {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: currentColor;
  opacity: 0.35;
}

.ui-main {
  padding: 2rem;
  color: rgba(23, 56, 38, 0.95);
}

.ui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.ui-title {
  font-size: 1.25rem;
  font-weight: 950;
}

.ui-btn {
  background: var(--bg-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(23, 56, 38, 0.16);
}

.ui-table {
  width: 100%;
}

.ui-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.ui-row:first-child {
  color: rgba(23, 56, 38, 0.55);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ui-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 800;
}

.ui-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28c840;
}

.ui-status-dot.pending {
  background: #febc2e;
}

/* Parallax Shape */
.parallax-shape {
  position: absolute;
  right: -110px;
  top: 50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(23, 56, 38, 0.14) 0%,
      rgba(23, 56, 38, 0.04) 45%,
      transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  will-change: transform;
}

/* Capabilities */
.capabilities {
  padding: 10rem 2rem;
  position: relative;
}

.capabilities-container {
  max-width: 900px;
  margin: 0 auto;
}

.capability {
  margin-bottom: 6rem;
  opacity: 0;
  transform: translateX(-40px);
  filter: blur(10px);
}

.capability.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability:nth-child(even) {
  transform: translateX(40px);
  text-align: right;
}

.capability:nth-child(even) .capability-desc {
  margin-left: auto;
}

.capability-number {
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  color: var(--bg-primary);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.capability-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.capability-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  font-weight: 650;
}

/* Trust */
.trust {
  padding: 8rem 2rem;
  background: rgba(236, 253, 245, 0.58);
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      var(--border),
      transparent);
}

.trust-container {
  max-width: 1000px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.trust-item {
  opacity: 0;
  transform: translateY(30px);
}

.trust-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-item:nth-child(2).visible {
  transition-delay: 0.1s;
}

.trust-item:nth-child(3).visible {
  transition-delay: 0.2s;
}

.trust-item:nth-child(4).visible {
  transition-delay: 0.3s;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(23, 56, 38, 0.18);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--bg-primary);
}

.trust-title {
  font-size: 1.125rem;
  font-weight: 950;
  margin-bottom: 0.5rem;
}

.trust-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 650;
}

/* Testimonial */
.testimonial {
  text-align: center;
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 0 24px 80px -45px rgba(23, 56, 38, 0.25);
}

.testimonial.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.testimonial-quote {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-style: italic;
  color: rgba(23, 56, 38, 0.95);
}

.testimonial-author {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 650;
}

.testimonial-author strong {
  color: var(--text-primary);
  font-weight: 950;
}

/* Pricing Section - Card Layout Refactor */
.pricing {
  padding: 10rem 2rem;
  position: relative;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(52, 211, 153, 0.06) 50%,
      transparent 100%);
}

.pricing-container {
  max-width: 1200px;
  /* Increased for wider row */
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 6rem;
}

.pricing-label,
.pricing-title,
.pricing-subtitle {
  opacity: 0;
  transform: translateY(20px);
}

.pricing-label {
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-primary);
  margin-bottom: 1.5rem;
}

.pricing-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.pricing-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 650;
}

.pricing-label.visible,
.pricing-title.visible,
.pricing-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-title.visible {
  transition-delay: 0.08s;
}

.pricing-subtitle.visible {
  transition-delay: 0.16s;
}

/* Card layout wrapper */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(40px);
  position: relative;
  /* Added to fix absolute highlights */
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.featured {
  background: linear-gradient(135deg,
      rgba(52, 211, 153, 0.16) 0%,
      rgba(236, 253, 245, 0.85) 100%);
  border-color: rgba(23, 56, 38, 0.28);
  box-shadow: 0 32px 100px -40px rgba(23, 56, 38, 0.25);
  position: relative;
  z-index: 2;
  transform: scale(1.05);
  /* Slight pop */
}

.pricing-card.featured.visible {
  transform: translateY(0) scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 120px -50px rgba(23, 56, 38, 0.3);
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.06);
}

.card-header {
  margin-bottom: 2rem;
}

.card-tier {
  font-size: 0.875rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.card-price {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 980;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-primary);
}

.card-price .currency {
  font-size: 0.4em;
  vertical-align: super;
  margin-right: 0.1em;
  color: var(--text-secondary);
}

.card-price .period {
  font-size: 0.25em;
  font-weight: 800;
  color: var(--text-muted);
  margin-left: 0.25em;
}

.card-highlight {
  display: inline-block;
  background: var(--bg-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 950;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  letter-spacing: 0.05em;
}

.card-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 650;
  flex-grow: 1;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.card-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 650;
  text-align: left;
}

.card-feature svg {
  width: 18px;
  height: 18px;
  stroke: var(--bg-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 950;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.card-cta-primary {
  background: var(--bg-primary);
  color: #fff;
  box-shadow: 0 18px 60px rgba(23, 56, 38, 0.18);
}

.card-cta-primary:hover {
  background: #0f2d1e;
  box-shadow: 0 22px 70px rgba(23, 56, 38, 0.22);
}

.card-cta-secondary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.card-cta-secondary:hover {
  background: rgba(236, 253, 245, 0.85);
  border-color: rgba(23, 56, 38, 0.35);
}

.pricing-note {
  text-align: center;
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 650;
}

.pricing-note.visible {
  opacity: 1;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-note a {
  color: var(--bg-primary);
  text-decoration: none;
  font-weight: 900;
}

/* CTA */
.cta {
  padding: 10rem 2rem;
  background: linear-gradient(180deg,
      rgba(236, 253, 245, 0.55) 0%,
      rgba(255, 255, 255, 0.2) 100%);
  text-align: center;
  position: relative;
}

.cta-container {
  max-width: 720px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 980;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.cta-title.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  font-weight: 650;
}

.cta-desc.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
}

.cta-btn {
  opacity: 0;
  transform: translateY(20px);
}

.cta-btn.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.16s;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 950;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: rgba(23, 56, 38, 0.72);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-links a:focus-visible {
  outline: 2px solid rgba(23, 56, 38, 0.55);
  outline-offset: 4px;
  border-radius: 8px;
}

.footer-copy {
  color: rgba(23, 56, 38, 0.68);
  font-size: 0.8125rem;
  font-weight: 650;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .bg-gradient {
    animation: none;
  }

  .hero-line .char {
    opacity: 1;
    transform: none;
  }

  .hero-sub,
  .hero-actions {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured.visible {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .ui-body {
    grid-template-columns: 1fr;
  }

  .ui-sidebar {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .narrative {
    padding: 8rem 1.5rem;
  }

  .capabilities {
    padding: 6rem 1.5rem;
  }

  .pricing {
    padding: 6rem 1.5rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  z-index: 9999;
  transition: top 0.3s ease;
  font-weight: 950;
  box-shadow: 0 16px 40px rgba(23, 56, 38, 0.18);
}

.skip-link:focus {
  top: 1rem;
}