/* [project]/src/app/globals.css [app-client] (css) */
.container {
  width: 100%;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.inline {
  display: inline;
}

:root {
  --bg: #060b17;
  --bg-soft: #0d1528;
  --surface: #0f192cc7;
  --surface-strong: #121e36eb;
  --text: #ebf2ff;
  --muted: #8f949d;
  --border: #233653;
  --primary: #2f93ff;
  --accent: #f7931a;
  --danger: #ff6b6b;
  --ring: #2f93ff73;
  --shadow: 0 28px 52px -22px #030814bf;
  --shadow-soft: 0 16px 34px -20px #040a1899;
}

html[data-theme="light"] {
  --bg: #eef3fa;
  --bg-soft: #fff;
  --surface: #fffffff0;
  --surface-strong: #fffffffa;
  --text: #0f1829;
  --muted: #4e5f7b;
  --border: #cfdaec;
  --primary: #1f5ed7;
  --accent: #cc7a16;
  --ring: #1f5ed74d;
  --shadow: 0 24px 42px -26px #101f4047;
  --shadow-soft: 0 14px 26px -20px #101f4033;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  color: var(--text);
  background: radial-gradient(1200px 620px at 18% -6%, #2f93ff3d, transparent 58%), radial-gradient(900px 540px at 88% -2%, #f7931a33, transparent 54%), linear-gradient(180deg, #070f1d 0%, var(--bg) 34%, #050913 100%);
  margin: 0;
  padding: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

html[data-theme="light"] body {
  background: radial-gradient(1100px 560px at 12% -8%, #2f93ff24, transparent 58%), radial-gradient(780px 420px at 90% -4%, #f7931a1a, transparent 52%), linear-gradient(180deg, #f5f8fd 0%, var(--bg) 36%, #e9f0f9 100%);
}

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

a:hover {
  text-decoration: underline;
}

::selection {
  color: #fff;
  background: #2f93ff59;
}

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.container {
  width: min(1240px, 100vw - 2rem);
  margin-inline: auto;
}

.main-shell {
  padding-block: 1.4rem 2.8rem;
}

.skip-link {
  position: absolute;
  top: auto;
  left: -9999px;
}

.skip-link:focus {
  background: var(--primary);
  color: #fff;
  z-index: 9999;
  border-radius: .5rem;
  padding: .6rem .85rem;
  top: 1rem;
  left: 1rem;
}

.site-header {
  z-index: 30;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: var(--bg);
  position: sticky;
  top: 0;
}

@supports (color: color-mix(in lab, red, red)) {
  .site-header {
    background: color-mix(in oklab, var(--bg) 86%, transparent);
  }
}

.site-header {
  border-bottom: 1px solid var(--border);
}

@supports (color: color-mix(in lab, red, red)) {
  .site-header {
    border-bottom: 1px solid color-mix(in oklab, var(--border) 80%, transparent);
  }
}

.nav {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 74px;
  display: flex;
}

.brand {
  color: var(--text);
  letter-spacing: .02em;
  font-weight: 700;
}

.nav-links {
  gap: .6rem;
  font-size: .93rem;
  display: flex;
}

.nav-links a {
  color: #4f7fae;
  border-radius: .55rem;
  padding: .4rem .62rem;
  transition: background .2s, color .2s;
}

.nav-links a:hover {
  color: #91b8dc;
  background: var(--primary);
  text-decoration: none;
}

@supports (color: color-mix(in lab, red, red)) {
  .nav-links a:hover {
    background: color-mix(in oklab, var(--primary) 18%, transparent);
  }
}

.section {
  margin-top: 2rem;
}

.hero {
  background: radial-gradient(620px 260px at 82% -6%, #f7931a29, transparent 58%), radial-gradient(720px 300px at 15% -12%, #2f93ff33, transparent 62%), var(--surface-strong);
  border: 1px solid var(--primary);
  position: relative;
  overflow: hidden;
}

@supports (color: color-mix(in lab, red, red)) {
  .hero {
    border: 1px solid color-mix(in oklab, var(--primary) 32%, var(--border));
  }
}

.hero {
  box-shadow: var(--shadow);
  border-radius: 1.2rem;
  padding: 2.15rem;
}

.hero:after {
  content: "";
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, #0000 24%, #ffffff0a 48%, #0000 68%);
  position: absolute;
  inset: 0;
}

.hero-badge {
  background: var(--primary);
  display: inline-flex;
}

@supports (color: color-mix(in lab, red, red)) {
  .hero-badge {
    background: color-mix(in oklab, var(--primary) 18%, transparent);
  }
}

.hero-badge {
  border: 1px solid var(--primary);
}

@supports (color: color-mix(in lab, red, red)) {
  .hero-badge {
    border: 1px solid color-mix(in oklab, var(--primary) 48%, transparent);
  }
}

.hero-badge {
  color: var(--muted);
  border-radius: 999px;
  padding: .36rem .84rem;
  font-size: .82rem;
}

.hero h1 {
  letter-spacing: -.02em;
  text-wrap: balance;
  color: #d39d62;
  text-shadow: 0 2px 16px #d49d6233;
  margin: .95rem 0 .64rem;
  font-size: clamp(1.95rem, 4vw, 3.3rem);
  line-height: 1.12;
}

.hero p {
  color: #898885;
  max-width: 78ch;
  margin: 0 0 1.25rem;
  font-size: clamp(1.02rem, 1.9vw, 1.12rem);
}

.section-head h2 {
  letter-spacing: -.01em;
  margin: 0;
  font-size: 1.6rem;
}

.section-head p {
  margin-top: .35rem;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: .85rem;
}

.controls {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: .9rem;
  margin-top: 1rem;
  display: grid;
}

.controls label {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  flex-direction: column;
  gap: .38rem;
  font-size: .84rem;
  display: flex;
}

@supports (color: color-mix(in lab, red, red)) {
  .controls label {
    color: color-mix(in oklab, var(--muted) 86%, var(--text));
  }
}

select {
  background: var(--bg-soft);
}

@supports (color: color-mix(in lab, red, red)) {
  select {
    background: color-mix(in oklab, var(--bg-soft) 80%, #ffffff05);
  }
}

select {
  color: var(--text);
  border: 1px solid var(--border);
}

@supports (color: color-mix(in lab, red, red)) {
  select {
    border: 1px solid color-mix(in oklab, var(--border) 84%, transparent);
  }
}

select {
  border-radius: .7rem;
  padding: .68rem .76rem;
  font-size: .95rem;
  box-shadow: inset 0 1px #ffffff08;
}

select:focus-visible {
  border-color: var(--primary);
}

@supports (color: color-mix(in lab, red, red)) {
  select:focus-visible {
    border-color: color-mix(in oklab, var(--primary) 65%, var(--border));
  }
}

.chart-layout {
  grid-template-columns: minmax(0, 2fr) minmax(355px, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  display: grid;
}

.chart-card, .yearly-table, .card, .legal-page .card, .stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
}

@supports (color: color-mix(in lab, red, red)) {
  .chart-card, .yearly-table, .card, .legal-page .card, .stat-card {
    border: 1px solid color-mix(in oklab, var(--border) 88%, transparent);
  }
}

.chart-card, .yearly-table, .card, .legal-page .card, .stat-card {
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 1rem;
}

.chart-card, .yearly-table, .card, .legal-page .card {
  padding: 1rem;
}

.chart-card {
  background: radial-gradient(460px 230px at 84% 16%, #d39d6229, #0000 66%), linear-gradient(#102037e0, #0b1526eb);
}

html[data-theme="light"] .chart-card {
  background: radial-gradient(500px 240px at 84% 16%, #cc7a1629, #0000 68%), radial-gradient(560px 280px at 12% -4%, #1f5ed724, #0000 62%), linear-gradient(#fafdfffa, #ecf4fdf5);
}

.chart-shell {
  flex-direction: column;
  gap: .55rem;
  display: flex;
}

.chart-meta-row {
  color: var(--muted);
  justify-content: space-between;
  gap: .7rem;
  font-size: .9rem;
  display: flex;
}

.chart-meta-row strong {
  color: #d39d62;
}

.chart-canvas {
  width: 100%;
  height: 460px;
}

.error-text {
  color: var(--danger);
  margin: 0;
}

.table-scroll {
  overflow: auto;
}

.yearly-table h3 {
  color: #d39d62;
  margin-top: 0;
}

.yearly-table table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  font-size: .9rem;
}

.yearly-table th, .yearly-table td {
  border-bottom: 1px solid var(--border);
}

@supports (color: color-mix(in lab, red, red)) {
  .yearly-table th, .yearly-table td {
    border-bottom: 1px solid color-mix(in oklab, var(--border) 90%, transparent);
  }
}

.yearly-table th, .yearly-table td {
  text-align: left;
  padding: .42rem .35rem;
}

.yearly-table th {
  color: #d39d62;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .76rem;
}

.yearly-table td:nth-child(3), .yearly-table th:nth-child(3) {
  border-left: 1px solid var(--border);
}

@supports (color: color-mix(in lab, red, red)) {
  .yearly-table td:nth-child(3), .yearly-table th:nth-child(3) {
    border-left: 1px solid color-mix(in oklab, var(--border) 75%, transparent);
  }
}

.yearly-table td:nth-child(3), .yearly-table th:nth-child(3) {
  padding-left: .72rem;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .85rem;
  margin-top: 1rem;
  display: grid;
}

.stat-card {
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.stat-card:before {
  content: "";
  background: linear-gradient(90deg, var(--primary), var(--accent));
  height: 3px;
  position: absolute;
  inset: 0 0 auto;
}

.stat-card h3 {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
  font-size: .86rem;
}

.stat-card p {
  letter-spacing: -.01em;
  color: #d39d62;
  margin: .52rem 0 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.method-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: .9rem;
  display: grid;
}

.card h3 {
  margin-top: 0;
}

.card ul {
  margin: 0;
  padding-left: 1rem;
}

.btn {
  border: 1px solid var(--border);
}

@supports (color: color-mix(in lab, red, red)) {
  .btn {
    border: 1px solid color-mix(in oklab, var(--border) 78%, transparent);
  }
}

.btn {
  cursor: pointer;
  background: var(--surface-strong);
  border-radius: .72rem;
  padding: .6rem .86rem;
}

@supports (color: color-mix(in lab, red, red)) {
  .btn {
    background: color-mix(in oklab, var(--surface-strong) 72%, transparent);
  }
}

.btn {
  color: var(--text);
  transition: transform .18s, box-shadow .18s, background .18s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -16px #050a16e6;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent));
}

@supports (color: color-mix(in lab, red, red)) {
  .btn.primary {
    background: linear-gradient(135deg, var(--accent), color-mix(in oklab, var(--accent) 74%, #ffbe5e));
  }
}

.btn.primary {
  border-color: var(--accent);
}

@supports (color: color-mix(in lab, red, red)) {
  .btn.primary {
    border-color: color-mix(in oklab, var(--accent) 65%, #f0a34c);
  }
}

.btn.primary {
  color: #1d1203;
  font-weight: 700;
}

.btn.secondary {
  background: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

@supports (color: color-mix(in lab, red, red)) {
  .site-footer {
    border-top: 1px solid color-mix(in oklab, var(--border) 78%, transparent);
  }
}

.site-footer {
  background: var(--bg-soft);
}

@supports (color: color-mix(in lab, red, red)) {
  .site-footer {
    background: color-mix(in oklab, var(--bg-soft) 45%, transparent);
  }
}

.site-footer {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 1.2rem 0 2rem;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  display: grid;
}

.footer-company {
  letter-spacing: .01em;
  margin: 0 0 .35rem;
  font-weight: 700;
}

.footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: .5rem;
  display: grid;
}

.footer-manage {
  color: var(--primary);
  text-align: left;
  cursor: pointer;
  font: inherit;
  background: none;
  border: none;
  padding: 0;
}

.footer-manage:hover {
  text-decoration: underline;
}

.consent-banner {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

@supports (color: color-mix(in lab, red, red)) {
  .consent-banner {
    border: 1px solid color-mix(in oklab, var(--border) 84%, transparent);
  }
}

.consent-banner {
  box-shadow: var(--shadow);
  z-index: 50;
  border-radius: .9rem;
  padding: 1rem;
}

.consent-actions {
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .8rem;
  display: flex;
}

.consent-modal-backdrop {
  z-index: 60;
  background: #0000007a;
  place-items: center;
  padding: 1rem;
  display: grid;
  position: fixed;
  inset: 0;
}

.consent-modal {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  width: min(560px, 100%);
}

@supports (color: color-mix(in lab, red, red)) {
  .consent-modal {
    border: 1px solid color-mix(in oklab, var(--border) 84%, transparent);
  }
}

.consent-modal {
  border-radius: .9rem;
  padding: 1rem;
}

.consent-row {
  grid-template-columns: 20px 1fr;
  gap: .7rem;
  margin-top: .7rem;
  display: grid;
}

.consent-row small {
  color: var(--muted);
  display: block;
}

.legal-page h1 {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .chart-layout {
    grid-template-columns: 1fr;
  }

  .chart-canvas {
    height: 390px;
  }
}

@media (max-width: 780px) {
  .main-shell {
    padding-top: 1rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: .6rem 0;
  }

  .hero {
    padding: 1.45rem;
  }

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/