/* source: public/css/simantap-fonts-v500.css */
/* Open Sans lokal — @fontsource/open-sans 5.2.7 */
@font-face {
    font-family:'Open Sans';
    font-style:normal;
    font-display:swap;
    font-weight:400;
    src:url('../fonts/open-sans/open-sans-latin-400-normal.woff2') format('woff2');
}

@font-face {
    font-family:'Open Sans';
    font-style:normal;
    font-display:swap;
    font-weight:500;
    src:url('../fonts/open-sans/open-sans-latin-500-normal.woff2') format('woff2');
}

@font-face {
    font-family:'Open Sans';
    font-style:normal;
    font-display:swap;
    font-weight:600;
    src:url('../fonts/open-sans/open-sans-latin-600-normal.woff2') format('woff2');
}

@font-face {
    font-family:'Open Sans';
    font-style:normal;
    font-display:swap;
    font-weight:700;
    src:url('../fonts/open-sans/open-sans-latin-700-normal.woff2') format('woff2');
}

@font-face {
    font-family:'Open Sans';
    font-style:normal;
    font-display:swap;
    font-weight:800;
    src:url('../fonts/open-sans/open-sans-latin-800-normal.woff2') format('woff2');
}

/* source: public/css/simantap-auth-v134.css */
:root {
    --sa-primary: #0b6b4f;
    --sa-primary-dark: #073c2e;
    --sa-primary-soft: #e8f5ef;
    --sa-accent: #d9a441;
    --sa-bg: #f4f8f5;
    --sa-surface: #ffffff;
    --sa-text: #17231e;
    --sa-text-soft: #617168;
    --sa-text-faint: #87958e;
    --sa-line: #d9e5df;
    --sa-danger: #b42318;
    --sa-warning: #9a6700;
    --sa-radius: 12px;
    --sa-shadow: 0 20px 60px rgba(7, 60, 46, .12);
}

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

html {
    min-height: 100%;
}

body.sa-body {
    margin: 0;
    min-height: 100vh;
    background: var(--sa-bg);
    color: var(--sa-text);
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
    font: inherit;
}

.sa-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(390px, .9fr) minmax(560px, 1.1fr);
}

/* Left brand panel */
.sa-brand-panel {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 34px 42px;
    background:
        radial-gradient(circle at 84% 14%, rgba(217, 164, 65, .19), transparent 27%),
        radial-gradient(circle at 8% 90%, rgba(11, 107, 79, .32), transparent 34%),
        linear-gradient(145deg, #062e23 0%, #073c2e 48%, #0b5d45 100%);
    color: #fff;
}

.sa-brand-panel::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    bottom: -170px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 48px rgba(255,255,255,.025),
        0 0 0 96px rgba(255,255,255,.018);
}

.sa-brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.sa-brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--sa-primary);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 20px;
    font-weight: 900;
}

.sa-brand > span:last-child {
    display: grid;
    gap: 3px;
}

.sa-brand strong {
    font-size: 21px;
    line-height: 1;
    letter-spacing: -.03em;
}

.sa-brand small {
    max-width: 285px;
    color: rgba(255,255,255,.62);
    font-size: 9px;
    line-height: 1.45;
}

.sa-brand-content {
    position: relative;
    z-index: 2;
    width: min(100%, 570px);
    margin: auto 0;
    padding: 48px 0;
}

.sa-eyebrow {
    margin: 0 0 14px;
    color: #efd89d;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sa-brand-content h1 {
    max-width: 560px;
    margin: 0;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: clamp(39px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -.03em;
}

.sa-brand-content > p:not(.sa-eyebrow) {
    max-width: 500px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.70);
    font-size: 14px;
    line-height: 1.8;
}

.sa-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-top: 34px;
}

.sa-feature {
    min-height: 146px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 10px;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(8px);
}

.sa-feature > span {
    display: block;
    margin-bottom: 18px;
    color: #efd89d;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 22px;
    opacity: .8;
}

.sa-feature strong {
    display: block;
    font-size: 11px;
}

.sa-feature small {
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,.56);
    font-size: 9px;
    line-height: 1.55;
}

.sa-brand-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255,255,255,.55);
    font-size: 9px;
}

.sa-brand-footer a {
    color: rgba(255,255,255,.78);
    font-weight: 700;
}

.sa-brand-footer a:hover {
    color: #fff;
}

/* Right form panel */
.sa-form-panel {
    min-width: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 42px 54px;
    background:
        linear-gradient(rgba(244,248,245,.93), rgba(244,248,245,.93)),
        repeating-linear-gradient(
            45deg,
            rgba(7,60,46,.025),
            rgba(7,60,46,.025) 1px,
            transparent 1px,
            transparent 22px
        );
}

.sa-form-shell {
    width: min(100%, 590px);
}

.sa-auth-head {
    margin-bottom: 26px;
}

