/* ============================================================
   Wren Marketing Site — styles.css
   Bold, organic design with curves, blobs, and warmth
   ============================================================ */

/* Custom properties */
:root {
  --color-primary: #6366f1;
  --color-primary-dark: #4f46e5;
  --color-primary-light: #a5b4fc;
  --color-accent: #f59e0b;
  --color-accent-light: #fde68a;
  --color-text: #1e1b4b;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-bg-warm: #fefbf6;
  --color-bg-lavender: #f5f3ff;
  --color-bg-mint: #ecfdf5;
  --color-success: #10b981;
  --color-white: #ffffff;
  --color-code-bg: #1e1b4b;
  --color-code-key: #93c5fd;
  --color-code-value: #86efac;
  --color-code-operator: #a5b4fc;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "Fira Code", Menlo, Consolas, monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-blob: 42% 58% 62% 38% / 45% 55% 45% 55%;

  --shadow-card: 0 2px 8px rgba(99, 102, 241, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 12px 32px rgba(99, 102, 241, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.15);

  --nav-height: 64px;
  --container-max: 1100px;
  --container-padding: 0 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ============================================================
   Layout utilities
   ============================================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.08);
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.nav__logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.nav__logo:hover {
  text-decoration: none;
  color: var(--color-primary-dark);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.15s ease;
  text-decoration: none;
}

.nav__links a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--color-text);
}
.nav__hamburger svg { width: 24px; height: 24px; }

/* Prevent anchor-linked headings from underlapping the fixed nav */
[id] {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

/* ============================================================
   Hero — gradient background with organic shapes
   ============================================================ */

.hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 90px);
  padding-bottom: 120px;
  text-align: center;
  background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 25%, #fefbf6 50%, #ecfdf5 100%);
  overflow: hidden;
}

/* Decorative blobs */
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-blob);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  animation: blob-float 12s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 58% 42% 38% 62% / 55% 45% 55% 45%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  animation: blob-float 15s ease-in-out infinite reverse;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -15px) rotate(5deg); }
  66% { transform: translate(-10px, 10px) rotate(-3deg); }
}

.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--color-primary-light);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.08);
  position: relative;
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--color-text);
  max-width: 720px;
  margin: 0 auto 24px;
  position: relative;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 100px;
  padding: 12px 28px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.5;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  text-decoration: none;
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn--secondary:hover {
  background: var(--color-bg-lavender);
  border-color: var(--color-primary-light);
  text-decoration: none;
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* Hero code block — tilted for personality */
.hero__code {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: var(--color-code-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 27, 75, 0.25), 0 0 0 1px rgba(99, 102, 241, 0.1);
  transform: rotate(-1deg);
  transition: transform 0.3s ease;
  position: relative;
}

.hero__code:hover {
  transform: rotate(0deg) scale(1.01);
}

.hero__code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(165, 180, 252, 0.1);
}

.hero__code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(165, 180, 252, 0.15);
}

.hero__code-dot:nth-child(1) { background: #f87171; opacity: 0.7; }
.hero__code-dot:nth-child(2) { background: #fbbf24; opacity: 0.7; }
.hero__code-dot:nth-child(3) { background: #34d399; opacity: 0.7; }

.hero__code-title {
  font-size: 0.75rem;
  color: var(--color-code-operator);
  font-family: var(--font-mono);
  margin-left: 4px;
}

.hero__code pre {
  padding: 22px 26px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.8;
  overflow-x: auto;
  white-space: pre;
  color: var(--color-code-operator);
}

/* Syntax highlight helpers */
.tok-method  { color: var(--color-primary-light); font-weight: 600; }
.tok-path    { color: var(--color-code-value); }
.tok-arrow   { color: var(--color-code-operator); }
.tok-key     { color: var(--color-code-key); }
.tok-str     { color: var(--color-code-value); }
.tok-keyword { color: var(--color-primary-light); }
.tok-label   { color: #f9a8d4; }
.tok-comment { color: rgba(165, 180, 252, 0.5); font-style: italic; }

/* ============================================================
   Wave divider SVG helper
   ============================================================ */

.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: -1px;
}

.wave-divider--flip {
  transform: scaleY(-1);
  margin-top: 0;
  margin-bottom: -1px;
}

/* ============================================================
   Section base
   ============================================================ */

section {
  padding: 90px 0;
  position: relative;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: inline-block;
  background: rgba(99, 102, 241, 0.08);
  padding: 4px 14px;
  border-radius: 100px;
}

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ============================================================
   Features — on warm background with organic cards
   ============================================================ */

.features {
  background: var(--color-bg-lavender);
  position: relative;
}

.features__intro {
  text-align: center;
  margin-bottom: 56px;
}

.features__intro .section-sub {
  margin: 0 auto;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-white);
  border: 1px solid rgba(99, 102, 241, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(245, 158, 11, 0.08));
  color: var(--color-primary);
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   How it works — with curved connector
   ============================================================ */

.how {
  background: var(--color-white);
  position: relative;
}

.how__intro {
  margin-bottom: 56px;
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}

.how__step {
  display: flex;
  gap: 28px;
  padding-bottom: 44px;
  position: relative;
}

.how__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-primary-light), var(--color-accent-light));
  border-radius: 3px;
}

