:root {
  --brand: #00c2a8;
  --brand-2: #ff7a59;
  --brand-3: #ffd152;
  --ink: #0a0f1a;
  --ink-2: #5c6a82;
  --soft: #f2fbf9;
  --radius: 1.2rem;
}

html,
body {
  font-family: Inter, "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  color: var(--ink);
  background-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Work Sans", Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.link-brand {
  color: var(--brand);
}
.nav-link.active {
  color: var(--brand) !important;
  font-weight: 700;
}

.hero-audinoro {
  background: radial-gradient(
      900px 360px at 20% -10%,
      rgba(0, 194, 168, 0.35),
      transparent
    ),
    radial-gradient(
      700px 260px at 80% -10%,
      rgba(255, 122, 89, 0.35),
      transparent
    ),
    linear-gradient(120deg, #0a0f1a, #0f2342);
}
.hero-title {
  letter-spacing: 0.2px;
}
.hero-glow {
  position: absolute;
  right: -6rem;
  bottom: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    #fff,
    rgba(255, 255, 255, 0.2) 40%,
    transparent 60%
  );
  filter: blur(10px);
  opacity: 0.25;
}
.neo-card {
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.12)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.bg-soft {
  background: var(--soft);
}
.tile,
.step,
.feedback {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 0.5rem 1.25rem rgba(10, 15, 26, 0.08);
  padding: 1.25rem 1.25rem;
}
.step .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 700;
}
.card.glass {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
}
.shadow-soft {
  box-shadow: 0 0.75rem 2rem rgba(10, 15, 26, 0.12);
}
.shadow-strong {
  box-shadow: 0 1.25rem 2.25rem rgba(10, 15, 26, 0.16);
}

.btn-brand {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: #00af97;
  --bs-btn-hover-border-color: #00af97;
  --bs-btn-color: #fff;
}
.btn-outline-light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.75);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.1);
  --bs-btn-hover-border-color: #fff;
}

.card.price.featured {
  border-color: var(--brand) !important;
  outline: 4px solid rgba(0, 194, 168, 0.18);
}
.text-brand {
  color: var(--brand) !important;
}

.form-check-input:focus,
.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.25rem rgba(0, 194, 168, 0.25);
}

.timeline {
  border-left: 3px solid rgba(255, 122, 89, 0.35);
  padding-left: 1rem;
}
.timeline > div {
  margin-bottom: 1rem;
}

.cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 2px solid var(--brand);
}

.rounded-4 {
  border-radius: var(--radius) !important;
}
.shadow-xl {
  box-shadow: 0 2rem 3rem rgba(10, 15, 26, 0.2) !important;
}
.skip-link,
.visually-hidden-focusable.skip-link {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus,
.visually-hidden-focusable.skip-link:focus {
  clip: auto;
  clip-path: none;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.5rem 1rem;
  z-index: 10000;
  background: #fff;
  border-radius: 0.5rem;
  border: 2px solid var(--brand, #0d6efd);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
