/* ═══════════════════════════════════════════
   HIROO — Marketing Website Styles
   Brand: Purple #6A2376 / Green #87C9A1
   ═══════════════════════════════════════════ */

:root {
  --brand-purple: #6A2376;
  --brand-dark: #4A154B;
  --brand-green: #87C9A1;
  --brand-beige: #FFF5ED;
  --text-primary: #1a1a2e;
  --text-secondary: #5a5a72;
  --text-muted: #8a8a9e;
  --surface: #ffffff;
  --surface-2: #f8f7fc;
  --surface-3: #f1f0f6;
  --border: #e8e6f0;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 26, 46, 0.12);
  --shadow-xl: 0 24px 60px rgba(106, 35, 118, 0.15);
}

/* ─── Typography Helpers ──────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #fff, var(--brand-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Scroll Reveal ───────────────────────── */
.fade-in {
  opacity: 1;
}
@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: revealFade 1s linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
}
@keyframes revealFade {
  to { opacity: 1; }
}

/* ─── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(106, 35, 118, 0.3);
}
.btn--primary:hover {
  box-shadow: 0 6px 24px rgba(106, 35, 118, 0.45);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  background: var(--surface);
}
.btn--outline:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
  box-shadow: var(--shadow-sm);
}

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

.btn--white {
  background: #fff;
  color: var(--brand-purple);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn--white:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}
.btn--full { width: 100%; justify-content: center; }

/* ─── Navigation ──────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 230, 240, 0.5);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.nav--scrolled { box-shadow: var(--shadow-sm); }
.nav--hidden { transform: translateY(-100%); }

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.nav__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.nav__wordmark {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brand-purple);
}
.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--brand-purple); }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.nav__mobile.open {
  display: flex;
}
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  color: var(--text-secondary);
}
.nav__mobile-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
}

/* ─── Hero ────────────────────────────────── */
.hero {
  position: relative;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero__orb--1 {
  width: 600px; height: 600px;
  top: -15%; left: -10%;
  background: rgba(106, 35, 118, 0.08);
  animation: float 20s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  bottom: -20%; right: -10%;
  background: rgba(135, 201, 161, 0.1);
  animation: float 25s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  top: 30%; right: 20%;
  background: rgba(106, 35, 118, 0.05);
  animation: float 18s ease-in-out infinite 5s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 15px); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-purple);
  background: rgba(106, 35, 118, 0.06);
  border: 1px solid rgba(106, 35, 118, 0.12);
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  font-size: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero__gradient-text {
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}
.hero__avatars {
  display: flex;
}
.hero__avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  object-fit: cover;
  margin-left: -8px;
  box-shadow: var(--shadow-sm);
}
.hero__avatars img:first-child { margin-left: 0; }
.hero__proof-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
}
.hero__proof-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Hero Mockup */
.hero__mockup {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 3rem auto 0;
  perspective: 1000px;
}
.hero__mockup-frame {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(232, 230, 240, 0.6);
  transform: rotateX(2deg);
  transition: transform 0.6s var(--ease-out);
}
.hero__mockup-frame:hover {
  transform: rotateX(0deg);
}
.hero__mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot--red { background: #ff5f57; }
.dot--yellow { background: #febc2e; }
.dot--green { background: #28c840; }
.hero__mockup-url {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 0.75rem;
  font-family: 'Poppins', monospace;
}
.hero__mockup-screen img {
  display: block;
  width: 100%;
  height: auto;
}
.hero__mockup-frame--rich {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  transform: perspective(1200px) rotateX(3deg);
}
.hero__mockup-frame--rich:hover {
  transform: perspective(1200px) rotateX(0deg);
}
.hero__mockup-frame--rich img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(106, 35, 118, 0.25);
}
.hero__mockup-glow {
  position: absolute;
  bottom: -40px;
  left: 10%;
  right: 10%;
  height: 100px;
  background: linear-gradient(135deg, rgba(106, 35, 118, 0.15), rgba(135, 201, 161, 0.15));
  filter: blur(60px);
  border-radius: 50%;
  z-index: -1;
}

/* ─── Logos Strip ─────────────────────────── */
/* ─── Capabilities Marquee Strip ──────────── */
.capabilities-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  overflow: hidden;
}
.capabilities-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.capabilities-strip__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
}
.capabilities-strip__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.capabilities-strip__track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}
.capabilities-strip__track:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.capabilities-strip__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  background: rgba(106, 35, 118, 0.06);
  border: 1px solid rgba(106, 35, 118, 0.12);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  transition: background 180ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.capabilities-strip__pill:hover {
  background: rgba(106, 35, 118, 0.1);
  border-color: rgba(106, 35, 118, 0.25);
  box-shadow: 0 2px 12px rgba(106, 35, 118, 0.1);
}
.capabilities-strip__pill svg {
  opacity: 0.55;
  color: #6A2376;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .capabilities-strip__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    padding: 0 1.5rem;
  }
  .capabilities-strip__marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ─── Sections ────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-purple);
  background: rgba(106, 35, 118, 0.06);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Features ────────────────────────────── */
