:root {
    --navy: #07182f;
    --navy-2: #0e2a4e;
    --blue: #0071e3;
    --blue-soft: #e8f2ff;
    --ink: #111827;
    --muted: #667085;
    --line: #e5e7eb;
    --soft: #f5f7fa;
    --panel: rgba(255, 255, 255, .78);
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(15, 23, 42, .10);
    --shadow-soft: 0 14px 40px rgba(15, 23, 42, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 38%, #f6f8fb 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(90deg, rgba(7, 24, 47, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(7, 24, 47, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .45), transparent 55%);
}

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px max(20px, calc((100vw - 1160px) / 2));
    background: rgba(255, 255, 255, .74);
    border-bottom: 1px solid rgba(229, 231, 235, .75);
    backdrop-filter: saturate(180%) blur(22px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: var(--white);
    background: linear-gradient(145deg, var(--navy), var(--blue));
    box-shadow: 0 10px 24px rgba(0, 113, 227, .22);
    font-weight: 800;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 999px;
    background: rgba(255, 255, 255, .66);
}

.nav a {
    padding: 8px 13px;
    border-radius: 999px;
    color: #465466;
    font-size: 13px;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
    color: var(--navy);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 24, 47, .98), rgba(10, 48, 91, .96)),
        linear-gradient(180deg, #0b1f3a, #07182f);
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58vw;
    height: 58vw;
    border-radius: 80px;
    content: "";
    background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 55%);
    transform: translate(24%, 28%) rotate(-8deg);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 58px;
    align-items: center;
    min-height: 680px;
    padding: 92px 0 108px;
}

.hero h1,
.page-hero h1,
.status-card h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(42px, 8vw, 86px);
    font-weight: 760;
    line-height: .98;
    letter-spacing: 0;
}

.subtitle {
    margin: 22px 0 0;
    color: #cce3ff;
    font-size: clamp(21px, 3vw, 34px);
    font-weight: 680;
    letter-spacing: 0;
}

.lead {
    max-width: 760px;
    margin: 20px 0 0;
    color: inherit;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.65;
}

.hero .lead {
    color: rgba(239, 246, 255, .88);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 760;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    content: "";
    background: currentColor;
}

.hero .eyebrow {
    color: #8ec5ff;
}

.actions,
.mini-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 760;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 16px 30px rgba(0, 113, 227, .24);
}

.btn.primary:hover {
    background: #0066cc;
}

.btn.secondary {
    color: var(--navy);
    background: rgba(255, 255, 255, .92);
    border-color: rgba(255, 255, 255, .55);
    box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
}

.btn.light {
    color: var(--blue);
    background: var(--blue-soft);
}

.btn.full {
    width: 100%;
    margin-top: 20px;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
    box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
    backdrop-filter: blur(22px);
    padding: 26px;
}

.metric {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.metric:last-child {
    border-bottom: 0;
}

.metric strong {
    display: block;
    font-size: 28px;
    font-weight: 760;
    letter-spacing: 0;
}

.metric span {
    color: rgba(239, 246, 255, .72);
    font-size: 14px;
    text-align: right;
}

.panel-photo,
.section-photo,
.inline-photo,
.page-photo {
    display: block;
    width: 100%;
    object-fit: cover;
    background: #dbe4ef;
}

.panel-photo {
    height: 230px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}

.media-section,
.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 42px;
    align-items: center;
}

.section-heading p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.section-photo,
.page-photo,
.inline-photo {
    border: 1px solid rgba(229, 231, 235, .88);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.section-photo,
.page-photo {
    aspect-ratio: 4 / 3;
}

.inline-photo {
    aspect-ratio: 16 / 10;
    margin-top: 28px;
}

.section,
.page-hero {
    padding: 96px 0;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f6f8fb);
    border-bottom: 1px solid rgba(229, 231, 235, .72);
}

.page-hero::after {
    position: absolute;
    right: max(20px, calc((100vw - 1160px) / 2));
    bottom: -36px;
    width: 300px;
    height: 180px;
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 28px;
    content: "";
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .58)),
        repeating-linear-gradient(0deg, transparent 0 28px, rgba(0, 113, 227, .08) 28px 29px);
    box-shadow: var(--shadow-soft);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--navy);
}

.page-hero .lead {
    color: var(--muted);
}

