:root {
  --blue-700: #1558b0;
  --blue-600: #1a73e8;
  --blue-500: #4285f4;
  --blue-100: #e8f0fe;
  --blue-050: #f5f9ff;
  --ink: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --surface: #ffffff;
  --canvas: #f8fafd;
  --green: #188038;
  --green-bg: #e6f4ea;
  --router: #665ac7;
  --router-bg: #f0efff;
  --router-line: #d8d4ff;
  --amber: #b06000;
  --amber-bg: #fef7e0;
  --shadow: 0 1px 2px rgba(60, 64, 67, .08), 0 4px 16px rgba(60, 64, 67, .08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Google Sans", "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue-700);
  border-radius: 6px;
  transition: top .15s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -.35px;
  text-decoration: none;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

.brand-name strong {
  color: var(--blue-700);
  font-weight: 760;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 5px;
  background: var(--blue-600);
  border-radius: 8px;
}

.brand-mark i {
  width: 4px;
  display: block;
  background: white;
  border-radius: 2px;
}

.brand-mark i:nth-child(1) { height: 7px; }
.brand-mark i:nth-child(2) { height: 12px; }
.brand-mark i:nth-child(3) { height: 18px; }

nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a,
.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
  text-decoration: none;
}

nav a:hover,
.footer-links a:hover {
  color: var(--blue-600);
}

.nav-action {
  margin-left: auto;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-600);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.nav-action:hover {
  background: var(--blue-700);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 480px;
  margin: 0 auto;
  padding: 86px 0 68px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--green-bg);
  vertical-align: 1px;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #202124;
  font-size: clamp(48px, 6.6vw, 82px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero-lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.trust-row {
  margin-top: 40px;
  display: flex;
  gap: 36px;
}

.trust-row div {
  min-width: 112px;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 680;
}

.trust-row span {
  color: var(--muted);
  font-size: 12px;
}

.hero-note {
  display: flex;
  gap: 14px;
  padding: 22px;
  background: var(--blue-050);
  border: 1px solid #d2e3fc;
  border-radius: 12px;
}

.route-glyph {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.route-glyph::before,
.route-glyph::after {
  content: "";
  position: absolute;
  left: 3px;
  width: 7px;
  height: 7px;
  background: var(--blue-600);
  border-radius: 50%;
}

.route-glyph::before {
  top: 2px;
}

.route-glyph::after {
  bottom: 2px;
  background: var(--router);
}

.route-glyph i {
  position: absolute;
  left: 9px;
  width: 18px;
  height: 12px;
  border-right: 2px solid #9aa0a6;
}

.route-glyph i:first-child {
  top: 6px;
  border-top: 2px solid #9aa0a6;
  border-radius: 0 8px 0 0;
}

.route-glyph i:last-child {
  bottom: 6px;
  border-bottom: 2px solid #9aa0a6;
  border-radius: 0 0 8px 0;
}

.note-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 50%;
  font-weight: 800;
}

.hero-note strong {
  font-size: 14px;
}

.hero-note p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.calculator-section {
  padding: 72px max(20px, calc((100% - 1180px) / 2));
  background: var(--canvas);
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
}

.section-heading {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
}

.section-heading h2,
.method-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 560;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
}

.calculator-controls,
.cost-receipt {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calculator-controls {
  display: grid;
  gap: 28px;
}

.field {
  min-width: 0;
}

.field label,
.label-row {
  display: flex;
  justify-content: space-between;
  color: #3c4043;
  font-size: 13px;
  font-weight: 650;
}

.field label {
  margin-bottom: 9px;
}

.label-row label {
  margin: 0;
}

.label-row output {
  color: var(--blue-700);
  font-weight: 700;
}

.token-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #5f6368;
  border-bottom: 2px solid #5f6368;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

select,
.number-field,
.search-field {
  width: 100%;
  min-height: 50px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bdc1c6;
  border-radius: 7px;
}

select {
  padding: 0 44px 0 14px;
  appearance: none;
}

.number-field {
  display: flex;
  align-items: center;
}

.number-field input {
  width: 100%;
  min-width: 0;
  padding: 0 4px 0 14px;
  background: transparent;
  border: 0;
  outline: 0;
  font-variant-numeric: tabular-nums;
}

.number-field span {
  padding-right: 14px;
  color: var(--muted);
  font-size: 12px;
}

select:focus,
.number-field:focus-within,
.search-field:focus-within {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 2px rgba(26, 115, 232, .18);
  outline: 0;
}

.source-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 620;
  text-decoration: none;
}

