/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
  --bg: #ffffff;
  --bg-soft: #f4f4f5;
  --bg-card: #ffffff;
  --text-primary: #09090b;
  --text-secondary: #71717a;
  --text-tertiary: #a1a1aa;
  --border: #e4e4e7;
  --border-strong: #d4d4d8;
  --dark: #09090b;
  --dark-hover: #27272a;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --nav-height: 4.5rem;
  --container: 1120px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ============================================
   Container
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-pill);
  font-size: 0.925rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.18s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-dark {
  background: #9eff1f;
  color: #0a0a0a;
  border-color: rgba(0, 0, 0, 0.12);
}

.btn-dark:hover {
  background: #8ae600;
  transform: translateY(-1px);
}

.btn-outline {
  background: #fff;
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  background: var(--bg-soft);
  border-color: var(--text-tertiary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.arrow {
  transition: transform 0.18s ease;
  display: inline-block;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ============================================
   Navigation — floating centered pill
   ============================================ */
.nav {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: top 0.3s ease;
}

.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: min(960px, calc(100% - 2rem));
  padding: 0.55rem 0.7rem 0.55rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav.scrolled .nav-pill {
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.92);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 30px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-right: auto;
}

.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.18s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  flex-direction: column;
  padding: 0.75rem 1.25rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
}

.mobile-menu a {
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn-mobile {
  margin-top: 1rem;
  text-align: center;
  border-bottom: none;
  color: #fff;
}

@media (max-width: 56em) {
  .nav-links, .nav-pill > .btn-nav {
    display: none;
  }
  .nav-pill {
    justify-content: space-between;
    padding: 0.55rem 0.85rem 0.55rem 1.35rem;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-menu.open {
    display: flex;
  }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 3.5rem) 0 4rem;
  position: relative;
  background:
    radial-gradient(60% 50% at 50% 0%, #fafafa 0%, #ffffff 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  height: clamp(70px, 10.5vw, 98px);
  width: auto;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  max-width: 16ch;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
}

/* ============================================
   Pillars
   ============================================ */
.pillars {
  padding: 2rem 0 5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

/* Colored variants for contrast */
.pillar-card--dark {
  background: #111114;
  border-color: #111114;
  color: #fff;
}

.pillar-card--accent {
  background: #9eff1f;
  border-color: #9eff1f;
  color: #0a0a0a;
}

.pillar-card--dark:hover,
.pillar-card--accent:hover {
  border-color: transparent;
}

.pillar-card--dark .pillar-num {
  color: rgba(255, 255, 255, 0.55);
}

.pillar-card--dark .pillar-text {
  color: rgba(255, 255, 255, 0.75);
}

.pillar-card--dark .text-link {
  color: #fff;
}

.pillar-card--accent .pillar-num {
  color: rgba(0, 0, 0, 0.55);
}

.pillar-card--accent .pillar-text {
  color: rgba(0, 0, 0, 0.72);
}

.pillar-card--accent .text-link {
  color: #0a0a0a;
}

.pillar-num {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 1.25rem;
}

.pillar-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.pillar-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

@media (max-width: 56em) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Featured
   ============================================ */
.featured {
  padding: 2rem 0 5rem;
}

.featured-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border: 1px solid var(--border);
}

.featured-label,
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
}

.featured-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.featured-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.text-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.text-link:hover .arrow {
  transform: translateX(3px);
}

/* ============================================
   Services
   ============================================ */
.services {
  padding: 5rem 0;
  background: var(--bg-soft);
}

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-top: 0.9rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #9eff1f;
  border: 1px solid #9eff1f;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  color: #0a0a0a;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

.service-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.service-arrow {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-tertiary);
  transition: transform 0.2s ease, color 0.2s ease;
}

.service-card:hover .service-arrow {
  color: var(--text-primary);
  transform: translateX(4px);
}

.service-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
}

.service-wide-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 0 0 auto;
  max-width: 360px;
}

.service-card--wide .service-icon {
  margin-bottom: 0;
}

.service-card--wide .service-name {
  margin-bottom: 0;
}

.service-card--wide .service-desc {
  flex: 1;
}

@media (max-width: 64em) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 48em) {
  .service-card--wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .service-card--wide .service-icon {
    margin-bottom: 0;
  }
}

