/* ============================================
   ELARA — Shared Stylesheet
   elara.nerdvista.com
   ============================================ */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Cosmic Amethyst */
  --bg-deep:       #080208;
  --bg-base:       #0d0515;
  --bg-amethyst:   #1a0a2e;
  --amethyst:      #6b21a8;
  --amethyst-soft: #a855f7;
  --glow-lavender: #e0d0ff;

  /* Nebula Green */
  --bg-teal:      #041a14;
  --emerald-deep: #065f46;
  --teal-aurora:  #0d9488;
  --glow-aqua:    #6ee7b7;

  /* Text */
  --text-primary:   #f0eaff;
  --text-secondary: #a89fc4;
  --text-muted:     #6b6385;

  /* Glass surfaces */
  --glass-bg:       rgba(255, 255, 255, 0.06);
  --glass-bg-hover: rgba(255, 255, 255, 0.10);
  --glass-border:   rgba(255, 255, 255, 0.14);
  --glass-shadow:   0 8px 32px rgba(0, 0, 0, 0.4);

  /* Typography */
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Spacing */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;

  /* Radii */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-pill: 999px;
}


/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 400;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ============================================
   SHARED LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  max-width: 720px;
  margin: 0 auto var(--s-6);
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s-3);
  font-weight: 500;
}

.section-eyebrow--green {
  color: var(--glow-aqua);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: var(--s-3);
}

.section-lede {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}


/* ============================================
   SCROLL REVEAL
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   GRAIN OVERLAY
   ============================================ */
.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}


/* ============================================
   APP STORE BADGE
   ============================================ */
.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  border-radius: var(--r-md);
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.app-store-badge:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 12px 28px rgba(224, 208, 255, 0.25);
}

.app-store-badge__label {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.app-store-badge__label small {
  font-size: 0.68rem;
  opacity: 0.7;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.app-store-badge__label strong {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}


/* ============================================
   NAVIGATION  (support/legal pages)
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s-2) var(--s-4);
  background: rgba(8, 2, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.nav__name {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-primary);
}

.nav__back {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.nav__back:hover {
  color: var(--glow-lavender);
}


/* ============================================
   FOOTER  (shared)
   ============================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Landing page footer layout */
.footer--landing {
  padding: var(--s-7) var(--s-4) var(--s-4);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--s-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: var(--s-3);
  gap: var(--s-3);
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.footer__icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

.footer__wordmark {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-primary);
}

/* Support/legal page footer layout */
.footer--page {
  padding: var(--s-5) var(--s-4) var(--s-4);
  margin-top: var(--s-5);
}

.footer__inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Shared bottom row */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.footer__credit {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer__credit a {
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(168, 85, 247, 0.4);
  padding-bottom: 1px;
  transition: color 0.3s ease;
}

.footer__credit a:hover {
  color: var(--glow-lavender);
}

.footer__links {
  display: flex;
  gap: var(--s-3);
}

.footer__links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--glow-lavender);
}


/* ============================================
   DOCUMENT PAGE LAYOUT  (privacy, terms, support)
   ============================================ */
.page {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--s-7) + 60px) var(--s-4) var(--s-7);
}

.page-header {
  margin-bottom: var(--s-6);
}

.page-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s-2);
  font-weight: 500;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--s-2);
}

.page-updated,
.page-lede {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
}

.page-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.highlight-block {
  background: rgba(107, 33, 168, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--r-md);
  padding: var(--s-4);
  margin-bottom: var(--s-5);
}

.highlight-block p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

.highlight-block strong {
  color: var(--glow-lavender);
  font-weight: 400;
}

.content-section {
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content-section:last-child {
  border-bottom: none;
}

.content-section h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}

.content-section p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--s-3);
}

.content-section p:last-child {
  margin-bottom: 0;
}

.content-section a {
  color: var(--amethyst-soft);
  border-bottom: 1px solid rgba(168, 85, 247, 0.4);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}

.content-section a:hover {
  color: var(--glow-lavender);
}

