/* Aksh Niti — profile page.
 *
 * Same token block as portal.css and login.css so the three pages read as one
 * product. Standalone rather than an extension of portal.css: this page shares
 * none of the dashboard's grid shell.
 */

:root {
    color-scheme: light;
    --bg: #f7f9fc;
    --surface: #ffffff;
    --surface-2: #f1f4f9;
    --text: #182033;
    --muted: #667085;
    --line: #dfe5ef;
    --brand: #1a73e8;
    --brand-2: #0f9d58;
    --warning: #fbbc04;
    --danger: #d93025;
    --shadow: 0 18px 50px rgba(24, 32, 51, 0.10);
}

html[data-theme="dark"] {
    color-scheme: dark;
    --bg: #101418;
    --surface: #171b20;
    --surface-2: #20262d;
    --text: #edf2f7;
    --muted: #a9b4c2;
    --line: #2d3440;
    --brand: #8ab4f8;
    --brand-2: #81c995;
    --warning: #fdd663;
    --danger: #f28b82;
    --shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

/* Author `display` on a flex/grid element outranks the UA's [hidden] rule, and
   most things toggled on this page are one or the other. */
[hidden] {
    display: none !important;
}

body {
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    background:
        radial-gradient(circle at top left, rgba(26, 115, 232, 0.10), transparent 32rem),
        linear-gradient(180deg, #fbfcff 0%, var(--bg) 100%);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    /* Room for the sticky save bar so it never covers the last field. */
    padding-bottom: 96px;
}

html[data-theme="dark"] body {
    background:
        radial-gradient(circle at top left, rgba(138, 180, 248, 0.16), transparent 32rem),
        linear-gradient(180deg, #0f1216 0%, var(--bg) 100%);
}

button,
input,
select {
    font: inherit;
    color: inherit;
}

h1, h2 {
    letter-spacing: -0.02em;
}

.pf-shell {
    width: min(1080px, 100%);
    margin: 0 auto;
    padding: 20px 20px 0;
}

/* ── Top bar ────────────────────────────────────────────────────────── */

.pf-topbar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 0 22px;
}

.pf-topbar-title {
    flex: 1;
    min-width: 0;
}

.pf-topbar-title strong {
    display: block;
    font-size: 1.06rem;
}

.pf-topbar-title small {
    display: block;
    margin-top: 1px;
    color: var(--muted);
    font-size: 0.82rem;
}

.pf-icon-btn {
    display: inline-grid;
    place-items: center;
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    cursor: pointer;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--line);
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
}

.pf-icon-btn:hover {
    color: var(--text);
    border-color: var(--brand);
}

/* ── Identity ───────────────────────────────────────────────────────── */

.pf-identity {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.pf-avatar {
    display: grid;
    place-items: center;
    flex: none;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    overflow: hidden;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(140deg, var(--brand), #1558bd);
}

.pf-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pf-identity-main {
    flex: 1;
    min-width: 0;
}

.pf-identity-main h1 {
    margin: 0 0 4px;
    font-size: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pf-email {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.9rem;
    overflow-wrap: anywhere;
}

.pf-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-2);
    background: rgba(15, 157, 88, 0.12);
}

.pf-badge-warn {
    color: var(--warning);
    background: rgba(251, 188, 4, 0.15);
}

.pf-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: var(--muted);
    font-size: 0.82rem;
}

.pf-meta i {
    margin-right: 5px;
    opacity: 0.75;
}

.pf-meta strong {
    color: var(--text);
    font-weight: 600;
}

/* Completeness ring */

.pf-completeness {
    position: relative;
    flex: none;
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
}

.pf-ring {
    position: absolute;
    inset: 0;
    width: 84px;
    height: 84px;
    transform: rotate(-90deg);
}

.pf-ring circle {
    fill: none;
    stroke-width: 6;
    stroke-linecap: round;
}

.pf-ring-track {
    stroke: var(--line);
}

.pf-ring-fill {
    stroke: var(--brand);
    /* 2πr for r=27. Set by script as a dash offset. */
    stroke-dasharray: 169.6;
    stroke-dashoffset: 169.6;
    transition: stroke-dashoffset 0.5s ease;
}

.pf-completeness-text {
    position: relative;
    text-align: center;
    line-height: 1.1;
}

.pf-completeness-text strong {
    display: block;
    font-size: 1.02rem;
}

.pf-completeness-text small {
    color: var(--muted);
    font-size: 0.66rem;
}

/* ── Alert ──────────────────────────────────────────────────────────── */

.pf-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 15px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pf-alert i {
    margin-top: 2px;
}

.pf-alert.is-success {
    color: var(--brand-2);
    background: rgba(15, 157, 88, 0.10);
    border: 1px solid rgba(15, 157, 88, 0.26);
}

.pf-alert.is-error {
    color: var(--danger);
    background: rgba(217, 48, 37, 0.09);
    border: 1px solid rgba(217, 48, 37, 0.24);
}

.pf-alert.is-info {
    color: var(--muted);
    background: var(--surface-2);
    border: 1px solid var(--line);
}

/* ── Tabs ───────────────────────────────────────────────────────────── */

.pf-tabs {
    display: flex;
    gap: 6px;
    margin: 22px 0 18px;
    padding: 5px;
    border-radius: 16px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    overflow-x: auto;
    scrollbar-width: none;
}

.pf-tabs::-webkit-scrollbar {
    display: none;
}

.pf-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    min-width: fit-content;
    padding: 10px 16px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.pf-tab:hover {
    color: var(--text);
}

.pf-tab.active {
    color: var(--text);
    background: var(--surface);
    box-shadow: 0 2px 8px rgba(24, 32, 51, 0.08);
}

/* ── Panels & cards ─────────────────────────────────────────────────── */

/* The single column is minmax(0, 1fr), not the default `auto`.
   An auto track is floored at its items' min-content width, and the subject
   breakdown table sets `white-space: nowrap` on every cell — so the track was
   sized to the table's full 577px and *every* sibling stretched to match. On a
   440px phone that pushed the tiles, the revision card and the full-length card
   a third of the way off screen. */
.pf-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

/* Same reason, one level down: these are grid/flex items whose own children can
   be wider than the screen, and min-width:auto would let them push out. */
.pf-panel>*,
.pf-cards>*,
.pf-tiles>*,
.pf-grid>* {
    min-width: 0;
}

.pf-card {
    padding: 20px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    min-width: 0;
}

.pf-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pf-card-head h2 {
    min-width: 0;
}

.pf-card-head h2 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    font-size: 1.04rem;
}