.sa-auth-kicker {
    margin: 0 0 7px;
    color: var(--sa-primary);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.sa-auth-title {
    margin: 0;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: clamp(34px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -.025em;
}

.sa-auth-desc {
    margin: 10px 0 0;
    color: var(--sa-text-soft);
    font-size: 12px;
    line-height: 1.7;
}

.sa-card {
    padding: 28px;
    border: 1px solid var(--sa-line);
    border-radius: var(--sa-radius);
    background: var(--sa-surface);
    box-shadow: var(--sa-shadow);
}

.sa-form {
    display: grid;
    gap: 17px;
}

.sa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.sa-field {
    display: grid;
    gap: 7px;
}

.sa-field label {
    color: #33483e;
    font-size: 10px;
    font-weight: 800;
}

.sa-field input,
.sa-field select {
    width: 100%;
    min-width: 0;
    height: 46px;
    border: 1px solid #cddbd4;
    border-radius: 8px;
    outline: 0;
    padding: 0 13px;
    background: #fff;
    color: var(--sa-text);
    font-size: 12px;
    transition:
        border-color .15s ease,
        box-shadow .15s ease,
        background .15s ease;
}

.sa-field input::placeholder {
    color: #a1aba6;
}

.sa-field input:focus,
.sa-field select:focus {
    border-color: var(--sa-primary);
    box-shadow: 0 0 0 3px rgba(11, 107, 79, .10);
}

.sa-field select:disabled {
    background: #f3f6f4;
    color: #96a19b;
}

.sa-help {
    color: var(--sa-text-faint);
    font-size: 9px;
    line-height: 1.5;
}

.sa-error {
    color: var(--sa-danger);
    font-size: 9px;
    line-height: 1.45;
}

.sa-check-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.sa-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sa-text-soft);
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
}

.sa-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--sa-primary);
}

.sa-submit {
    width: 100%;
    min-height: 47px;
    border: 0;
    border-radius: 8px;
    background: var(--sa-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(11,107,79,.17);
    transition:
        transform .15s ease,
        background .15s ease;
}

.sa-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    background: var(--sa-primary-dark);
}

.sa-submit:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.sa-switch {
    margin: 20px 0 0;
    color: var(--sa-text-soft);
    font-size: 10px;
    text-align: center;
}

.sa-switch a {
    color: var(--sa-primary);
    font-weight: 900;
}

.sa-security {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 13px;
    border-radius: 8px;
    background: var(--sa-primary-soft);
    color: #476057;
    font-size: 9px;
    line-height: 1.55;
}