.alt {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

h2 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: clamp(30px, 4.6vw, 52px);
    font-weight: 740;
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 720;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.card,
.info-box,
.price-box,
.contact-form,
.product-card,
.status-card {
    border: 1px solid rgba(229, 231, 235, .88);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.service-card {
    min-height: 172px;
    padding: 22px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 28px;
    margin-bottom: 28px;
    border-radius: 999px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    gap: 48px;
    align-items: start;
}

.list {
    display: grid;
    gap: 14px;
}

.list p {
    margin: 0;
    padding: 22px 24px;
    border: 1px solid rgba(229, 231, 235, .86);
    border-radius: 22px;
    color: var(--muted);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.list strong {
    color: var(--navy);
}

.info-box p {
    margin-top: 0;
    color: var(--muted);
}

.clean-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.info-box {
    padding: 30px;
}

dl {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 14px 18px;
    margin: 0;
}

dt {
    color: var(--muted);
    font-size: 14px;
    font-weight: 720;
}

dd {
    margin: 0;
    color: var(--ink);
    font-weight: 600;
}

dd a,
.legal a,
.site-footer a:hover {
    color: var(--blue);
}

.product-stack {
    display: grid;
    gap: 24px;
}

.pay-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pay-product-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 26px;
}

.pay-product-card p:not(.eyebrow) {
    color: var(--muted);
}

.pay-product-card .table-link {
    width: max-content;
    margin-top: auto;
}

.product-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    padding: 34px;
}

.product-card::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    content: "";
    background: linear-gradient(180deg, var(--blue), #79b8ff);
}

.product-card p {
    color: var(--muted);
}

.price-box {
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 250, 252, .9));
    box-shadow: none;
}

.price-box p {
    margin: 9px 0;
    color: var(--ink);
    font-weight: 700;
}

.mini-actions {
    gap: 10px;
}

.mini-actions .btn {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 13px;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 24px;
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow-soft);
}

table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: transparent;
}

th,
td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(229, 231, 235, .84);
    text-align: left;
    vertical-align: top;
}

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

tbody tr:hover {
    background: rgba(232, 242, 255, .46);
}

th {
    color: var(--navy);
    background: rgba(248, 250, 252, .92);
    font-size: 13px;
    font-weight: 780;
}

.price {
    color: var(--navy);
    font-weight: 850;
    white-space: nowrap;
}

.table-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 13px;
    font-weight: 780;
    text-decoration: none;
    white-space: nowrap;
}

.note {
    margin: 16px 0 0;
    color: var(--muted);
}

.legal .container {
    max-width: 880px;
    padding: 42px;
    border: 1px solid rgba(229, 231, 235, .86);
    border-radius: 28px;
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--shadow-soft);
}

.legal h2 {
    margin-top: 30px;
    font-size: 24px;
    line-height: 1.2;
}

.legal h2:first-child {
    margin-top: 0;
}

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

.contact-form {
    display: grid;
    gap: 16px;
    padding: 30px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 740;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(209, 213, 219, .92);
    border-radius: 16px;
    padding: 13px 15px;
    color: var(--ink);
    background: rgba(255, 255, 255, .9);
    font: inherit;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(0, 113, 227, .62);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, .12);
}

textarea {
    resize: vertical;
}

.status-page {
    display: grid;
    align-items: center;
    min-height: 640px;
    padding: 92px 0;
    background: linear-gradient(180deg, #ffffff, #f6f8fb);
}

.admin-page .container {
    max-width: 1280px;
}

.admin-login-card {
    max-width: 560px;
}

.admin-login-form {
    margin-top: 26px;
    box-shadow: none;
}

.admin-hero {
    padding: 64px 0;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.admin-topbar h1 {
    font-size: clamp(38px, 6vw, 64px);
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.admin-stat {
    padding: 20px;
    border: 1px solid rgba(229, 231, 235, .88);
    border-radius: 22px;
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--shadow-soft);
}

.admin-stat span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 720;
}

.admin-stat strong {
    display: block;
    margin-top: 8px;
    color: var(--navy);
    font-size: 25px;
    line-height: 1.1;
}

.admin-filter {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 22px;
    padding: 18px;
    border: 1px solid rgba(229, 231, 235, .88);
    border-radius: 24px;
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--shadow-soft);
}

.admin-table-wrap {
    border-radius: 24px;
}

.admin-table {
    min-width: 1120px;
}

.admin-table td {
    font-size: 14px;
}

.admin-table small,
.admin-table span {
    color: var(--muted);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef2f7;
    color: #475467;
    font-size: 12px;
    font-weight: 820;
}

.status-paid,
.status-settled {
    color: #027a48;
    background: #ecfdf3;
}

.status-pending {
    color: #b54708;
    background: #fffaeb;
}

.status-failed,
.status-expired {
    color: #b42318;
    background: #fef3f2;
}

.status-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.status-form select {
    min-width: 112px;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 13px;
}

.status-form button {
    border: 0;
    cursor: pointer;
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 720;
}

.alert.error {
    color: #b42318;
    background: #fef3f2;
}

.alert.success {
    color: #027a48;
    background: #ecfdf3;
}

.status-card {
    max-width: 780px;
    color: var(--ink);
    padding: 42px;
}

.status-card .lead {
    color: var(--muted);
}

.status-card dl {
    margin-top: 30px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(248, 250, 252, .92);
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: #d9e4f2;
    background: linear-gradient(180deg, #07182f, #061225);
}

.footer-visual {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: min(1160px, calc(100% - 40px));
    min-height: 150px;
    margin: 0 auto -18px;
    padding-top: 28px;
    pointer-events: none;
}

.footer-visual::before {
    position: absolute;
    right: 10%;
    bottom: 18px;
    left: 10%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
}

.footer-landmark {
    position: relative;
    width: min(42%, 420px);
    min-height: 140px;
    opacity: .54;
}

.footer-landmark::before {
    position: absolute;
    inset: 0;
    content: "";
    border-radius: 32px;
    background: rgba(255, 255, 255, .035);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 86%);
}