.pf-card-head h2 i {
    color: var(--brand);
    font-size: 0.94rem;
}

.pf-chip {
    padding: 4px 11px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
}

/* min(300px, 100%) rather than a bare 300px: on a 320px phone the bare version
   demands a track wider than the screen and overflows instead of wrapping. */
.pf-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 16px;
}

/* ── Stat tiles ─────────────────────────────────────────────────────── */

.pf-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
    gap: 12px;
}

.pf-tile {
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
}

.pf-tile span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pf-tile strong {
    display: block;
    margin: 6px 0 2px;
    font-size: 1.72rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pf-tile small {
    color: var(--muted);
    font-size: 0.76rem;
}

/* ── Bars & mini grids ──────────────────────────────────────────────── */

.pf-bar-row {
    margin-bottom: 16px;
}

.pf-bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
    font-size: 0.85rem;
    color: var(--muted);
}

.pf-bar-label strong {
    color: var(--text);
}

.pf-bar {
    height: 8px;
    border-radius: 999px;
    background: var(--surface-2);
    overflow: hidden;
}

.pf-bar-fill {
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    transition: width 0.5s ease;
}

.pf-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}

.pf-mini-grid div {
    padding: 12px 6px;
    border-radius: 14px;
    background: var(--surface-2);
}

.pf-mini-grid strong {
    display: block;
    font-size: 1.16rem;
    letter-spacing: -0.02em;
}

.pf-mini-grid span {
    color: var(--muted);
    font-size: 0.74rem;
}

/* ── Section accuracy ───────────────────────────────────────────────── */