.source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.openrouter-link {
  color: var(--router);
}

.channel-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.channel-field legend {
  margin-bottom: 9px;
  color: #3c4043;
  font-size: 13px;
  font-weight: 650;
}

.channel-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.channel-option {
  position: relative;
  min-width: 0;
  margin: 0 !important;
  cursor: pointer;
}

.channel-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.channel-option > span {
  min-height: 72px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 13px 15px;
  background: #fff;
  border: 1px solid #bdc1c6;
  border-radius: 8px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.channel-option strong,
.channel-option small {
  display: block;
}

.channel-option strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.channel-option small {
  margin-top: 5px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.channel-option:first-child input:checked + span {
  background: var(--blue-050);
  border-color: var(--blue-600);
  box-shadow: inset 0 0 0 1px var(--blue-600);
}

.channel-option:last-child input:checked + span {
  background: var(--router-bg);
  border-color: var(--router);
  box-shadow: inset 0 0 0 1px var(--router);
}

.channel-option input:focus-visible + span {
  outline: 3px solid rgba(26, 115, 232, .22);
  outline-offset: 2px;
}

.channel-option input:disabled + span {
  cursor: not-allowed;
  opacity: .52;
}

.fee-toggle {
  width: fit-content;
  margin: 12px 0 0 !important;
  align-items: center;
  gap: 8px;
  color: var(--muted) !important;
  cursor: pointer;
  font-size: 11px !important;
  font-weight: 520 !important;
}

.fee-toggle input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--router);
}

input[type="range"] {
  width: 100%;
  margin: 16px 0 6px;
  accent-color: var(--blue-600);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

.cost-receipt {
  position: relative;
  overflow: hidden;
}

.cost-receipt::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--blue-600);
}

.receipt-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
}

.receipt-head span {
  color: var(--muted);
  font-size: 12px;
}

.receipt-head strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 55px);
  font-weight: 560;
  letter-spacing: -.045em;
  font-variant-numeric: tabular-nums;
}

.verified-badge,
.status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 3px 9px;
  color: var(--green) !important;
  background: var(--green-bg);
  border-radius: 999px;
  font-size: 11px !important;
  font-weight: 750;
}

.openrouter-badge {
  color: var(--router) !important;
  background: var(--router-bg);
}