.monas-illustration {
    align-self: flex-end;
    background:
        radial-gradient(circle at 22% 36%, rgba(239, 68, 68, .24) 0 48px, transparent 49px),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .07) 0 8px, transparent 8px 20px);
}

.monas-flame,
.monas-spire,
.monas-body,
.monas-base {
    position: absolute;
    left: 28%;
    display: block;
    background: linear-gradient(180deg, rgba(255, 255, 255, .54), rgba(255, 255, 255, .16));
}

.monas-flame {
    top: 4px;
    width: 30px;
    height: 38px;
    margin-left: 25px;
    border-radius: 60% 60% 50% 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(239, 68, 68, .38));
    transform: rotate(-12deg);
}

.monas-spire {
    top: 42px;
    width: 10px;
    height: 62px;
    margin-left: 35px;
    border-radius: 999px 999px 0 0;
}

.monas-body {
    top: 82px;
    width: 42px;
    height: 56px;
    margin-left: 19px;
    clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
}

.monas-base {
    bottom: 0;
    width: 114px;
    height: 22px;
    margin-left: -17px;
    border-radius: 10px 10px 4px 4px;
}

.singapore-illustration {
    align-self: flex-end;
    background:
        radial-gradient(circle at 72% 18%, rgba(0, 113, 227, .25) 0 60px, transparent 61px),
        linear-gradient(180deg, rgba(0, 113, 227, .10), transparent 65%);
}

.mbs-tower,
.mbs-deck,
.sg-building {
    position: absolute;
    display: block;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .48), rgba(255, 255, 255, .14));
}

.mbs-tower {
    width: 38px;
    height: 96px;
    border-radius: 16px 16px 5px 5px;
}

.mbs-tower:nth-child(1) {
    right: 158px;
}

.mbs-tower:nth-child(2) {
    right: 112px;
    height: 112px;
}

.mbs-tower:nth-child(3) {
    right: 66px;
    height: 100px;
}

.mbs-deck {
    right: 50px;
    bottom: 110px;
    width: 164px;
    height: 18px;
    border-radius: 999px 999px 18px 18px;
    transform: rotate(-3deg);
}

.sg-building {
    width: 34px;
    height: 72px;
    border-radius: 12px 12px 4px 4px;
}

.sg-building:nth-child(5) {
    right: 232px;
}

.sg-building:nth-child(6) {
    right: 16px;
    height: 58px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 56px 0;
}

.site-footer h2,
.site-footer h3 {
    color: var(--white);
    font-size: 17px;
}

.site-footer p {
    max-width: 420px;
    color: #aebdd0;
}

.site-footer a {
    display: block;
    margin: 9px 0;
    color: #d9e4f2;
    text-decoration: none;
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #9fb0c5;
    font-size: 14px;
}

@media (max-width: 980px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav {
        justify-content: flex-start;
        width: 100%;
        border-radius: 20px;
    }

    .hero-grid,
    .split,
    .product-card,
    .footer-grid,
    .footer-visual,
    .media-section,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 34px;
        min-height: auto;
        padding: 76px 0;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pay-product-grid {
        grid-template-columns: 1fr;
    }

    .admin-topbar,
    .admin-filter {
        grid-template-columns: 1fr;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero::after {
        opacity: .36;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .site-header {
        padding: 12px 14px;
    }

    .brand {
        white-space: normal;
    }

    .nav {
        gap: 2px;
        padding: 3px;
    }

    .nav a {
        padding: 8px 10px;
        font-size: 12px;
    }

    .hero h1,
    .page-hero h1,
    .status-card h1 {
        font-size: clamp(38px, 12vw, 58px);
    }

    .section,
    .page-hero {
        padding: 62px 0;
    }

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

    .product-card,
    .info-box,
    .contact-form,
    .legal .container,
    .status-card {
        padding: 24px;
        border-radius: 22px;
    }

    .hero-panel {
        padding: 20px;
        border-radius: 24px;
    }

    .panel-photo {
        height: 180px;
    }

    .metric {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .metric span {
        text-align: left;
    }

    dl {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    dd {
        margin-bottom: 12px;
    }

    .btn {
        width: 100%;
    }

    .admin-stat-grid {
        grid-template-columns: 1fr;
    }

    .footer-visual {
        width: min(100% - 28px, 1160px);
        gap: 14px;
        padding-top: 34px;
    }

    .footer-visual {
        min-height: 118px;
        margin-bottom: -10px;
    }

    .footer-landmark {
        width: 48%;
        min-height: 112px;
        opacity: .42;
    }

    .monas-illustration {
        transform: scale(.86);
        transform-origin: left bottom;
    }

    .singapore-illustration {
        transform: scale(.82);
        transform-origin: right bottom;
    }
}
