/* VagaFit.net — glass design (referência visual da extensão) */
:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-soft: rgba(37, 99, 235, 0.12);
  --accent: #06b6d4;
  --accent-warm: #f59e0b;
  --text: #1f2937;
  --text-strong: #0f172a;
  --text-muted: #64748b;
  --glass-bg: rgba(255, 255, 255, 0.38);
  --glass-bg-strong: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(15, 23, 42, 0.08);
  --glass-border-subtle: rgba(15, 23, 42, 0.05);
  --glass-highlight: rgba(255, 255, 255, 0.28);
  --glass-blur: blur(28px) saturate(200%);
  --glass-shadow:
    0 4px 24px -6px rgba(37, 99, 235, 0.12),
    0 12px 40px -12px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  --glass-shadow-hover:
    0 8px 32px -8px rgba(37, 99, 235, 0.2),
    0 20px 50px -16px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --radius: 18px;
  --radius-lg: 24px;
  --max: 1080px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(59, 130, 246, 0.18) 0%, transparent 55%),
    radial-gradient(90% 70% at 100% 0%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
    radial-gradient(80% 60% at 50% 100%, rgba(6, 182, 212, 0.1) 0%, transparent 55%),
    linear-gradient(160deg, #eff6ff 0%, #f5f3ff 42%, #ecfeff 100%);
  min-height: 100vh;
}

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

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Ambient orbs */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orbFloat 14s ease-in-out infinite;
}

.ambient__orb--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: rgba(37, 99, 235, 0.35);
}

.ambient__orb--2 {
  width: 360px;
  height: 360px;
  top: 20%;
  right: -100px;
  background: rgba(168, 85, 247, 0.22);
  animation-delay: -4s;
  animation-duration: 18s;
}

.ambient__orb--3 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: 30%;
  background: rgba(6, 182, 212, 0.2);
  animation-delay: -8s;
  animation-duration: 16s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, 18px) scale(1.06); }
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Glass utility */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}

.glass-strong {
  background: var(--glass-bg-strong);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid var(--glass-border-subtle);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-strong);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #fff;
  box-shadow: 0 8px 28px -6px rgba(37, 99, 235, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px -6px rgba(37, 99, 235, 0.55);
  color: #fff;
}

.btn-secondary {
  background: var(--glass-bg-strong);
  color: var(--text-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  border-color: rgba(37, 99, 235, 0.25);
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary);
}

/* Hero */
.hero {
  padding: 80px 0 96px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.125rem, 5.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text-strong);
  max-width: 16ch;
  margin-inline: auto;
  font-weight: 800;
}

.hero-lead {
  margin: 0 auto 40px;
  max-width: 40rem;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 64px;
}

.hero-visual {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -20px -10px;
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: left;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow:
    0 8px 32px -8px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 var(--glass-highlight);
  animation: cardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 140px;
  background: radial-gradient(
    ellipse 80% 100% at 50% 0%,
    rgba(59, 130, 246, 0.28) 0%,
    rgba(168, 85, 247, 0.1) 45%,
    transparent 70%
  );
  pointer-events: none;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-card-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-card-header img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.hero-card-header strong {
  display: block;
  color: var(--text-strong);
  font-size: 1rem;
  font-weight: 700;
}

.hero-card-header span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.match-score {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 18px;
}

.score-ring {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: conic-gradient(#2563eb 0 78%, rgba(15, 23, 42, 0.08) 78% 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

.score-ring-inner {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--primary);
}

.match-score p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.match-score strong {
  color: var(--text-strong);
}

.feature-pills {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Sections */
section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--text-strong);
}

.section-subtitle {
  text-align: center;
  margin: 0 auto 52px;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.section-eyebrow {
  text-align: center;
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.text-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Features section */
.section-features {
  position: relative;
  isolation: isolate;
}

.section-features__glow {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 70% at 0% 35%, rgba(37, 99, 235, 0.22) 0%, transparent 72%),
    radial-gradient(ellipse 55% 70% at 100% 45%, rgba(124, 58, 237, 0.18) 0%, transparent 72%),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(6, 182, 212, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 90% 80% at 50% 50%, rgba(239, 246, 255, 0.65) 0%, rgba(245, 243, 255, 0.35) 45%, rgba(236, 254, 255, 0.55) 100%);
}

.section-features .container {
  position: relative;
  z-index: 1;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 26px 22px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--card-border, rgba(15, 23, 42, 0.08));
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow:
    0 8px 32px -8px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 var(--glass-highlight);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--card-accent, rgba(37, 99, 235, 0.08)) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0.85;
}