.receipt-model {
  margin: 30px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.receipt-model span,
.receipt-model strong {
  display: block;
}

.receipt-model span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.receipt-model strong {
  font-size: 18px;
  font-weight: 620;
}

.cost-lines {
  margin: 0;
}

.cost-lines div,
.receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cost-lines div {
  padding: 8px 0;
}

.cost-lines dt {
  color: var(--muted);
  font-size: 13px;
}

.cost-lines dd {
  margin: 0;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.channel-gap {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  background: linear-gradient(90deg, var(--blue-050) 0 49.8%, var(--router-bg) 50.2% 100%);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.channel-gap > div:last-child {
  text-align: right;
}

.channel-gap span,
.channel-gap strong {
  display: block;
}

.channel-gap span {
  color: var(--muted);
  font-size: 10px;
}

.channel-gap strong {
  margin-top: 4px;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.gap-result {
  min-width: 92px;
  text-align: center;
}

.gap-result span {
  color: #3c4043;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
}

.gap-result i {
  position: relative;
  width: 44px;
  height: 1px;
  display: block;
  margin: 7px auto 0;
  background: #9aa0a6;
}

.gap-result i::before,
.gap-result i::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #9aa0a6;
  border-right: 1px solid #9aa0a6;
}

.gap-result i::before {
  left: 0;
  transform: rotate(-135deg);
}

.gap-result i::after {
  right: 0;
  transform: rotate(45deg);
}

.receipt-total {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px dashed #bdc1c6;
}

.receipt-total span {
  font-size: 13px;
  font-weight: 650;
}

.receipt-total strong {
  color: var(--blue-700);
  font-size: 20px;
  font-variant-numeric: tabular-nums;
}

.pricing-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.models-section,
.guides-section,
.home-content-section,
.home-faq-section,
.method-section,
footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.models-section {
  padding: 86px 0;
}

.guides-section {
  padding: 82px 0;
  border-top: 1px solid var(--line);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.guide-card {
  min-height: 255px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  text-decoration: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.guide-card:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.guide-card > span {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 30px 0 12px;
  font-size: 22px;
  font-weight: 640;
  letter-spacing: -.025em;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.guide-card strong {
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue-700);
  font-size: 12px;
}

.section-link {
  width: fit-content;
  display: block;
  margin-top: 22px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.home-content-section {
  padding: 88px 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 76px;
  border-top: 1px solid var(--line);
}

.home-content-intro h2,
.home-faq-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 43px);
  font-weight: 560;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.home-content-intro > p:not(.eyebrow) {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.home-question-grid {
  border-top: 1px solid var(--line);
}

.home-question-grid article {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.home-question-grid h3 {
  margin: 0 0 9px;
  font-size: 17px;
  font-weight: 660;
}

.home-question-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.home-faq-section {
  padding: 84px 0;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 82px;
  border-top: 1px solid var(--line);
}

.home-faq-list {
  border-top: 1px solid var(--line);
}

.home-faq-list details {
  border-bottom: 1px solid var(--line);
}

.home-faq-list summary {
  padding: 18px 32px 18px 0;
  font-size: 14px;
  font-weight: 660;
  cursor: pointer;
}

.home-faq-list p {
  margin: -3px 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.model-tools {
  min-width: 420px;
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 10px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
}

.search-field svg {
  width: 18px;
  fill: none;
  stroke: #5f6368;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
}

.model-tools select {
  min-height: 50px;
}

.table-shell {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  white-space: nowrap;
  min-width: 980px;
}

th {
  padding: 13px 18px;
  color: var(--muted);
  background: #f8f9fa;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

td {
  padding: 17px 18px;
  border-bottom: 1px solid #edf0f2;
  font-size: 13px;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover {
  background: var(--blue-050);
}

.model-name {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 650;
}

.model-provider {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 520;
}

.provider-avatar {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.price-value {
  font-variant-numeric: tabular-nums;
}

.price-pair {
  display: block;
  line-height: 1.6;
}

.price-pair small {
  width: 24px;
  display: inline-block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.openrouter-price {
  color: #3f3788;
}

.unavailable {
  color: var(--muted);
  font-size: 11px;
}

.difference-pill {
  display: inline-flex;
  max-width: 150px;
  padding: 5px 8px;
  color: #3c4043;
  background: #f1f3f4;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.25;
  white-space: normal;
}

.table-sources {
  display: grid;
  gap: 5px;
}

.table-sources a {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 650;
  text-decoration: none;
}

.table-sources a:last-child {
  color: var(--router);
}

.pending-badge {
  color: var(--amber) !important;
  background: var(--amber-bg);
}

.self-hosted-badge {
  color: #5f6368 !important;
  background: #f1f3f4;
}

.deprecated-badge {
  color: #8a4f00 !important;
  background: #fce8d5;
}

.empty-state {
  margin: 0;
  padding: 42px;
  color: var(--muted);
  text-align: center;
}

.method-section {
  padding: 84px 0 96px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 82px;
  border-top: 1px solid var(--line);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.method-grid article {
  padding-top: 18px;
  border-top: 3px solid var(--blue-600);
}

.method-grid span {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
}

.method-grid h3 {
  margin: 18px 0 10px;
  font-size: 17px;
  font-weight: 650;
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

footer {
  padding: 38px 0 48px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.footer-brand {
  font-size: 17px;
}

footer p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 64px;
  }

  .hero-note {
    max-width: 520px;
  }

  .calculator-grid,
  .home-content-section,
  .home-faq-section,
  .method-section {
    grid-template-columns: 1fr;
  }

  .method-grid {
    gap: 18px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .model-tools {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .hero,
  .models-section,
  .guides-section,
  .home-content-section,
  .home-faq-section,
  .method-section,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .nav-action {
    display: none;
  }

  .hero {
    padding: 52px 0 48px;
  }

  h1 {
    font-size: 49px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .trust-row {
    gap: 18px;
  }

  .trust-row div {
    min-width: 0;
  }

  .calculator-section {
    padding: 58px 14px;
  }

  .calculator-controls,
  .cost-receipt {
    padding: 24px 20px;
  }

  .token-grid,
  .model-tools,
  .guides-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .models-section {
    padding: 62px 0;
  }

  .method-section {
    gap: 38px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