@media (max-width: 40em) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Target customer note */
.target-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  margin-top: 1.5rem;
  padding: 1.35rem 1.75rem;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
}

.target-note-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

.target-note p {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
}

/* ============================================
   About / Investment
   ============================================ */
.about,
.investment {
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: #9eff1f;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid #9eff1f;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0a0a0a;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 56em) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Portfolio
   ============================================ */
.portfolio {
  padding: 5rem 0;
  background: var(--bg-soft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.portfolio-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.portfolio-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.portfolio-sector {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-tertiary);
  margin-bottom: 0.4rem;
}

.portfolio-name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.portfolio-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.portfolio-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.portfolio-link .ext {
  transition: transform 0.2s ease;
  color: var(--text-tertiary);
}

.portfolio-card:hover .portfolio-link .ext {
  transform: translate(2px, -2px);
  color: var(--text-primary);
}

@media (max-width: 64em) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 40em) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Contact
   ============================================ */
.contact {
  padding: 5rem 0 6rem;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
}

.contact-title {
  font-size: clamp(1.6rem, 5.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.contact-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-tertiary);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(9, 9, 11, 0.08);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  align-self: center;
  margin-top: 0.5rem;
}

@media (max-width: 40em) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 28px;
}

.footer-tagline {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.925rem;
  color: var(--text-secondary);
  transition: color 0.18s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

@media (max-width: 56em) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================
   Pricing page
   ============================================ */
.nav-links a.active {
  color: var(--text-primary);
  font-weight: 600;
}

.page-header {
  text-align: center;
  padding: calc(var(--nav-height) + 5rem) 0 3rem;
  background: radial-gradient(60% 60% at 50% 0%, #fafafa 0%, #ffffff 70%);
}

.page-header .hero-badge {
  margin-bottom: 1.5rem;
}

.page-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.page-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing {
  padding: 2rem 0 6rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}

.price-card-featured {
  background: var(--dark);
  border-color: var(--dark);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.price-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.price-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 1.25rem;
}

.price-card-featured .price-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.price-value {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-unit {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-tertiary);
}

.price-card-featured .price-unit {
  color: rgba(255, 255, 255, 0.6);
}

.price-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.price-card-featured .price-desc {
  color: rgba(255, 255, 255, 0.7);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex: 1;
}

.price-features li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--bg-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2309090b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.price-card-featured .price-features li {
  color: rgba(255, 255, 255, 0.8);
}

.price-card-featured .price-features li::before {
  background: rgba(255, 255, 255, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.price-cta {
  width: 100%;
}

.price-card-featured .btn-dark {
  background: #fff;
  color: var(--dark);
}

.price-card-featured .btn-dark:hover {
  background: rgba(255, 255, 255, 0.88);
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-note a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 48em) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Motion & Ambient Animation
   ============================================ */

/* Keep decorative orbs from causing scroll, and lift content above them */
.hero,
.pillars,
.services,
.investment,
.portfolio,
.contact {
  position: relative;
  overflow: hidden;
}

.hero .container,
.pillars .container,
.services .container,
.investment .container,
.portfolio .container,
.contact .container {
  position: relative;
  z-index: 1;
}

/* Ambient drifting orbs (pure CSS, behind content) */
.hero::before,
.hero::after,
.pillars::before,
.pillars::after,
.services::before,
.investment::before,
.investment::after,
.portfolio::before,
.contact::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
  will-change: transform;
}

.hero::before {
  width: 540px;
  height: 540px;
  top: -200px;
  left: -140px;
  background: radial-gradient(circle, rgba(158, 255, 31, 0.28), rgba(158, 255, 31, 0) 70%);
  animation: drift 26s ease-in-out infinite;
}

.hero::after {
  width: 460px;
  height: 460px;
  bottom: -200px;
  right: -120px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.16), rgba(34, 197, 94, 0) 70%);
  animation: driftAlt 32s ease-in-out infinite;
}

.pillars::before {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(158, 255, 31, 0.16), rgba(158, 255, 31, 0) 70%);
  animation: driftAlt 30s ease-in-out infinite;
}

.pillars::after {
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: -60px;
  background: radial-gradient(circle, rgba(9, 9, 11, 0.05), rgba(9, 9, 11, 0) 70%);
  animation: drift 36s ease-in-out infinite;
}