.feature-card[data-accent="blue"] { --card-accent: rgba(37, 99, 235, 0.1); --card-border: rgba(37, 99, 235, 0.14); --icon-color: #2563eb; --icon-bg: rgba(37, 99, 235, 0.14); }
.feature-card[data-accent="violet"] { --card-accent: rgba(124, 58, 237, 0.1); --card-border: rgba(124, 58, 237, 0.14); --icon-color: #7c3aed; --icon-bg: rgba(124, 58, 237, 0.14); }
.feature-card[data-accent="cyan"] { --card-accent: rgba(6, 182, 212, 0.1); --card-border: rgba(6, 182, 212, 0.14); --icon-color: #0891b2; --icon-bg: rgba(6, 182, 212, 0.14); }
.feature-card[data-accent="amber"] { --card-accent: rgba(245, 158, 11, 0.1); --card-border: rgba(245, 158, 11, 0.16); --icon-color: #d97706; --icon-bg: rgba(245, 158, 11, 0.16); }
.feature-card[data-accent="emerald"] { --card-accent: rgba(16, 185, 129, 0.1); --card-border: rgba(16, 185, 129, 0.14); --icon-color: #059669; --icon-bg: rgba(16, 185, 129, 0.14); }
.feature-card[data-accent="indigo"] { --card-accent: rgba(79, 70, 229, 0.1); --card-border: rgba(79, 70, 229, 0.14); --icon-color: #4f46e5; --icon-bg: rgba(79, 70, 229, 0.14); }

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover, rgba(15, 23, 42, 0.1));
  box-shadow:
    0 20px 48px -12px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.feature-card[data-accent="blue"]:hover { --card-border-hover: rgba(37, 99, 235, 0.22); }
.feature-card[data-accent="violet"]:hover { --card-border-hover: rgba(124, 58, 237, 0.22); }
.feature-card[data-accent="cyan"]:hover { --card-border-hover: rgba(6, 182, 212, 0.22); }
.feature-card[data-accent="amber"]:hover { --card-border-hover: rgba(245, 158, 11, 0.24); }
.feature-card[data-accent="emerald"]:hover { --card-border-hover: rgba(16, 185, 129, 0.22); }
.feature-card[data-accent="indigo"]:hover { --card-border-hover: rgba(79, 70, 229, 0.22); }

.feature-card:nth-child(1) { animation: cardFadeUp 0.5s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both; }
.feature-card:nth-child(2) { animation: cardFadeUp 0.5s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both; }
.feature-card:nth-child(3) { animation: cardFadeUp 0.5s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both; }
.feature-card:nth-child(4) { animation: cardFadeUp 0.5s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both; }
.feature-card:nth-child(5) { animation: cardFadeUp 0.5s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both; }
.feature-card:nth-child(6) { animation: cardFadeUp 0.5s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both; }

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

.feature-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--icon-bg, rgba(37, 99, 235, 0.14));
  border: 1px solid var(--card-border, rgba(15, 23, 42, 0.08));
  color: var(--icon-color, #2563eb);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px -4px rgba(37, 99, 235, 0.2);
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

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

/* Steps */
.steps {
  background: rgba(255, 255, 255, 0.25);
  border-block: 1px solid var(--glass-border-subtle);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps-list li {
  counter-increment: step;
  position: relative;
  padding: 24px 24px 24px 68px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow:
    0 8px 32px -8px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 var(--glass-highlight);
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.9375rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.steps-list h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-strong);
}

.steps-list p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA */
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 55%),
    linear-gradient(135deg, #2563eb 0%, #1d4ed8 45%, #0891b2 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 24px 60px -16px rgba(37, 99, 235, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.cta-box h2,
.cta-box p,
.cta-box .btn,
.cta-box .cta-contacts {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  font-weight: 800;
}

.cta-box p {
  margin: 0 auto 28px;
  max-width: 32rem;
  opacity: 0.92;
  font-size: 1.0625rem;
  line-height: 1.55;
}

.cta-box .btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cta-box .btn-primary:hover {
  background: #fff;
  color: var(--primary-hover);
}

.cta-contacts {
  margin-top: 24px;
  font-size: 0.9375rem;
  opacity: 0.9;
}

.cta-contacts a {
  color: #fff;
  font-weight: 500;
}

.cta-contacts a:hover {
  text-decoration: underline;
}

/* Legal section */
.section-legal {
  padding-top: 0;
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 40px 0 48px;
  border-top: 1px solid var(--glass-border-subtle);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Mobile */
.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 20px 20px;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--glass-border-subtle);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav.is-open {
    display: flex;
  }

  .nav .btn {
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .site-header .container {
    position: relative;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-card {
    padding: 22px 20px;
  }

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

  .cta-box {
    padding: 36px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient__orb,
  .hero-card,
  .feature-card {
    animation: none;
  }

  .btn:hover,
  .feature-card:hover {
    transform: none;
  }
}