.features {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}
.features__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(106, 35, 118, 0.15);
  transform: translateY(-2px);
}
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: color-mix(in srgb, var(--icon-color) 8%, transparent);
  color: var(--icon-color);
}
.feature-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.feature-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features__grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── How It Works ────────────────────────── */
.how-it-works {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: var(--surface-2);
}
.hiw__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.hiw__step {
  display: grid;
  grid-template-columns: auto 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}
.hiw__step--reverse {
  grid-template-columns: auto 1.2fr 1fr;
}
.hiw__step--reverse .hiw__content { order: 2; }
.hiw__step--reverse .hiw__visual { order: 1; }
.hiw__step--reverse .hiw__number { order: 0; }

.hiw__number {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.25;
}
.hiw__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.hiw__content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.hiw__mock-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.hiw__mock-frame:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}
.hiw__mock-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.hiw__mock-frame--animated {
  background: transparent;
  border: none;
  box-shadow: 0 20px 60px rgba(74, 21, 75, 0.3);
  border-radius: var(--radius-xl);
}
.hiw__mock-frame--animated video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}
.hiw__mock-frame--animated:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 80px rgba(106, 35, 118, 0.4);
}

@media (max-width: 768px) {
  .hiw__step, .hiw__step--reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hiw__step--reverse .hiw__content,
  .hiw__step--reverse .hiw__visual,
  .hiw__step--reverse .hiw__number { order: initial; }
  .hiw__number { font-size: 3rem; }
}

/* ─── Platform Showcase ───────────────────── */
.platform {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}
.platform__showcase {
  max-width: 1100px;
  margin: 0 auto;
}
.platform__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.platform__tab {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-xl);
  color: var(--text-secondary);
  background: transparent;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.platform__tab:hover {
  color: var(--brand-purple);
  background: rgba(106, 35, 118, 0.04);
}
.platform__tab--active {
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(106, 35, 118, 0.25);
}
.platform__tab--active:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark));
}

.platform__panel-wrapper {
  position: relative;
}
.platform__panel {
  display: none;
}
.platform__panel--active {
  display: block;
  animation: panelFade 0.4s var(--ease-out);
}
@keyframes panelFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.platform__frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.platform__frame-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.platform__frame img {
  display: block;
  width: 100%;
  height: auto;
}
.platform__caption {
  text-align: center;
  padding: 2rem 1rem 0;
}
.platform__caption h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.platform__caption p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Stats ───────────────────────────────── */
.stats {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark));
}
.stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.stat__percent {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-green);
}
.stat__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Testimonials ────────────────────────── */
.testimonials {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: var(--surface-2);
}
.testimonials__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.testimonial-card__stars {
  color: #f59e0b;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card__author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card__author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ─── Pricing ─────────────────────────────── */
.pricing {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}
.pricing__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s var(--ease-out);
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pricing-card--featured {
  border-color: var(--brand-purple);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-card--featured:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.03) translateY(-2px);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark));
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-card__header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}
.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.pricing-card__price {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.pricing-card__amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
}
.pricing-card__period {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.pricing-card__features li svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-2px); }
}

/* ─── CTA ─────────────────────────────────── */
.cta {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark));
  overflow: hidden;
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta__orb--1 {
  width: 400px; height: 400px;
  top: -20%; right: -10%;
  background: rgba(135, 201, 161, 0.2);
}
.cta__orb--2 {
  width: 300px; height: 300px;
  bottom: -20%; left: -5%;
  background: rgba(255, 255, 255, 0.08);
}
.cta__inner {
  position: relative;
  z-index: 1;
}
.cta__title {
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}
.cta__actions {
  display: flex;
  justify-content: center;
}

/* ─── Footer ──────────────────────────────── */
.footer {
  padding: 4rem 1.5rem 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  flex-wrap: wrap;
}
.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.footer__links {
  display: flex;
  gap: 4rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.footer__col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--brand-purple); }

.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.footer__attribution {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__attribution:hover { color: var(--brand-purple); }

@media (max-width: 768px) {
  .footer__inner { flex-direction: column; }
  .footer__links { gap: 2rem; flex-wrap: wrap; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ─── Animated Gradient Border ────────────── */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.animated-border {
  --angle: 0deg;
  border-image: linear-gradient(var(--angle), var(--brand-purple), var(--brand-green), var(--brand-purple)) 1;
  animation: rotate-border 4s linear infinite;
}
@keyframes rotate-border {
  to { --angle: 360deg; }
}

/* ─── Floating Animation for Cards ────────── */
@keyframes subtle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ─── Platform Mockup Frame (enhanced graphics version) ── */
.platform__frame--mockup {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: none;
}
.platform__frame--mockup img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* ─── Video Showcase ─────────────────────── */
.video-showcase {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: var(--surface-2);
}
.video-showcase__player {
  max-width: 960px;
  margin: 0 auto;
}
.video-showcase__frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  background: #0c0618;
  position: relative;
}
.video-showcase__frame video {
  display: block;
  width: 100%;
  height: auto;
}
.video-showcase__frame img {
  display: block;
  width: 100%;
  height: auto;
}
