/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  color-scheme: light;
  --font-body: Arial, Helvetica, sans-serif;
  --font-heading: Arial, Helvetica, sans-serif;
  --bg: #eef4ff;
  --bg-accent: radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(14, 116, 144, 0.12), transparent 24%);
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: #f7faff;
  --border: rgba(148, 163, 184, 0.28);
  --text: #0f172a;
  --muted: #475569;
  --heading: #0b1f4d;
  --primary: #163ea8;
  --primary-strong: #0b2c7c;
  --primary-soft: #e2ebff;
  --success-bg: #ebfbf4;
  --success-text: #0c6b43;
  --success-border: rgba(16, 185, 129, 0.28);
  --warning-bg: #fff8ec;
  --warning-text: #a14b08;
  --warning-border: rgba(245, 158, 11, 0.35);
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.dark {
  color-scheme: dark;
  --bg: #07101f;
  --bg-accent: radial-gradient(circle at top left, rgba(37, 99, 235, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(14, 116, 144, 0.16), transparent 24%);
  --surface: rgba(10, 20, 39, 0.82);
  --surface-strong: #0d1b33;
  --surface-soft: #10213e;
  --border: rgba(96, 165, 250, 0.2);
  --text: #e5eefc;
  --muted: #a9b9d6;
  --heading: #f8fbff;
  --primary: #77a7ff;
  --primary-strong: #9cc0ff;
  --primary-soft: rgba(39, 90, 181, 0.24);
  --success-bg: rgba(22, 101, 52, 0.22);
  --success-text: #b7f7d2;
  --success-border: rgba(74, 222, 128, 0.2);
  --warning-bg: rgba(120, 53, 15, 0.26);
  --warning-text: #ffd8a8;
  --warning-border: rgba(251, 191, 36, 0.24);
  --shadow: 0 20px 48px rgba(2, 8, 23, 0.42);
  --shadow-soft: 0 14px 30px rgba(2, 8, 23, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-accent), var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  transition: background 180ms ease, color 180ms ease;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  color: var(--heading);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 20px 72px;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}

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

.nav-brand__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(22, 62, 168, 0.26);
}

.nav-brand__title {
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.nav-brand__subtitle {
  color: var(--muted);
  font-size: 0.87rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.nav a:hover {
  background: var(--primary-soft);
  color: var(--primary);
  transform: translateY(-1px);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 8px 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--primary) 24%, var(--border));
}

.theme-toggle__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(22, 62, 168, 0.25);
}

.theme-toggle__icon {
  position: absolute;
  width: 17px;
  height: 17px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.theme-toggle__icon.is-hidden {
  opacity: 0;
  transform: scale(0.7) rotate(-18deg);
}

.theme-toggle__text {
  display: grid;
  grid-gap: 1px;
  gap: 1px;
  text-align: left;
}

.theme-toggle__title {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.theme-toggle__label {
  font-size: 0.9rem;
}

.theme-toggle__value {
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 800;
}

.grid {
  display: grid;
  grid-gap: 20px;
  gap: 20px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.title {
  margin: 0 0 12px;
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.05;
}

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

.form {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
}

.form label {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  color: var(--heading);
  font-weight: 700;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px 14px;
  background: var(--surface-strong);
  color: var(--text);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid color-mix(in srgb, var(--primary) 24%, transparent);
  outline-offset: 1px;
  border-color: color-mix(in srgb, var(--primary) 34%, var(--border));
}

.button {
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(22, 62, 168, 0.24);
  transition: transform 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(22, 62, 168, 0.28);
}

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

.status {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--success-bg);
  color: var(--success-text);
  border: 1px solid var(--success-border);
}

.warning {
  background: var(--warning-bg);
  border-color: var(--warning-border);
}

.warning strong {
  display: block;
  margin-bottom: 8px;
  color: var(--warning-text);
}

input:disabled,
textarea:disabled,
select:disabled,
button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.tag {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.table th {
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.table-header h3 {
  margin: 0;
}

.tab-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tab-button {
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  cursor: pointer;
}

.tab-button.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #ffffff;
  border-color: transparent;
}

.workspace-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-gap: 20px;
  gap: 20px;
}

.ai-split {
  align-items: flex-start;
}

.ai-workspace-card,
.chat-shell {
  min-height: 720px;
}

.ai-workspace-card {
  display: grid;
  grid-gap: 20px;
  gap: 20px;
}

.ai-workspace-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.ai-workspace-header h2,
.chat-shell__header h2 {
  margin: 10px 0 8px;
  color: var(--heading);
  font-family: var(--font-heading);
}

.ai-mode-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: color-mix(in srgb, var(--primary-soft) 80%, var(--surface-strong));
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ai-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.ai-metric-card {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface-strong) 84%, transparent);
}

.ai-metric-card strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--heading);
}

.ai-section {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.ai-section h3 {
  margin: 0;
}

.ai-list-grid {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.ai-list-card {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
}

.ai-list-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.ai-list-card__value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--heading);
}

.ai-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ai-status--active,
.ai-status--connected {
  background: color-mix(in srgb, #22c55e 14%, var(--surface-strong));
  color: #16a34a;
}

.ai-status--inactive,
.ai-status--idle {
  background: color-mix(in srgb, #94a3b8 18%, var(--surface-strong));
  color: var(--muted);
}

.workflow-canvas {
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--primary-soft) 40%, transparent), transparent 42%),
    color-mix(in srgb, var(--surface-strong) 92%, transparent);
  overflow: hidden;
  min-height: 520px;
}

.workflow-canvas .react-flow {
  width: 100%;
  height: 520px;
}