.how__step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.how__step-body {
  padding-top: 10px;
}

.how__step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.how__step-desc {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ============================================================
   API reference snippet — dark with glow
   ============================================================ */

.api-ref {
  background: var(--color-code-bg);
  color: var(--color-code-operator);
  position: relative;
  overflow: hidden;
}

/* Glowing orb decoration */
.api-ref::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  transform: translateY(-50%);
}

.api-ref .section-label {
  color: var(--color-primary-light);
  background: rgba(99, 102, 241, 0.15);
}

.api-ref .section-title {
  color: var(--color-white);
}

.api-ref .section-sub {
  color: rgba(165, 180, 252, 0.6);
}

.api-ref__intro {
  margin-bottom: 44px;
  position: relative;
}

.api-ref__block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(165, 180, 252, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-glow);
}

.api-ref__block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(165, 180, 252, 0.08);
}

.api-ref__block-lang {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-code-operator);
}

.api-ref__block pre {
  padding: 26px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.85;
  overflow-x: auto;
  white-space: pre;
}

.tok-flag   { color: #f9a8d4; }
.tok-url    { color: var(--color-code-value); }
.tok-data   { color: var(--color-code-key); }

/* ============================================================
   Client Libraries — mint background
   ============================================================ */

.clients {
  padding: 100px 0;
  background: var(--color-bg-mint);
  position: relative;
}

.clients__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

.client-card {
  background: var(--color-code-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(30, 27, 75, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(30, 27, 75, 0.2);
}

.client-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(165, 180, 252, 0.08);
  gap: 12px;
}

.client-card__lang {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.client-card__install {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-success);
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.client-card pre {
  margin: 0;
  padding: 22px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.65;
  color: #e2e8f0;
  overflow-x: auto;
  flex: 1;
}

.client-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 18px;
  border-top: 1px solid rgba(165, 180, 252, 0.08);
}

.client-card__tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--color-primary-light);
  background: rgba(99, 102, 241, 0.1);
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid rgba(165, 180, 252, 0.1);
}

/* ============================================================
   Pricing — playful cards with tilt
   ============================================================ */

.pricing {
  padding: 100px 0;
  background: var(--color-white);
  position: relative;
}

.pricing__intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary), 0 8px 32px rgba(99, 102, 241, 0.12);
  background: linear-gradient(180deg, #faf5ff 0%, var(--color-white) 40%);
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.pricing-card__header {
  margin-bottom: 28px;
}

.pricing-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 8px;
}

.pricing-card__period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0;
}

.pricing-card__tagline {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-card__features li {
  font-size: 0.875rem;
  color: var(--color-text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(99, 102, 241, 0.06);
  padding-left: 26px;
  position: relative;
}

.pricing-card__features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing-card__cta {
  text-align: center;
  width: 100%;
}

@media (max-width: 860px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .pricing-card--featured {
    transform: none;
  }
  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--color-code-bg);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  width: 600px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  transform: translateX(-50%);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}

.footer__brand {
  font-size: 0.875rem;
  color: rgba(165, 180, 252, 0.6);
  font-weight: 500;
}

.footer__brand strong {
  color: var(--color-primary-light);
  font-weight: 700;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(165, 180, 252, 0.5);
  transition: color 0.15s ease;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--color-primary-light);
  text-decoration: none;
}

.footer__copy {
  margin-top: 24px;
  font-size: 0.78rem;
  color: rgba(165, 180, 252, 0.3);
  border-top: 1px solid rgba(165, 180, 252, 0.08);
  padding-top: 24px;
  text-align: center;
  position: relative;
}

/* ============================================================
   Responsive
   ============================================================ */

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

@media (max-width: 600px) {
  :root {
    --container-padding: 0 16px;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__links a {
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .nav__links li:last-child a { border-bottom: none; }

  .nav__hamburger { display: flex; }

  .hero {
    padding-top: calc(var(--nav-height) + 52px);
    padding-bottom: 72px;
  }

  .hero__title {
    font-size: 1.9rem;
  }

  .hero__sub {
    font-size: 1rem;
  }

  .hero__code {
    transform: none;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  section {
    padding: 60px 0;
  }

  .how__step-num {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .how__step:not(:last-child)::before {
    left: 17px;
    top: 40px;
  }
}

/* ============================================================
   Hero tabs
   ============================================================ */
.hero__tabs {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.hero__tab {
  background: transparent;
  border: none;
  color: var(--color-code-operator);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.hero__tab:hover {
  background: rgba(165, 180, 252, 0.1);
  color: #e2e8f0;
}

.hero__tab--active {
  background: rgba(99, 102, 241, 0.3);
  color: var(--color-primary-light);
}