.sa-security-badge {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--sa-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.sa-alert {
    margin-bottom: 17px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 10px;
    line-height: 1.55;
}

.sa-alert-success {
    border: 1px solid #b9e2cb;
    background: #ebf7f0;
    color: #17633c;
}

.sa-alert-warning {
    border: 1px solid #ecd69c;
    background: #fff8e7;
    color: #77540b;
}

.sa-mobile-home {
    display: none;
}

@media (max-width: 1100px) {
    .sa-shell {
        grid-template-columns: minmax(320px, .8fr) minmax(500px, 1.2fr);
    }

    .sa-brand-panel {
        padding: 30px;
    }

    .sa-feature-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sa-feature {
        min-height: 0;
    }

    .sa-feature > span {
        display: none;
    }
}

@media (max-width: 840px) {
    .sa-shell {
        display: block;
    }

    .sa-brand-panel {
        min-height: auto;
        padding: 22px 24px;
    }

    .sa-brand-content,
    .sa-brand-footer {
        display: none;
    }

    .sa-brand small {
        max-width: none;
    }

    .sa-form-panel {
        min-height: calc(100vh - 90px);
        padding: 34px 20px 42px;
    }

    .sa-form-shell {
        width: min(100%, 610px);
    }

    .sa-mobile-home {
        display: block;
        margin-bottom: 18px;
        color: var(--sa-primary);
        font-size: 10px;
        font-weight: 800;
    }
}

@media (max-width: 580px) {
    .sa-brand-panel {
        padding: 18px 16px;
    }

    .sa-brand-mark {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .sa-brand strong {
        font-size: 18px;
    }

    .sa-brand small {
        display: none;
    }

    .sa-form-panel {
        place-items: start;
        padding: 25px 14px 34px;
    }

    .sa-auth-head {
        margin-bottom: 19px;
    }

    .sa-auth-title {
        font-size: 34px;
    }

    .sa-card {
        padding: 19px 16px;
        border-radius: 10px;
    }

    .sa-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }
}

/* source: public/css/simantap-mobile-v180.css */
/*
 * SIMANTAP DESIGN 8 — Mobile Optimization
 * Shared responsive refinement for Public, Auth, Member, and Admin.
 */

/* ---------------------------------------------------------
   Global mobile fundamentals
   --------------------------------------------------------- */

html {
    -webkit-text-size-adjust: 100%;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 900px) {
    button,
    .button,
    .btn,
    .sui-button,
    .si-primary-button,
    .si-secondary-button,
    .si-market-submit,
    .si-market-reset,
    .si-market-wa-btn,
    .si-product-wa-main,
    .sa-submit {
        min-height: 44px;
    }

    input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
    select,
    textarea {
        font-size: 16px;
    }

    h1,
    h2,
    h3,
    p,
    td,
    .value,
    .detail-value,
    .sui-detail-value {
        overflow-wrap: anywhere;
    }
}

/* ---------------------------------------------------------
   PUBLIC PORTAL
   --------------------------------------------------------- */

@media (max-width: 1024px) {
    .si-container {
        width: min(100% - 32px, 960px);
    }

    .si-header-inner {
        min-height: 68px;
    }

    .si-top-nav,
    .si-header-actions {
        display: none;
    }

    .si-menu-toggle {
        display: inline-grid;
        place-items: center;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }

    .si-hero-grid,
    .si-main-grid,
    .si-article-shell,
    .si-product-shell {
        grid-template-columns: 1fr;
    }

    .si-sidebar,
    .si-article-side {
        min-width: 0;
    }

    .si-news-grid,
    .si-related-grid,
    .si-region-grid,
    .si-official-grid,
    .si-market-grid,
    .si-officer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .si-market-filter-grid,
    .si-news-filter-grid,
    .si-org-selector-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .si-product-gallery,
    .si-product-info {
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .si-container {
        width: calc(100% - 24px);
    }

    .si-header {
        position: sticky;
        top: 0;
    }

    .si-header-inner {
        min-height: 62px;
        gap: 10px;
    }

    .si-brand {
        min-width: 0;
    }

    .si-brand-mark {
        flex: 0 0 auto;
    }

    .si-brand-copy {
        min-width: 0;
    }

    .si-brand-copy strong {
        display: block;
        font-size: 16px;
    }

    .si-brand-copy small {
        display: block;
        max-width: 220px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 8px;
    }

    .si-mobile-drawer {
        width: min(88vw, 340px);
    }

    .si-mobile-search {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
    }

    .si-mobile-links a,
    .si-mobile-account a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .si-hero-grid,
    .si-main-grid,
    .si-news-grid,
    .si-related-grid,
    .si-region-grid,
    .si-official-grid,
    .si-market-grid,
    .si-officer-grid,
    .si-market-filter-grid,
    .si-news-filter-grid,
    .si-org-selector-grid {
        grid-template-columns: 1fr;
    }

    .si-hero-title,
    .si-news-page-title,
    .si-market-title,
    .si-org-title {
        font-size: clamp(27px, 8vw, 38px);
        line-height: 1.08;
    }

    .si-hero-media,
    .si-news-feature-media,
    .si-news-tile-media,
    .si-related-media,
    .si-market-card-media {
        overflow: hidden;
    }

    .si-hero-media img,
    .si-news-feature-media img,
    .si-news-tile-media img,
    .si-related-media img,
    .si-market-card-media img {
        width: 100%;
        height: auto;
    }

    .si-news-feature {
        grid-template-columns: 1fr;
    }

    .si-news-feature-copy,
    .si-news-tile-copy,
    .si-market-card-copy {
        min-width: 0;
    }

    .si-article-page,
    .si-news-page,
    .si-market-page,
    .si-product-page,
    .si-org-page {
        overflow-x: clip;
    }

    .si-article-head,
    .si-article-body {
        min-width: 0;
    }

    .si-article-meta {
        flex-wrap: wrap;
        gap: 7px 12px;
    }

    .si-article-image {
        width: 100%;
        height: auto;
    }

    .si-article-body {
        font-size: 16px;
        line-height: 1.78;
    }

    .si-article-body img,
    .si-article-body iframe,
    .si-article-body video,
    .si-article-body table {
        max-width: 100%;
    }

    .si-article-body table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .si-article-side {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .si-product-thumbs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .si-product-thumb {
        flex: 0 0 78px;
    }

    .si-product-price,
    .si-market-price-float {
        font-size: clamp(21px, 6vw, 28px);
    }

    .si-product-wa-main,
    .si-market-wa-btn {
        width: 100%;
        justify-content: center;
    }

    .si-market-card-actions,
    .si-market-filter-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .si-market-card-actions > *,
    .si-market-filter-actions > * {
        width: 100%;
    }

    .si-footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .si-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .si-sponsor-frame {
        min-height: 90px;
    }
}

@media (max-width: 430px) {
    .si-brand-copy small {
        display: none;
    }

    .si-brand-mark {
        width: 38px;
        height: 38px;
    }

    .si-menu-toggle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .si-news-page-head,
    .si-market-head,
    .si-org-head,
    .si-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .si-news-pagination,
    .si-market-pagination {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
        flex-wrap: nowrap;
    }
}

/* ---------------------------------------------------------
   AUTH
   --------------------------------------------------------- */

@media (max-width: 840px) {
    .sa-brand-panel {
        display: none;
    }

    .sa-form-panel {
        width: 100%;
        min-height: 100dvh;
        padding: 28px 18px;
        align-items: flex-start;
    }

    .sa-form-shell {
        width: min(100%, 620px);
        margin: 0 auto;
    }

    .sa-card {
        padding: 24px 20px;
    }

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

    .sa-mobile-home {
        display: inline-flex;
    }
}

@media (max-width: 580px) {
    .sa-form-panel {
        padding: 18px 12px 28px;
    }

    .sa-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .sa-auth-head {
        margin-bottom: 20px;
    }

    .sa-auth-title {
        font-size: clamp(27px, 9vw, 35px);
        line-height: 1.08;
    }

    .sa-auth-desc {
        font-size: 12px;
        line-height: 1.65;
    }

    .sa-feature-grid {
        grid-template-columns: 1fr;
    }

    .sa-check-row {
        align-items: flex-start;
        gap: 10px;
    }

    .sa-submit {
        width: 100%;
    }

    .sa-switch {
        text-align: center;
    }
}

/* ---------------------------------------------------------
   MEMBER
   --------------------------------------------------------- */

@media (max-width: 900px) {
    .sm-sidebar {
        width: min(88vw, 310px);
    }

    .sm-topbar {
        padding-left: 14px;
        padding-right: 14px;
    }

    .sm-content {
        width: calc(100% - 28px);
        margin-top: 20px;
        margin-bottom: 36px;
    }

    .sm-menu-button,
    .sm-sidebar-close {
        min-width: 44px;
        min-height: 44px;
    }

    .sm-nav a {
        min-height: 44px;
        font-size: 11px;
    }

    .sm-account-link {
        max-width: 150px;
    }
}

@media (max-width: 640px) {
    .sm-content {
        width: calc(100% - 20px);
        margin-top: 12px;
    }

    .sm-topbar-left strong {
        font-size: 16px;
    }

    .sm-topbar-left p {
        font-size: 7px;
    }

    .sm-icon-link {
        width: 42px;
        height: 42px;
    }

    .sm-content .card {
        padding: 16px 13px;
    }

    .sm-content .page-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .sm-content .page-heading > * {
        max-width: 100%;
    }

    .sm-content .grid,
    .sm-content .grid-3,
    .sm-content .product-grid,
    .sm-content .image-preview-grid {
        grid-template-columns: 1fr;
    }

    .sm-content .table-wrap,
    .sm-content .sui-table-wrap {
        margin-left: -2px;
        margin-right: -2px;
    }

    .sm-content table {
        min-width: 680px;
    }

    .sm-content .actions,
    .sm-content .row-actions,
    .sm-content .form-actions,
    .sm-content .sui-actions {
        align-items: stretch;
    }

    .sm-content .actions > *,
    .sm-content .form-actions > *,
    .sm-content .sui-actions > * {
        flex: 1 1 auto;
    }
}

/* ---------------------------------------------------------
   ADMIN
   --------------------------------------------------------- */

@media (max-width: 900px) {
    .sa-sidebar {
        width: min(88vw, 320px);
    }

    .sa-topbar {
        padding-left: 14px;
        padding-right: 14px;
    }

    .sa-content {
        width: calc(100% - 28px);
        margin-top: 20px;
        margin-bottom: 36px;
    }

    .sa-menu-button,
    .sa-sidebar-close {
        min-width: 44px;
        min-height: 44px;
    }

    .sa-nav a {
        min-height: 44px;
        font-size: 11px;
    }
}

@media (max-width: 680px) {
    .sa-content {
        width: calc(100% - 20px);
        margin-top: 12px;
    }

    .sa-topbar-left strong {
        font-size: 16px;
    }

    .sa-topbar-left p {
        max-width: 220px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 7px;
    }

    .sa-content .card {
        padding: 16px 13px;
    }

    .sa-content .page-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .sa-content .grid,
    .sa-content .grid-3,
    .sa-content .grid-4 {
        grid-template-columns: 1fr;
    }

    .sa-content .table-wrap,
    .sa-content .sui-table-wrap {
        margin-left: -2px;
        margin-right: -2px;
    }

    .sa-content table {
        min-width: 720px;
    }

    .sa-content .table-actions,
    .sa-content .row-actions {
        justify-content: flex-start;
    }

    .sa-content .actions,
    .sa-content .form-actions,
    .sa-content .sui-actions {
        align-items: stretch;
    }

    .sa-content .actions > *,
    .sa-content .form-actions > *,
    .sa-content .sui-actions > * {
        flex: 1 1 auto;
    }
}

/* ---------------------------------------------------------
   Shared UI layer
   --------------------------------------------------------- */

@media (max-width: 640px) {
    .sui-modal {
        padding: 10px;
    }

    .sui-modal-panel {
        width: 100% !important;
        max-height: 92dvh;
        border-radius: 12px;
    }

    .sui-modal-footer {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .sui-modal-footer > * {
        width: 100%;
    }

    .detail-grid,
    .sui-detail-grid {
        grid-template-columns: 1fr;
    }

    .pagination,
    .sui-pagination {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }
}

/* Safe areas for modern phones */
@supports (padding: max(0px)) {
    @media (max-width: 900px) {
        .si-mobile-drawer,
        .sm-sidebar,
        .sa-sidebar {
            padding-bottom: max(0px, env(safe-area-inset-bottom));
        }

        .sm-content,
        .sa-content,
        .sa-form-panel {
            padding-bottom: max(0px, env(safe-area-inset-bottom));
        }
    }
}

/* source: public/css/simantap-final-v190.css */
/*
 * SIMANTAP DESIGN 9 — Final Visual Consistency
 * Final polish shared across Public, Auth, Member, and Admin.
 */

:root {
    --sf-green: #0b6b4f;
    --sf-green-dark: #073c2e;
    --sf-green-soft: #e7f4ee;
    --sf-gold: #d6a64a;
    --sf-text: #18231e;
    --sf-muted: #64736b;
    --sf-line: #dbe6e0;
    --sf-soft: #f7faf8;
    --sf-white: #ffffff;
    --sf-shadow-sm: 0 5px 18px rgba(7, 60, 46, .055);
    --sf-shadow: 0 15px 42px rgba(7, 60, 46, .085);
}

html {
    scroll-behavior: smooth;
}

body {
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(11, 107, 79, .18);
    color: var(--sf-green-dark);
}

a,
button,
input,
select,
textarea {
    outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(11, 107, 79, .52);
}

/* ---------------------------------------------------------
   Consistent surfaces
   --------------------------------------------------------- */

.card,
.admin-module,
.stat,
.sui-form-card,
.form-card,
.si-news-tile,
.si-related-card,
.si-market-card,
.si-article-side-box,
.si-product-panel,
.si-org-card {
    border-color: var(--sf-line);
}

.card,
.sui-form-card,
.form-card,
.si-product-panel {
    box-shadow: var(--sf-shadow-sm);
}

/* ---------------------------------------------------------
   Typography consistency
   --------------------------------------------------------- */

.page-heading h1,
.si-news-page-title,
.si-market-title,
.si-org-title,
.si-article-title,
.sa-auth-title {
    letter-spacing: -.025em;
}

.eyebrow,
.si-eyebrow,
.si-section-kicker,
.sa-eyebrow {
    letter-spacing: .09em;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */

.button,
.btn,
.sui-button,
.si-primary-button,
.si-secondary-button,
.sa-submit {
    transition:
        transform .14s ease,
        background-color .14s ease,
        border-color .14s ease,
        box-shadow .14s ease;
}

.button:hover,
.btn:hover,
.sui-button:hover,
.si-primary-button:hover,
.si-secondary-button:hover,
.sa-submit:hover {
    box-shadow: 0 7px 18px rgba(7, 60, 46, .10);
}

.button:active,
.btn:active,
.sui-button:active,
.si-primary-button:active,
.si-secondary-button:active,
.sa-submit:active {
    transform: translateY(1px);
}

/* ---------------------------------------------------------
   Tables
   --------------------------------------------------------- */

.table-wrap,
.sui-table-wrap {
    box-shadow: 0 2px 7px rgba(7, 60, 46, .025);
}

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

/* ---------------------------------------------------------
   Public
   --------------------------------------------------------- */

.si-header {
    box-shadow: 0 1px 0 rgba(7, 60, 46, .055);
}

.si-brand strong,
.si-footer-brand strong {
    letter-spacing: -.025em;
}

.si-news-tile,
.si-related-card,
.si-market-card,
.si-org-card {
    transition:
        transform .16s ease,
        box-shadow .16s ease,
        border-color .16s ease;
}

.si-news-tile:hover,
.si-related-card:hover,
.si-market-card:hover,
.si-org-card:hover {
    transform: translateY(-2px);
    border-color: #c5d9ce;
    box-shadow: var(--sf-shadow-sm);
}

.si-article-body a {
    color: var(--sf-green);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.si-article-body blockquote {
    margin-left: 0;
    margin-right: 0;
    padding-left: 18px;
    border-left: 3px solid var(--sf-green);
    color: #42554c;
}

/* ---------------------------------------------------------
   Member / Admin consistency
   --------------------------------------------------------- */

.sm-sidebar,
.sa-sidebar {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.18) transparent;
}

.sm-sidebar::-webkit-scrollbar,
.sa-sidebar::-webkit-scrollbar {
    width: 7px;
}

.sm-sidebar::-webkit-scrollbar-thumb,
.sa-sidebar::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: rgba(255,255,255,.18);
}

.sm-topbar,
.sa-topbar {
    box-shadow: 0 3px 14px rgba(7, 60, 46, .035);
}

.sm-member-card,
.sa-admin-card {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.sm-content .card:first-child,
.sa-content .card:first-child {
    scroll-margin-top: 90px;
}

/* ---------------------------------------------------------
   Auth consistency
   --------------------------------------------------------- */

.sa-card {
    box-shadow: var(--sf-shadow);
}

/* ---------------------------------------------------------
   Accessibility / reduced motion
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ---------------------------------------------------------
   Print
   --------------------------------------------------------- */

@media print {
    .si-header,
    .si-footer,
    .sm-sidebar,
    .sa-sidebar,
    .sm-topbar,
    .sa-topbar,
    .sm-backdrop,
    .sa-backdrop,
    .si-mobile-drawer,
    button,
    .button,
    .btn,
    .sui-button {
        display: none !important;
    }

    .sm-main,
    .sa-main {
        margin-left: 0 !important;
    }

    .sm-content,
    .sa-content,
    .si-container {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
    }

    .card,
    .table-wrap,
    .sui-table-wrap {
        box-shadow: none !important;
    }
}

/* source: public/css/simantap-responsive-type-v280.css */
:root {
    --rt-body:clamp(13px,calc(12.1px + .22vw),16px);
    --rt-small:clamp(11px,calc(10.5px + .14vw),13px);
    --rt-label:clamp(11px,calc(10.4px + .18vw),14px);
    --rt-nav:clamp(12px,calc(11.3px + .16vw),14px);
    --rt-button:clamp(12px,calc(11.3px + .17vw),14px);
    --rt-table:clamp(11px,calc(10.3px + .18vw),14px);
    --rt-h1:clamp(26px,calc(20px + 1.35vw),42px);
    --rt-h2:clamp(20px,calc(17px + .75vw),30px);
    --rt-h3:clamp(16px,calc(14px + .42vw),21px);
    --rt-display:clamp(34px,calc(23px + 3vw),68px);
    --rt-stat:clamp(22px,calc(17px + 1.1vw),36px);
}

html {
    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
}

body,
button,
input,
select,
textarea {
    font-family:"Open Sans",Arial,sans-serif !important;
}

body {
    font-size:var(--rt-body);
    line-height:1.6;
}

.sa-body,
.sm-body,
.si-public {
    font-size:var(--rt-body) !important;
}

:where(.sa-content,.sm-content,.si-public main,.auth-wrap,.container)
:where(p,li,dd,blockquote) {
    font-size:var(--rt-body);
    line-height:1.68;
}

:where(.sa-content,.sm-content,.si-public main,.auth-wrap,.container) h1 {
    font-size:var(--rt-h1) !important;
    line-height:1.14 !important;
}

:where(.sa-content,.sm-content,.si-public main,.auth-wrap,.container) h2 {
    font-size:var(--rt-h2) !important;
    line-height:1.22 !important;
}

:where(.sa-content,.sm-content,.si-public main,.auth-wrap,.container) h3 {
    font-size:var(--rt-h3) !important;
    line-height:1.3 !important;
}

.si-page-hero h1 {
    font-size:var(--rt-display) !important;
    line-height:1.08 !important;
}

:where(.muted,.small,small,.sa-nav-label,.sm-nav-label,.si-card-meta) {
    font-size:var(--rt-small) !important;
    line-height:1.55;
}

:where(.eyebrow,.si-page-kicker,.si-org-kicker,.sa-kpi-label,label,.label) {
    font-size:var(--rt-label) !important;
}

:where(
    .sa-nav a,
    .sm-nav a,
    .si-top-nav a,
    .si-mobile-links a,
    .nav a
) {
    font-size:var(--rt-nav) !important;
}

:where(
    button,
    .button,
    .si-primary-button,
    .si-secondary-button,
    .sa-header-link
) {
    font-size:var(--rt-button) !important;
    line-height:1.25;
}

:where(input,select,textarea) {
    font-size:clamp(13px,calc(12.2px + .2vw),15px) !important;
    line-height:1.45;
}

:where(th,td) {
    font-size:var(--rt-table) !important;
    line-height:1.5;
}

:where(.stat .value,.sa-kpi strong,.sm-content .stat .value) {
    font-size:var(--rt-stat) !important;
    line-height:1.12 !important;
}

.sa-topbar-left strong,
.sm-topbar-left strong {
    font-size:clamp(15px,calc(13px + .42vw),20px) !important;
}

.sa-brand strong,
.sm-brand strong,
.si-brand-copy strong,
.brand {
    font-size:clamp(15px,calc(13px + .4vw),20px) !important;
}

.sa-brand small,
.sm-brand small,
.si-brand-copy small,
.brand small {
    font-size:clamp(9px,calc(8.5px + .12vw),11px) !important;
}

.sa-action-row strong,
.sa-quick-grid strong,
.sa-activity-list strong,
.sa-agenda-list strong {
    font-size:clamp(11px,calc(10.2px + .18vw),13px) !important;
}

.sa-action-row small,
.sa-quick-grid small,
.sa-activity-list small,
.sa-agenda-list small {
    font-size:clamp(10px,calc(9.4px + .12vw),12px) !important;
}

.si-verify-status h1 {
    font-size:clamp(30px,calc(23px + 1.7vw),50px) !important;
}

.si-verify-profile-head h2 {
    font-size:clamp(23px,calc(19px + .9vw),38px) !important;
}

.si-member-card-public h2,
.si-agenda-card h2 {
    font-size:clamp(17px,calc(15px + .42vw),23px) !important;
}

@media(max-width:640px) {
    :root {
        --rt-body:14px;
        --rt-small:11px;
        --rt-label:11px;
        --rt-nav:13px;
        --rt-button:13px;
        --rt-table:12px;
        --rt-h1:clamp(25px,8vw,32px);
        --rt-h2:clamp(20px,6.2vw,25px);
        --rt-h3:clamp(16px,4.8vw,20px);
        --rt-display:clamp(32px,10vw,42px);
        --rt-stat:clamp(21px,7vw,28px);
    }

    :where(input,select,textarea) {
        font-size:16px !important;
    }

    :where(.sa-content,.sm-content,.si-public main,.auth-wrap,.container)
    :where(p,li,dd,blockquote) {
        line-height:1.65;
    }
}

@media(min-width:1600px) {
    :root {
        --rt-body:16px;
        --rt-small:13px;
        --rt-label:14px;
        --rt-nav:14px;
        --rt-button:14px;
        --rt-table:14px;
    }
}

@media print {
    html,
    body {
        font-size:12px;
    }
}

/* source: public/css/simantap-auth-fresh-v290.css */
:root {
    --auth-blue:#008fd5;
    --auth-blue-dark:#0074ad;
    --auth-blue-soft:#edf8fd;
    --auth-purple:#6b58a6;
    --auth-green:#68bd45;
    --auth-orange:#f5833c;
    --auth-magenta:#d63e84;
    --auth-bg:#f3f7fa;
    --auth-ink:#172630;
    --auth-muted:#657780;
    --auth-line:#dce7ec;
}

body.sa-body {
    background:var(--auth-bg) !important;
    color:var(--auth-ink) !important;
}

.sa-shell {
    grid-template-columns:minmax(380px,.82fr) minmax(560px,1.18fr) !important;
}

.sa-brand-panel {
    padding:32px clamp(30px,4vw,62px) !important;
    background:
        radial-gradient(circle at 92% 5%,rgba(214,62,132,.17),transparent 22%),
        radial-gradient(circle at 5% 92%,rgba(104,189,69,.14),transparent 27%),
        linear-gradient(150deg,#122f42 0%,#153b51 58%,#18475f 100%) !important;
}

.sa-brand-panel::after {
    right:-190px !important;
    bottom:-190px !important;
    border-color:rgba(0,143,213,.24) !important;
    box-shadow:
        0 0 0 48px rgba(0,143,213,.04),
        0 0 0 96px rgba(107,88,166,.035) !important;
}

.sa-brand-mark {
    overflow:hidden;
    border-radius:14px !important;
    background:#fff !important;
    color:var(--auth-blue) !important;
}

.sa-brand-content {
    width:min(100%,600px) !important;
}

.sa-eyebrow {
    color:#8ed9f5 !important;
    font-family:"Open Sans",Arial,sans-serif !important;
}

.sa-brand-content h1 {
    font-family:"Open Sans",Arial,sans-serif !important;
    font-size:clamp(36px,4vw,59px) !important;
    line-height:1.08 !important;
    font-weight:800;
}

.sa-brand-content>p:not(.sa-eyebrow) {
    max-width:530px !important;
    color:rgba(255,255,255,.70) !important;
    font-size:clamp(13px,1vw,16px) !important;
}

.sa-feature-grid {
    gap:10px !important;
}

.sa-feature {
    min-height:132px !important;
    border-radius:14px !important;
    background:rgba(255,255,255,.055) !important;
    backdrop-filter:none !important;
}

.sa-feature:nth-child(1) {border-top:3px solid var(--auth-blue) !important}
.sa-feature:nth-child(2) {border-top:3px solid var(--auth-purple) !important}
.sa-feature:nth-child(3) {border-top:3px solid var(--auth-green) !important}

.sa-feature>span {
    margin-bottom:14px !important;
    color:#a9e1f6 !important;
    font-family:"Open Sans",Arial,sans-serif !important;
    font-size:18px !important;
    font-weight:800;
}

.sa-feature strong {
    font-size:clamp(11px,.9vw,13px) !important;
}

.sa-feature small {
    font-size:clamp(9px,.72vw,11px) !important;
}

.sa-form-panel {
    align-items:start !important;
    padding:clamp(32px,5vw,76px) clamp(22px,6vw,88px) !important;
    background:
        radial-gradient(circle at 93% 5%,rgba(0,143,213,.075),transparent 25%),
        var(--auth-bg) !important;
}

.sa-form-shell {
    width:min(100%,720px) !important;
    margin:auto;
}

.sa-auth-head {
    margin-bottom:22px !important;
}

.sa-auth-kicker {
    color:var(--auth-blue-dark) !important;
}

.sa-auth-title {
    color:var(--auth-ink) !important;
    font-family:"Open Sans",Arial,sans-serif !important;
    font-size:clamp(31px,3.4vw,48px) !important;
    font-weight:800;
}

.sa-auth-desc {
    max-width:610px;
    color:var(--auth-muted) !important;
    font-size:clamp(12px,.95vw,15px) !important;
}

.sa-card {
    padding:clamp(22px,3vw,34px) !important;
    border:1px solid var(--auth-line) !important;
    border-radius:20px !important;
    box-shadow:none !important;
}

.sa-form {
    gap:18px !important;
}

.sa-form-section-heading {
    display:flex;
    align-items:center;
    gap:11px;
    margin-top:4px;
    padding-top:18px;
    border-top:1px solid var(--auth-line);
}

.sa-form-section-heading:first-of-type {
    margin-top:0;
    padding-top:0;
    border-top:0;
}

.sa-form-section-heading>span {
    width:32px;
    height:32px;
    display:grid;
    place-items:center;
    flex:0 0 32px;
    border-radius:9px;
    background:var(--auth-blue-soft);
    color:var(--auth-blue-dark);
    font-size:10px;
    font-weight:800;
}

.sa-form-section-heading strong,
.sa-form-section-heading small {
    display:block;
}

.sa-form-section-heading strong {
    color:var(--auth-ink);
    font-size:13px;
}

.sa-form-section-heading small {
    margin-top:2px;
    color:var(--auth-muted);
    font-size:10px;
}

.sa-field {
    gap:8px !important;
}

.sa-field label {
    color:#3f5662 !important;
    font-size:clamp(11px,.8vw,13px) !important;
}

.sa-field input,
.sa-field select {
    min-height:49px !important;
    height:auto !important;
    padding:12px 14px !important;
    border-color:#c9d9e1 !important;
    border-radius:11px !important;
    color:var(--auth-ink) !important;
}

.sa-field input:focus,
.sa-field select:focus {
    border-color:var(--auth-blue) !important;
    box-shadow:0 0 0 3px rgba(0,143,213,.12) !important;
}

.sa-help {
    color:var(--auth-muted) !important;
    font-size:10px !important;
}

.sa-error {
    color:#b72865 !important;
    font-size:10px !important;
}

.sa-submit {
    min-height:50px !important;
    border-radius:11px !important;
    background:var(--auth-blue) !important;
    box-shadow:none !important;
    font-size:13px !important;
}

.sa-submit:hover:not(:disabled) {
    background:var(--auth-blue-dark) !important;
    transform:none !important;
}

.sa-switch {
    font-size:12px !important;
}

.sa-switch a {
    color:var(--auth-blue-dark) !important;
}

.sa-forgot-link {
    color:var(--auth-blue-dark) !important;
    font-size:11px;
    font-weight:800;
}

.sa-forgot-link:hover {
    text-decoration:underline;
}

.sa-field input[readonly] {
    background:#f2f6f8 !important;
    color:var(--auth-muted) !important;
}

.sa-security {
    border:1px solid #cce8f4;
    border-radius:12px !important;
    background:var(--auth-blue-soft) !important;
    color:#49636f !important;
    font-size:10px !important;
}

.sa-security-badge {
    background:var(--auth-blue) !important;
}

.sa-mobile-home {
    color:var(--auth-blue-dark) !important;
    font-weight:800;
}

@media(max-width:1050px) {
    .sa-shell {
        grid-template-columns:minmax(320px,.72fr) minmax(500px,1.28fr) !important;
    }
    .sa-feature-grid {grid-template-columns:1fr !important}
    .sa-feature {min-height:auto !important}
}

@media(max-width:820px) {
    .sa-shell {display:block !important}
    .sa-brand-panel {display:none !important}
    .sa-form-panel {
        min-height:100vh !important;
        padding:24px 16px 42px !important;
    }
    .sa-form-shell {max-width:650px}
    .sa-mobile-home {display:inline-flex !important}
}

@media(max-width:600px) {
    .sa-auth-title {font-size:31px !important}
    .sa-card {padding:20px 16px !important;border-radius:16px !important}
    .sa-grid {grid-template-columns:1fr !important;gap:16px !important}
    .sa-form-section-heading {padding-top:15px}
    .sa-field input,
    .sa-field select {font-size:16px !important}
}