/* Support page — pricing table */
.pricing-table {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: var(--s-3) 0;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-2) var(--s-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row__label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-row__price {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 400;
}

/* Support page — contact block */
.contact-block {
  background: rgba(107, 33, 168, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--r-md);
  padding: var(--s-4);
  text-align: center;
  margin-top: var(--s-5);
}

.contact-block p {
  color: var(--text-secondary);
  margin-bottom: var(--s-3);
  font-size: 1rem;
}

.contact-link {
  display: inline-block;
  color: var(--glow-lavender);
  font-size: 1rem;
  border-bottom: 1px solid rgba(224, 208, 255, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #fff;
}


/* ============================================
   HERO  (landing page)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: var(--s-7) var(--s-4) var(--s-8);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(180deg, rgba(8, 4, 12, 0.55) 0%, rgba(13, 5, 21, 0.35) 50%, rgba(8, 4, 12, 0.7) 100%),
    url('Images/nebula-amethyst.jpg');
  background-size: cover;
  background-position: center;
}

.stars {
  display: none;
}

.hero__content {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-7);
  align-items: center;
}

.hero__text {
  animation: fadeUp 1.4s 0.2s ease-out backwards;
}

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

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
}

.wordmark__icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
}

.wordmark__text {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.hero__headline {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--s-4);
}

.hero__headline em {
  font-style: normal;
  font-weight: 300;
  color: var(--glow-lavender);
  text-shadow: 0 0 40px rgba(224, 208, 255, 0.35);
}

.hero__subline {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--s-5);
  max-width: 32rem;
  line-height: 1.65;
  font-weight: 400;
}

.hero__phone {
  position: relative;
  animation: fadeUp 1.4s 0.5s ease-out backwards;
  display: flex;
  justify-content: center;
}

.hero__phone::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.45), transparent 70%);
  filter: blur(24px);
  z-index: -1;
}


/* ============================================
   PHONE MOCKUPS  (landing page)
   ============================================ */
.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19;
  border-radius: 42px;
  background: linear-gradient(135deg, #1a1a1d, #0a0a0c);
  padding: 10px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.08),
    0 30px 60px -20px rgba(168, 85, 247, 0.45),
    0 60px 100px -40px rgba(0, 0, 0, 0.85);
  transform: rotate(-3deg);
  transition: transform 0.6s ease;
}

.phone:hover {
  transform: rotate(-1deg) translateY(-4px);
}

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #0d0515 0%, #1a0a2e 70%, #0d0515 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Small phone frames for How It Works steps */
.phone-frame--sm {
  width: 180px;
  aspect-ratio: 9 / 19;
  border-radius: 30px;
  background: linear-gradient(135deg, #1a1a1d, #0a0a0c);
  padding: 7px;
  transform: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 16px 32px -10px rgba(168, 85, 247, 0.25),
    0 32px 60px -20px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s ease;
}

.phone-frame--sm:hover {
  transform: translateY(-4px);
}

.phone-frame--sm .phone__screen {
  border-radius: 24px;
}


/* ============================================
   HOOK SECTION  (landing page)
   ============================================ */
.hook {
  background: var(--bg-deep);
  padding: var(--s-8) var(--s-4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.hook__content {
  text-align: center;
  max-width: 720px;
}

.hook__text {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 200;
  line-height: 1.5;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
  margin-bottom: var(--s-4);
}

.hook__text--accent {
  color: var(--glow-lavender);
  text-shadow: 0 0 30px rgba(224, 208, 255, 0.25);
  margin-bottom: 0;
}


/* ============================================
   HOW IT WORKS  (landing page)
   ============================================ */
.how {
  position: relative;
  background: var(--bg-base);
  padding: var(--s-8) var(--s-4);
  isolation: isolate;
  overflow: hidden;
}

.how::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(107, 33, 168, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(99, 102, 241, 0.12), transparent 60%);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step__visual {
  margin-bottom: var(--s-4);
}

.step__number {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--amethyst-soft);
  margin-bottom: var(--s-1);
}

.step__title {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: var(--s-2);
}

.step__body {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 280px;
}


/* ============================================
   INTERPRETATION MODES  (landing page)
   ============================================ */
.modes {
  position: relative;
  padding: var(--s-8) var(--s-4);
  isolation: isolate;
  overflow: hidden;
}

.modes::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(8, 4, 12, 0.85) 0%, rgba(4, 26, 20, 0.55) 50%, rgba(8, 4, 12, 0.85) 100%),
    url('Images/nebula-green.jpg');
  background-size: cover;
  background-position: center;
}

.modes::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.modes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  max-width: 1100px;
  margin: 0 auto;
}

.mode-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  box-shadow: var(--glass-shadow);
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.mode-card:hover {
  transform: translateY(-4px);
  background: var(--glass-bg-hover);
  border-color: rgba(110, 231, 183, 0.3);
}

.mode-card__icon {
  width: 44px;
  height: 44px;
  color: var(--glow-aqua);
  margin-bottom: var(--s-3);
  filter: drop-shadow(0 0 12px rgba(110, 231, 183, 0.4));
}

.mode-card__icon svg {
  width: 100%;
  height: 100%;
}

.mode-card__title {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
}

.mode-card__body {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}


/* ============================================
   PRIVACY SECTION  (landing page)
   ============================================ */
.privacy {
  background: var(--bg-deep);
  padding: var(--s-8) var(--s-4);
  position: relative;
  isolation: isolate;
}

.privacy::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(107, 33, 168, 0.10), transparent 70%);
}

.privacy__content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.privacy__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--s-3);
}

.privacy__lede {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: var(--s-5);
  line-height: 1.6;
}

.privacy__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}

.privacy__item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  color: var(--text-secondary);
  font-size: 1rem;
  padding: var(--s-2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.privacy__item:last-child {
  border-bottom: none;
}

.privacy__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--amethyst-soft);
  margin-top: 2px;
}


/* ============================================
   PRICING SECTION  (landing page)
   ============================================ */
.pricing {
  background: var(--bg-base);
  padding: var(--s-8) var(--s-4);
  position: relative;
  isolation: isolate;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(107, 33, 168, 0.18), transparent 70%);
}

.pricing__free {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--s-4) var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  margin: 0 auto var(--s-5);
  max-width: 800px;
}

.pricing__free-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--s-1);
  letter-spacing: -0.01em;
}

.pricing__free-body {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.4rem;
  background: transparent;
  color: var(--glow-lavender);
  border: 1px solid rgba(224, 208, 255, 0.4);
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: rgba(224, 208, 255, 0.08);
  border-color: var(--glow-lavender);
  transform: translateY(-1px);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-3);
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 85, 247, 0.3);
}

.price-card--featured {
  border-color: rgba(168, 85, 247, 0.4);
  background: rgba(168, 85, 247, 0.06);
}

.price-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amethyst-soft);
  color: white;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  font-weight: 500;
  white-space: nowrap;
}

.price-card__title {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: var(--s-2);
}

.price-card__price {
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--s-2);
  letter-spacing: -0.02em;
}

.price-card__price span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.price-card__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-3);
  }

  .pricing__free {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 820px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--s-6);
  }

  .wordmark {
    justify-content: center;
  }

  .hero__subline {
    margin-left: auto;
    margin-right: auto;
  }

  .phone {
    width: 240px;
  }

  .how__steps,
  .modes__grid {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

  .footer--page .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

