@charset "UTF-8";

/* src/styles.scss */
:root {
  --brand:#0ea5e9;
  --brand-dark:#253f93;
  --bg:#0b0f1a;
  --surface:#0f172a;
  --text:#e2e8f0;
  --muted:#94a3b8;
  --ring: rgba(14,165,233,.45);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  min-height: 100vh;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans";
  background:
    radial-gradient(
      ellipse 1400px 900px at 10% 0%,
      rgba(37, 63, 147, 0.25),
      transparent 70%),
    radial-gradient(
      ellipse 1200px 800px at 90% 100%,
      rgba(14, 165, 233, 0.2),
      transparent 65%),
    radial-gradient(
      ellipse 1000px 700px at 50% 50%,
      rgba(37, 63, 147, 0.15),
      transparent 60%),
    var(--bg);
  background-attachment: fixed;
  background-size: 100% 100%;
  color: var(--text);
  line-height: 1.6;
}
body.no-scroll {
  overflow: hidden;
}
h1,
.h1 {
  font-size: clamp(2.2rem, 4vw + 1rem, 3.4rem);
  line-height: 1.1;
  margin: 0 0 0.75em;
}
h2,
.h2 {
  font-size: clamp(1.8rem, 2.8vw + 0.6rem, 2.4rem);
  line-height: 1.15;
  margin: 0 0 0.6em;
}
h3,
.h3 {
  font-size: clamp(1.35rem, 2vw + 0.5rem, 1.7rem);
  line-height: 1.25;
  margin: 0 0 0.55em;
}
h4,
.h4 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0 0 0.5em;
}
p {
  margin: 0 0 1.05em;
}
.lead {
  font-size: clamp(1.05rem, 1.15rem + 0.5vw, 1.25rem);
}
section {
  padding: clamp(42px, 8vh, 72px) 0;
}
.section-tight {
  padding: clamp(28px, 6vh, 52px) 0;
}
.stack {
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap, 20px);
}
.stack-xs {
  --stack-gap:8px;
}
.stack-sm {
  --stack-gap:12px;
}
.stack-lg {
  --stack-gap:32px;
}
.grid-responsive {
  display: grid;
  gap: var(--grid-gap, 20px);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.panel,
.card,
.legal-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  padding: 18px;
}
.panel-tight {
  padding: 14px;
}
*:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px var(--ring);
  border-color: var(--brand);
}
details {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  padding: 14px;
}
details + details {
  margin-top: 10px;
}
summary {
  cursor: pointer;
  font-weight: 600;
}
.full-width-mobile {
  display: inline-flex;
}
@media (max-width: 480px) {
  .full-width-mobile,
  .btn.full-width-mobile {
    width: 100%;
    justify-content: center;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  appearance: none;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.6);
  color: var(--text) !important;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn.primary {
  border: 1px solid var(--brand);
  background:
    linear-gradient(
      135deg,
      var(--brand-dark),
      var(--brand));
  color: white !important;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none !important;
}
.btn.primary:hover {
  background:
    linear-gradient(
      135deg,
      #1e40af,
      #06b6d4);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
  text-decoration: none !important;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