.services::before {
  width: 460px;
  height: 460px;
  top: 10%;
  left: -180px;
  background: radial-gradient(circle, rgba(158, 255, 31, 0.14), rgba(158, 255, 31, 0) 70%);
  animation: drift 34s ease-in-out infinite;
}

.investment::before {
  width: 420px;
  height: 420px;
  top: -140px;
  left: 20%;
  background: radial-gradient(circle, rgba(158, 255, 31, 0.18), rgba(158, 255, 31, 0) 70%);
  animation: driftAlt 28s ease-in-out infinite;
}

.investment::after {
  width: 320px;
  height: 320px;
  bottom: -120px;
  right: -60px;
  background: radial-gradient(circle, rgba(9, 9, 11, 0.05), rgba(9, 9, 11, 0) 70%);
  animation: drift 38s ease-in-out infinite;
}

.portfolio::before {
  width: 480px;
  height: 480px;
  top: 30%;
  right: -200px;
  background: radial-gradient(circle, rgba(158, 255, 31, 0.13), rgba(158, 255, 31, 0) 70%);
  animation: driftAlt 36s ease-in-out infinite;
}

.contact::before {
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  margin: -260px 0 0 -260px;
  background: radial-gradient(circle, rgba(158, 255, 31, 0.16), rgba(158, 255, 31, 0) 70%);
  animation: pulseGlow 12s ease-in-out infinite;
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(36px, -28px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes driftAlt {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-30px, 26px) scale(0.94); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(0.9); opacity: 0.7; }
  50%      { transform: scale(1.12); opacity: 1; }
}

/* Gentle floating hero logo */
.hero-logo {
  animation: floatY 6s ease-in-out infinite;
}

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

/* Pulsing badge dot */
.hero-badge .dot {
  position: relative;
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Service icon gentle bob + spin-on-hover quirk */
.service-card:hover .service-icon svg {
  animation: iconWiggle 0.6s ease-in-out;
}

@keyframes iconWiggle {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(-9deg); }
  75%  { transform: rotate(9deg); }
  100% { transform: rotate(0deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle interactive tilt */
.tilt {
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .pillars::before,
  .pillars::after,
  .services::before,
  .investment::before,
  .investment::after,
  .portfolio::before,
  .contact::before,
  .hero-logo,
  .hero-badge .dot {
    animation: none !important;
  }

  .pillar-card,
  .pillar-card--accent,
  .service-icon {
    animation: none !important;
  }

  .pillar-card::before {
    filter: none !important;
    border-radius: 24px;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================
   Logo-inspired organic box shapes
   Echoes the molten / wobbly Gargantua wordmark.
   Edges stay straight enough to keep text legible.
   ============================================ */

/* Pillar cards — liquid, molten wobbling edges (logo-inspired) */
.pillar-card {
  position: relative;
  isolation: isolate;
  background: transparent !important;
  border-color: transparent !important;
  border-radius: 0;
  animation: none;
}

/* Background layer that actually wobbles; text sits crisply on top */
.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 28px;
  background: #111114;
  filter: url(#liquid);
}

.pillar-card--dark::before {
  background: #111114;
}

.pillar-card--accent::before {
  background: #9eff1f;
}

.pillar-card:hover {
  box-shadow: none;
}

/* Service icons — small enough for full organic blobs */
.service-icon {
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  animation: blobMorph 13s ease-in-out infinite;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }
  50%      { border-radius: 58% 42% 40% 60% / 44% 56% 46% 54%; }
}

/* Cohesive subtle quirk across the other boxes */
.service-card {
  border-radius: 28px 12px 28px 12px;
}

.service-card--wide {
  border-radius: 34px 14px 34px 14px;
}

.portfolio-card {
  border-radius: 22px 10px 22px 10px;
}

.portfolio-card:nth-child(even) {
  border-radius: 10px 22px 10px 22px;
}

.stat-card {
  border-radius: 34px 12px 34px 12px;
}

.stat-card:nth-child(2),
.stat-card:nth-child(3) {
  border-radius: 12px 34px 12px 34px;
}

.contact-inner {
  border-radius: 44px 16px 44px 16px;
}

@media (max-width: 40em) {
  .pillar-card::before {
    border-radius: 22px;
  }
}