.pf-sections {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.pf-section-row {
    display: grid;
    grid-template-columns: 1fr 46px;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.pf-section-row .pf-section-name {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.pf-section-row .pf-section-name span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pf-section-row strong {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* ── Table ──────────────────────────────────────────────────────────── */

/* Wide tables scroll inside their own box; the page body must never scroll
   sideways. */
/* The table itself stays wide and scrolls inside this box — the page must not.
   max-width pins it to the card even when the table's nowrap cells are wider. */
.pf-table-wrap {
    overflow-x: auto;
    max-width: 100%;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.pf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.pf-table th,
.pf-table td {
    padding: 11px 12px;
    text-align: right;
    white-space: nowrap;
    border-bottom: 1px solid var(--line);
}

.pf-table th:first-child,
.pf-table td:first-child {
    text-align: left;
}

.pf-table th {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pf-table tbody tr:last-child td {
    border-bottom: 0;
}

.pf-table td {
    font-variant-numeric: tabular-nums;
}

/* ── Forms ──────────────────────────────────────────────────────────── */

.pf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 16px;
}

.pf-field {
    display: grid;
    gap: 7px;
    align-content: start;
}

.pf-field > span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    font-weight: 600;
}

.pf-field > span small {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 500;
}

.pf-req {
    color: var(--danger);
    font-style: normal;
}

.pf-field input,
.pf-field select {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border-radius: 13px;
    background: var(--surface);
    border: 1px solid var(--line);
    outline: 0;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.pf-field select {
    /* Safari otherwise renders a squat pill that ignores min-height. */
    -webkit-appearance: none;
    appearance: none;
    padding-right: 34px;
    background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.pf-field input:focus,
.pf-field select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

html[data-theme="dark"] .pf-field input:focus,
html[data-theme="dark"] .pf-field select:focus {
    box-shadow: 0 0 0 3px rgba(138, 180, 248, 0.2);
}

.pf-field.has-error input,
.pf-field.has-error select {
    border-color: var(--danger);
}

.pf-hint {
    color: var(--muted);
    font-size: 0.76rem;
    font-style: normal;
    line-height: 1.45;
}

.pf-field.has-error .pf-hint {
    color: var(--danger);
}

.pf-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
    padding: 14px;
    border-radius: 14px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    cursor: pointer;
}

.pf-check input {
    flex: none;
    width: 20px;
    height: 20px;
    margin: 1px 0 0;
    accent-color: var(--brand);
    cursor: pointer;
}

.pf-check strong {
    display: block;
    font-size: 0.92rem;
}

.pf-check small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ── Rows ───────────────────────────────────────────────────────────── */

.pf-rows {
    display: grid;
    gap: 2px;
}

.pf-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
}

.pf-row:last-child {
    border-bottom: 0;
}

.pf-row span {
    color: var(--muted);
}

.pf-row strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: right;
}

.pf-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.8rem;
}

.pf-note,
.pf-empty {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.55;
}

.pf-empty {
    margin: 14px 0 0;
}

/* ── Buttons ────────────────────────────────────────────────────────── */

.pf-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.12s, opacity 0.15s, border-color 0.15s;
}

.pf-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.pf-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #1558bd);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.26);
}