.workflow-canvas .react-flow__renderer,
.workflow-canvas .react-flow__pane {
  cursor: -webkit-grab;
  cursor: grab;
}

.workflow-canvas .react-flow__node {
  border-radius: 18px;
}

.workflow-node-content {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  padding: 8px;
}

.workflow-node-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.workflow-node-title {
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.workflow-handle {
  width: 10px;
  height: 10px;
  border: 2px solid var(--surface);
  background: var(--primary);
}

.workflow-node-toolbar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  color: var(--heading);
  box-shadow: var(--shadow);
}

.workflow-node-toolbar span {
  color: var(--muted);
  font-size: 0.78rem;
}

.workflow-canvas .react-flow__controls,
.workflow-canvas .react-flow__minimap {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.workflow-panel {
  max-width: 280px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  box-shadow: var(--shadow);
}

.workflow-panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--heading);
}

.workflow-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.scope-chip-list,
.prompt-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scope-chip,
.prompt-chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 13px;
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
  color: var(--text);
  font: inherit;
}

.scope-chip.required {
  border-color: color-mix(in srgb, var(--primary) 24%, var(--border));
  background: color-mix(in srgb, var(--primary-soft) 68%, var(--surface-strong));
}

.prompt-chip {
  cursor: pointer;
  transition: border-color 140ms ease, transform 140ms ease;
}

.prompt-chip:hover {
  border-color: color-mix(in srgb, var(--primary) 28%, var(--border));
  transform: translateY(-1px);
}

.chat-shell {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  grid-gap: 16px;
  gap: 16px;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--primary-soft) 26%, transparent), transparent 40%),
    var(--surface);
}

.chat-shell__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.chat-log {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  overflow: auto;
}

.chat-log--pro {
  min-height: 420px;
  max-height: 520px;
  padding: 10px 4px 10px 0;
}

.chat-bubble {
  max-width: 88%;
  border-radius: 24px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.chat-bubble.assistant {
  justify-self: start;
  background: color-mix(in srgb, var(--primary-soft) 78%, var(--surface-strong));
  border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--border));
}

.chat-bubble.user {
  justify-self: end;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  border: 1px solid transparent;
  color: #ffffff;
}

.chat-bubble.user strong,
.chat-bubble.user p {
  color: #ffffff;
}

.chat-bubble p {
  margin: 8px 0 0;
  white-space: pre-wrap;
}

.chat-composer {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: color-mix(in srgb, var(--surface-strong) 94%, transparent);
}

.chat-composer textarea {
  width: 100%;
  resize: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  min-height: 84px;
}

.chat-composer textarea:focus {
  outline: none;
}

.chat-composer__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.graph-shell {
  width: 100%;
  overflow: auto;
}

.graph-svg {
  width: 100%;
  min-width: 700px;
  height: auto;
}

.graph-line {
  stroke: color-mix(in srgb, var(--primary) 30%, var(--muted));
  stroke-width: 2;
}

.graph-node {
  stroke-width: 2;
}

.graph-node.primary {
  fill: color-mix(in srgb, #93c5fd 28%, var(--surface-strong));
  stroke: #2563eb;
}

.graph-node.secondary {
  fill: color-mix(in srgb, #86efac 22%, var(--surface-strong));
  stroke: #16a34a;
}

.graph-node.center {
  fill: color-mix(in srgb, #c4b5fd 28%, var(--surface-strong));
  stroke: #5b5bd6;
}

.graph-node.accent {
  fill: color-mix(in srgb, #93c5fd 24%, var(--surface-strong));
  stroke: #1d4ed8;
}

.graph-node.report {
  fill: color-mix(in srgb, #fcd34d 24%, var(--surface-strong));
  stroke: #ca8a04;
}

.graph-text-title {
  font-size: 14px;
  font-weight: 700;
  fill: var(--heading);
}

.graph-text-sub {
  font-size: 12px;
  fill: var(--muted);
}

.provider-groups {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}

.provider-group {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.provider-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.provider-chip {
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary) 20%, var(--border));
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.oauth-card {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  background: color-mix(in srgb, var(--primary-soft) 52%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--border));
}

@media (max-width: 1000px) {
  .nav-shell {
    justify-content: space-between;
  }

  .nav {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .workspace-split {
    grid-template-columns: 1fr;
  }
}

/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"app/layout.tsx","import":"Inter","arguments":[{"subsets":["latin"],"variable":"--font-body","display":"swap"}],"variableName":"inter"} ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, 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;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, 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.00%;size-adjust: 107.12%
}.__className_f367f3 {font-family: 'Inter', 'Inter Fallback';font-style: normal
}.__variable_f367f3 {--font-body: 'Inter', 'Inter Fallback'
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"app/layout.tsx","import":"Manrope","arguments":[{"subsets":["latin"],"variable":"--font-heading","display":"swap"}],"variableName":"manrope"} ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/_next/static/media/438aa629764e75f3-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/_next/static/media/875ae681bfde4580-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/_next/static/media/51251f8b9793cdb3-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/_next/static/media/e857b654a2caa584-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/_next/static/media/cc978ac5ee68c2b6-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, 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;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/_next/static/media/4c9affa5bc8f420e-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: 'Manrope Fallback';src: local("Arial");ascent-override: 103.31%;descent-override: 29.07%;line-gap-override: 0.00%;size-adjust: 103.19%
}.__className_73ee6c {font-family: 'Manrope', 'Manrope Fallback';font-style: normal
}.__variable_73ee6c {--font-heading: 'Manrope', 'Manrope Fallback'
}

