@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg-dark: #050b12;
  --bg-elevated: #0c1724;
  --bg-elevated-soft: #101c2a;
  --primary-blue: #0d2b45;
  --primary-blue-soft: #16365a;
  --accent-gold: #eac26a;
  --accent-gold-soft: #f1d38d;
  --text-light: #fff;
  --text-subtle: #c8d2e3;
  --border-subtle: #ffffff14;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 45px #0000008c;
}

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

body {
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #050b12;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  position: relative;
  overflow-x: hidden;
}

body:before {
  content: "";
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(60% 80% at 20% 15%, #23487047, #0000 70%), radial-gradient(50% 70% at 80% 25%, #14284638, #0000 70%), radial-gradient(70% 90% at 50% 100%, #0f1c2d59, #0000 75%), linear-gradient(#050b12 0%, #02050a 100%);
  position: fixed;
  inset: 0;
}

body:after {
  content: "";
  z-index: -1;
  pointer-events: none;
  opacity: .25;
  background-image: radial-gradient(#ffffff08 1px, #0000 1px);
  background-size: 3px 3px;
  position: fixed;
  inset: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  z-index: 999;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #0a121ea6;
  border-bottom: 1px solid #ffffff0f;
  width: 100%;
  transition: -webkit-backdrop-filter .25s, backdrop-filter .25s, background .25s;
  position: sticky;
  top: 0;
  box-shadow: 0 6px 22px #0000008c;
}

.nav-inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
}

.nav-logo {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
}

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

.nav-link, .nav-link-button {
  color: var(--text-subtle);
  cursor: pointer;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  transition: color .22s, transform .16s;
  position: relative;
}

.nav-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

.nav-link:after {
  content: "";
  background: linear-gradient(90deg, #f4d58d, #f9f1c5);
  border-radius: 999px;
  width: 0;
  height: 2px;
  transition: width .2s ease-out;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.nav-link:hover:after {
  width: 100%;
}

.nav-link--active {
  color: var(--accent-gold);
  text-shadow: 0 0 6px #eac26a99;
}

.nav-link--active:after {
  width: 100%;
}

.hero {
  background: radial-gradient(circle at 15% 20%, #23466e99, #0000 50%), radial-gradient(circle at 85% 30%, #0a192dcc, #0000 60%), linear-gradient(#07121d 0%, #04080f 100%);
  padding: 90px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 40px;
  display: grid;
}

.hero-kicker {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8ea3c9;
  margin-bottom: 10px;
  font-size: 12px;
}

.hero-title {
  letter-spacing: -.02em;
  text-shadow: 0 2px 12px #0009;
  margin-bottom: 16px;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-subtitle {
  color: #b8c3d9;
  max-width: 640px;
  margin-bottom: 28px;
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 16px;
  display: flex;
}

.hero-card {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: linear-gradient(145deg, #19283cd9, #0c1423e6), radial-gradient(circle at 0 0, #ffffff0f, #0000 50%);
  border: 1px solid #ffffff2e;
  border-radius: 22px;
  padding: 30px 28px 28px;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  box-shadow: inset 0 1px #ffffff0f, 0 18px 40px #0009;
}

.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 80px #000000bf, inset 0 1px #ffffff0f;
}

.hero-card:before {
  content: "";
  border-radius: inherit;
  pointer-events: none;
  opacity: .35;
  background: linear-gradient(135deg, #eac26a59, #ffffff0d, #0000 60%);
  position: absolute;
  inset: 0;
}

.cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  display: grid;
}

.service-card {
  background: radial-gradient(circle at 30% 10%, #ffffff0f, #0000 60%), linear-gradient(#0b1622, #08101a);
  border: 1px solid #ffffff0d;
  border-radius: 16px;
  padding: 20px 18px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: inset 0 1px #ffffff0d, 0 12px 32px #0009;
}

.service-card:hover {
  border-color: #eac26a99;
  transform: translateY(-6px);
  box-shadow: 0 24px 55px #000000bf;
}

.service-title {
  letter-spacing: -.01em;
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 600;
}

.service-text {
  color: var(--text-subtle);
  font-size: 14px;
}

.btn-primary {
  color: #1b2430;
  background: linear-gradient(135deg, #f4d58d 0%, #eac26a 45%, #d4a94d 100%);
  border: 1px solid #fff3;
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 600;
  transition: transform .18s, box-shadow .2s;
  box-shadow: inset 0 1px #ffffff80, 0 10px 25px #0000008c, 0 0 18px #eac26a59;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px #ffffffb3, 0 14px 35px #000000a6, 0 0 24px #eac26a80;
}

.btn-ghost {
  color: #fff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: linear-gradient(#ffffff14, #ffffff05);
  border: 1px solid #ffffff59;
  border-radius: 999px;
  padding: 12px 28px;
}

.cta-bar {
  background: linear-gradient(145deg, #1c3047 0%, #0a121d 70%);
  border: 1px solid #ffffff2e;
  border-radius: 18px;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 12px 0 60px;
  padding: 22px 24px;
  display: flex;
  box-shadow: 0 0 0 1px #ffffff0d, 0 20px 50px #000000b3;
}

.cta-bar-title {
  font-size: 18px;
  font-weight: 600;
}

.cta-bar-subtitle {
  color: var(--text-subtle);
  font-size: 14px;
}

.section-divider {
  background: linear-gradient(to right, #0000, #eac26a2e, #0000);
  height: 1px;
  margin: 70px 0;
}

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

  .hero-title {
    font-size: 36px;
  }
}

.hero-centered {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title-row {
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 18px 0 16px;
  display: flex;
}

.hero-title-centered {
  letter-spacing: -.02em;
  white-space: nowrap;
  font-size: 48px;
  font-weight: 700;
}

.hero-line {
  background: linear-gradient(to right, #0000, #eac26aa6, #0000);
  flex: 1;
  max-width: 140px;
  height: 1px;
  box-shadow: 0 0 8px #eac26a59;
}

.hero-description {
  max-width: 720px;
  color: var(--text-subtle);
  margin: 0 auto 32px;
  line-height: 1.75;
}

.hero-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-description {
  max-width: 720px;
  margin: 20px auto;
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  display: flex;
}

.hero-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 16px auto 0;
  line-height: 1.6;
  display: block;
}

.login-overlay {
  background: #000c;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.login-card {
  color: #fff;
  background: #0b1d35;
  border-radius: 10px;
  width: 420px;
  padding: 40px;
}

.login-card input {
  color: #fff;
  background: #08162a;
  border: 1px solid #2c4c7c;
  width: 100%;
  margin-top: 15px;
  padding: 12px;
}

.login-card button {
  color: #000;
  background: #d4af37;
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  font-weight: bold;
}

.google {
  color: #000;
  background: #fff;
}

.login-button {
  color: #fff;
  background: #000;
  border: none;
  width: 100%;
  margin-top: 5px;
  padding: 12px;
}

.oauth {
  background: #fff;
  border: 1px solid #ddd;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
}

.otp-btn {
  background: #f5f5f5;
  border: 1px solid #ddd;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
}

.login-shell {
  background: linear-gradient(135deg, #001a33, #0a2e4d);
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.login-card {
  background: #fff;
  border-radius: 10px;
  width: 420px;
  padding: 40px;
  box-shadow: 0 20px 50px #0000004d;
}

.login-title {
  margin-bottom: 6px;
  font-size: 28px;
}

.login-sub {
  color: #666;
  margin-bottom: 20px;
}

.login-input {
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
}

.login-button {
  color: #fff;
  cursor: pointer;
  background: #000;
  border: none;
  width: 100%;
  margin-top: 5px;
  padding: 12px;
}

.divider {
  text-align: center;
  color: #777;
  margin: 20px 0;
}

.oauth-btn {
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 10px;
  padding: 12px;
  display: flex;
}

.icon {
  width: 18px;
}

.login-links {
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
  display: flex;
}

.otp-btn {
  cursor: pointer;
  background: #f3f3f3;
  border: 1px solid #ddd;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
}

.auth-shell {
  background: radial-gradient(circle at 20% 20%, #3c78ff40, #0000 50%), radial-gradient(circle at 80% 80%, #143c7859, #0000 50%), linear-gradient(135deg, #071426, #0a2744);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.auth-shell:before {
  content: "";
  pointer-events: none;
  background-image: linear-gradient(#ffffff08 1px, #0000 1px), linear-gradient(90deg, #ffffff08 1px, #0000 1px);
  background-size: 60px 60px;
  animation: 30s linear infinite gridMove;
  position: absolute;
  inset: 0;
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(60px);
  }
}

.auth-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff0a;
  border: 1px solid #ffffff1f;
  border-radius: 14px;
  width: 420px;
  padding: 40px;
  box-shadow: 0 10px 40px #00000080, 0 0 60px #468cff26;
}

.auth-title {
  color: #fff;
  margin-bottom: 6px;
  font-size: 28px;
  font-weight: 600;
}

.auth-sub {
  color: #b8c7da;
  margin-bottom: 25px;
}

.auth-input {
  color: #fff;
  background: #ffffff0f;
  border: 1px solid #ffffff26;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
}

.auth-btn {
  color: #081426;
  cursor: pointer;
  background: linear-gradient(135deg, #f3c969, #c99c3a);
  border: none;
  border-radius: 8px;
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  font-weight: 600;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px #0000004d;
}

.auth-btn:after {
  content: "";
  background: linear-gradient(120deg, #0000, #fff6, #0000);
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: -100%;
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px #0006, 0 0 30px #f0c85a59;
}

.auth-btn:hover:after {
  left: 100%;
}

.oauth-btn {
  color: #fff;
  cursor: pointer;
  background: #ffffff0d;
  border: 1px solid #ffffff2e;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
  padding: 11px;
  display: flex;
}

.auth-divider {
  text-align: center;
  color: #8fa3bf;
  letter-spacing: 1px;
  margin: 20px 0;
  font-size: 13px;
}

.auth-links {
  justify-content: space-between;
  margin-top: 12px;
  font-size: 13px;
  display: flex;
}

.auth-links a {
  color: #8fb8ff;
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

.oauth-btn {
  color: #fff;
  cursor: pointer;
  background: #ffffff0d;
  border: 1px solid #ffffff2e;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  font-weight: 500;
  transition: all .25s;
  display: flex;
}

.oauth-btn:hover {
  background: #ffffff14;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px #00000040;
}

.otp-btn {
  color: #fff;
  cursor: pointer;
  background: #ffffff14;
  border: 1px solid #ffffff2e;
  border-radius: 8px;
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  font-weight: 500;
  transition: all .25s;
}

.otp-btn:hover {
  background: #ffffff1f;
  transform: translateY(-1px);
}

.platform-shell {
  color: #fff;
  background: radial-gradient(circle at 20% 20%, #3c78ff40, #0000 50%), radial-gradient(circle at 80% 80%, #143c7859, #0000 50%), linear-gradient(135deg, #071426, #0a2744);
  min-height: 100vh;
  padding: 80px 40px;
}

.platform-header {
  text-align: center;
  margin-bottom: 60px;
}

.platform-header h1 {
  margin-bottom: 10px;
  font-size: 36px;
}

.platform-header p {
  color: #9db4d6;
}

.platform-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  display: grid;
}

.platform-card {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 14px;
  padding: 30px;
  transition: all .25s;
  box-shadow: 0 10px 40px #00000080;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px #0009, 0 0 40px #5096ff33;
}

.platform-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.platform-card p {
  color: #9db4d6;
  margin-bottom: 20px;
  font-size: 14px;
}

.platform-btn {
  color: #081426;
  background: linear-gradient(135deg, #f3c969, #c99c3a);
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  display: inline-block;
  box-shadow: 0 6px 20px #0000004d;
}

.platform-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px #0006, 0 0 25px #f0c85a59;
}

.intel-shell {
  color: #fff;
  background: #0b1b2b;
  min-height: 100vh;
  padding: 40px;
}

.intel-metrics {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  display: grid;
}

.intel-card span {
  font-size: 24px;
  font-weight: 600;
}

.intel-grid {
  grid-template-columns: 260px 1fr 300px;
  gap: 25px;
  display: grid;
}

.sector-radar {
  background: #12263a;
  border-radius: 10px;
  padding: 20px;
}

.sector-row {
  border-bottom: 1px solid #1e3a55;
  justify-content: space-between;
  padding: 10px 0;
  display: flex;
}

.sector-count {
  color: #e7c065;
}

.policy-feed {
  background: #12263a;
  border-radius: 10px;
  padding: 20px;
}

.policy-item {
  border-bottom: 1px solid #1e3a55;
  padding: 12px;
}

.policy-title {
  font-weight: 600;
}

.policy-meta {
  color: #9fb6cc;
  justify-content: space-between;
  font-size: 12px;
  display: flex;
}

.ai-panel {
  background: #12263a;
  border-radius: 10px;
  padding: 20px;
}

.ai-box {
  background: #1a3552;
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 12px;
}

.whats-new {
  background: #12263a;
  border-radius: 10px;
  margin-top: 30px;
  padding: 20px;
}

.scroll-feed {
  max-height: 140px;
  overflow-y: auto;
}

.scroll-item {
  border-bottom: 1px solid #1e3a55;
  padding: 8px 0;
}

.policy-detail-shell {
  color: #fff;
  background: #0b1b2b;
  min-height: 100vh;
  padding: 40px;
}

.policy-header {
  margin-bottom: 30px;
}

.policy-header-meta {
  color: #9fb6cc;
  gap: 20px;
  margin-top: 10px;
  font-size: 13px;
  display: flex;
}

.policy-detail-grid {
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  display: grid;
}

.policy-section {
  background: #12263a;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
}

.policy-ai {
  flex-direction: column;
  gap: 15px;
  display: flex;
}

.ai-card {
  background: #12263a;
  border-radius: 10px;
  padding: 16px;
}

.impact {
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
}

.impact.HIGH {
  background: #d9534f;
}

.impact.MEDIUM {
  background: #f0ad4e;
}

.impact.LOW {
  background: #5cb85c;
}

.sector-shell {
  color: #fff;
  background: #0b1b2b;
  min-height: 100vh;
  padding: 40px;
}

.sector-header {
  margin-bottom: 30px;
}

.sector-feed {
  background: #12263a;
  border-radius: 10px;
  padding: 20px;
}

.sector-policy {
  color: #fff;
  border-bottom: 1px solid #1e3a55;
  padding: 14px;
  text-decoration: none;
  display: block;
}

.sector-policy-title {
  font-weight: 600;
}

.sector-policy-meta {
  color: #9fb6cc;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 12px;
  display: flex;
}

.sector-empty {
  color: #9fb6cc;
  padding: 20px;
}

.intel-engine-shell {
  color: #fff;
  background: #0b1b2b;
  min-height: 100vh;
  padding: 40px;
}

.intel-engine-header, .intel-engine-policy {
  margin-bottom: 30px;
}

.intel-meta {
  color: #9fb6cc;
  gap: 20px;
  margin-top: 10px;
  font-size: 13px;
  display: flex;
}

.intel-engine-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  display: grid;
}

.intel-card {
  background: #12263a;
  border-radius: 10px;
  padding: 20px;
}

.exec-shell {
  color: #fff;
  background: #0b1b2b;
  min-height: 100vh;
  padding: 40px;
}

.exec-header {
  margin-bottom: 30px;
}

.exec-metrics {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  display: grid;
}

.exec-card {
  background: #12263a;
  border-radius: 10px;
  padding: 20px;
}

.dashboard-engine {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.dashboard-row {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: grid;
}

.dashboard-panel {
  background: #12263a;
  border-radius: 10px;
  padding: 20px;
}

/* [next]/internal/font/google/inter_5f861bbd.module.css [app-client] (css) */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/2c55a0e60120577a-s.2a48534a.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/9c72aa0f40e4eef8-s.18a48cbc.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/ad66f9afd8947f86-s.7a40eb73.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/5476f68d60460930-s.c995e352.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/2bbe8d2671613f1f-s.76dcb0b2.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/1bffadaabf893a1e-s.7cd81963.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/83afe278b6a6bb3c-s.p.3a6ba036.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter Fallback;
  src: local(Arial);
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0.0%;
  size-adjust: 107.12%;
}

.inter_5f861bbd-module__aU91IG__className {
  font-family: Inter, Inter Fallback;
  font-style: normal;
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__128a96a0._.css.map*/