html[data-theme="dark"] .pf-btn-primary {
    color: #0b1220;
    background: linear-gradient(135deg, #8ab4f8, #6ea3f5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.pf-btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
}

.pf-btn-ghost {
    color: var(--text);
    background: var(--surface-2);
    border-color: var(--line);
}

.pf-btn-danger {
    color: var(--danger);
    background: transparent;
    border-color: var(--danger);
}

.pf-btn-danger:hover {
    background: rgba(217, 48, 37, 0.08);
}

.is-busy .pf-btn-label {
    visibility: hidden;
}

.pf-spinner {
    position: absolute;
    width: 17px;
    height: 17px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: pf-spin 0.7s linear infinite;
}

@keyframes pf-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Save bar ───────────────────────────────────────────────────────── */

.pf-savebar {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 18px;
    width: min(620px, calc(100% - 32px));
    padding: 12px 12px 12px 20px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(24, 32, 51, 0.20);
    font-size: 0.9rem;
}

html[data-theme="dark"] .pf-savebar {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.pf-savebar-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

@media (prefers-reduced-motion: reduce) {

    .pf-ring-fill,
    .pf-bar-fill {
        transition: none;
    }

    .pf-spinner {
        animation-duration: 2.4s;
    }

    .pf-btn-primary:hover:not(:disabled) {
        transform: none;
    }
}

/* ── AI connections ─────────────────────────────────────────────────────
   One card per provider inside the Account tab. Deliberately plain: this is a
   settings row, not a feature to advertise. */

.pf-ai-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.pf-ai-row {
    padding: 15px 16px;
    border-radius: 16px;
    background: var(--surface-2);
    border: 1px solid var(--line);
}

.pf-ai-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.pf-ai-head strong {
    font-size: 0.95rem;
}

.pf-ai-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
}

.pf-ai-status.is-set {
    background: rgba(18, 160, 106, 0.12);
    border-color: transparent;
    color: #12a06a;
}

html[data-theme="dark"] .pf-ai-status.is-set {
    background: rgba(76, 195, 138, 0.15);
    color: #4cc38a;
}

.pf-ai-note {
    margin: 7px 0 0;
    font-size: 0.81rem;
    color: var(--muted);
    line-height: 1.55;
}

.pf-ai-note a {
    color: var(--brand);
    font-weight: 650;
    white-space: nowrap;
}

.pf-ai-note a i {
    font-size: 0.72em;
}

/* The stored key, masked. Enough to tell which key it is; never the whole
   thing, which would defeat storing it in a password field at all. */
.pf-ai-saved {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 0;
    font-size: 0.78rem;
    color: var(--muted);
}

.pf-ai-saved code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.76rem;
    letter-spacing: 0.02em;
    color: var(--text);
}

.pf-ai-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.pf-ai-input {
    flex: 1 1 220px;
    min-width: 0;
    padding: 10px 13px;
    border-radius: 11px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    font-size: 0.86rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.pf-ai-input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(47, 109, 246, 0.14);
}

.pf-ai-controls .pf-btn {
    flex: 0 0 auto;
    min-height: 42px;
}

.pf-ai-msg {
    margin: 10px 0 0;
    font-size: 0.81rem;
    font-weight: 600;
    line-height: 1.5;
}

.pf-ai-msg.is-success {
    color: #12a06a;
}

.pf-ai-msg.is-error {
    color: #d93025;
}

.pf-ai-msg.is-info {
    color: var(--muted);
}

html[data-theme="dark"] .pf-ai-msg.is-success {
    color: #4cc38a;
}

html[data-theme="dark"] .pf-ai-msg.is-error {
    color: #f2776b;
}

@media (max-width: 620px) {
    .pf-ai-controls .pf-btn {
        flex: 1 1 auto;
    }

    .pf-ai-input {
        flex: 1 1 100%;
    }
}

/* ── Responsive ─────────────────────────────────────────────────────── */

@media (max-width: 720px) {
    .pf-shell {
        padding: 14px 14px 0;
    }

    .pf-identity {
        flex-wrap: wrap;
        gap: 14px;
        padding: 18px;
    }

    .pf-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .pf-identity-main h1 {
        font-size: 1.24rem;
    }

    /* The ring is decoration on a small screen; the name and email are not. */
    .pf-completeness {
        order: 3;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
    }

    .pf-completeness .pf-ring {
        position: static;
        width: 46px;
        height: 46px;
        flex: none;
    }

    .pf-completeness-text {
        text-align: left;
    }

    .pf-completeness-text small {
        font-size: 0.72rem;
    }

    .pf-tab span {
        display: none;
    }

    /* Icon-only once the label is hidden, so the padding has to carry the whole
       touch target on its own. */
    .pf-tab {
        padding: 11px 14px;
        min-height: 44px;
    }

    .pf-tab i {
        font-size: 1rem;
    }

    .pf-savebar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        text-align: center;
    }

    .pf-savebar-actions {
        margin-left: 0;
    }

    .pf-savebar-actions .pf-btn {
        flex: 1;
    }
}
