:root {
    --ink: #173052;
    --ink-deep: #0e2442;
    --muted: #65758f;
    --muted-soft: #8a97aa;
    --primary: #2f66c8;
    --primary-dark: #2254ac;
    --primary-soft: #eaf2ff;
    --teal: #148a86;
    --teal-soft: #e6f8f5;
    --gold: #e9a13b;
    --gold-soft: #fff4df;
    --rose: #cb6474;
    --paper: #ffffff;
    --surface: #f5f8fc;
    --surface-2: #edf3fa;
    --line: #dce6f1;
    --success: #087c5b;
    --danger: #b93a4e;
    --shadow-sm: 0 8px 26px rgba(18, 46, 82, .07);
    --shadow-md: 0 22px 60px rgba(18, 46, 82, .12);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img, svg { max-width: 100%; }
.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; }
.page-container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid rgba(220,230,241,.9);
    backdrop-filter: blur(14px);
}
.site-header__inner {
    min-height: 80px;
    width: min(1220px, calc(100% - 48px));
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}
.site-brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.site-brand__mark {
    position: relative;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.site-brand__mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
.site-brand__mark--inverse img { filter: drop-shadow(0 2px 10px rgba(255,255,255,.12)); }
.site-brand__text { display: grid; line-height: 1.1; }
.site-brand__text strong { font-size: 16px; letter-spacing: -.025em; color: var(--ink-deep); }
.site-brand__text small { margin-top: 4px; font-size: 10px; font-weight: 750; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }
.site-nav { display: flex; align-items: stretch; align-self: stretch; gap: 6px; margin-left: auto; }
.site-nav a { position: relative; display: flex; align-items: center; padding: 0 14px; font-size: 14px; font-weight: 750; color: #526681; }
.site-nav a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 0; height: 3px; border-radius: 3px 3px 0 0; background: transparent; }
.site-nav a:hover, .site-nav a.is-active { color: var(--primary); }
.site-nav a.is-active::after { background: var(--primary); }
.site-header__actions { display: flex; align-items: center; gap: 10px; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 13px; align-items: center; justify-content: center; flex-direction: column; gap: 4px; cursor: pointer; }
.menu-button span:not(.sr-only) { width: 18px; height: 2px; border-radius: 2px; background: var(--ink); transition: .2s ease; }

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 13px;
    background: var(--primary);
    color: #fff;
    font-weight: 820;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(47,102,200,.2);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); background: var(--primary-dark); box-shadow: 0 14px 30px rgba(47,102,200,.24); }
.button--secondary { color: var(--ink); background: #fff; border-color: var(--line); box-shadow: none; }
.button--secondary:hover { background: var(--surface); color: var(--primary); box-shadow: none; }
.button--soft { background: var(--primary-soft); color: var(--primary-dark); box-shadow: none; }
.button--soft:hover { background: #dce9ff; box-shadow: none; }
.button--header { min-height: 42px; padding: 9px 16px; font-size: 14px; box-shadow: none; }
.button--block { width: 100%; }
.button--small { min-height: 40px; padding: 8px 14px; font-size: 13px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 12px; line-height: 1.2; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 23px; height: 2px; border-radius: 2px; background: currentColor; }
.section-heading { max-width: 720px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading h2 { margin: 10px 0 13px; color: var(--ink-deep); font-size: clamp(30px, 4vw, 46px); line-height: 1.12; letter-spacing: -.045em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; }

.hero-home { position: relative; overflow: hidden; background: linear-gradient(180deg, #f4f8ff 0%, #fff 88%); }
.hero-home::before { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; top: -230px; border-radius: 50%; background: radial-gradient(circle, rgba(47,102,200,.14), rgba(47,102,200,0) 67%); }
.hero-home__inner { position: relative; min-height: 650px; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); align-items: center; gap: 72px; padding-block: 82px 92px; }
.hero-copy h1 { margin: 15px 0 20px; max-width: 730px; color: var(--ink-deep); font-size: clamp(44px, 5.6vw, 69px); line-height: 1.04; letter-spacing: -.055em; }
.hero-copy h1 span { color: var(--primary); }
.hero-copy > p { max-width: 670px; margin: 0; color: #536983; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 17px 24px; margin-top: 30px; color: #506581; font-size: 13px; font-weight: 750; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust i { width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); font-style: normal; font-size: 12px; font-weight: 900; }

.hero-visual { position: relative; min-height: 470px; }
.teacher-profile-card { position: absolute; inset: 30px 20px 20px 40px; padding: 31px; border-radius: 32px; color: #fff; background: linear-gradient(145deg, #153d74 0%, #2e66bd 56%, #178884 120%); box-shadow: 0 34px 70px rgba(18,54,100,.25); overflow: hidden; }
.teacher-profile-card::before { content: ""; position: absolute; width: 270px; height: 270px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; right: -95px; top: -100px; }
.teacher-profile-card::after { content: ""; position: absolute; width: 140px; height: 140px; border-radius: 38px; right: 32px; bottom: -69px; transform: rotate(23deg); background: rgba(255,255,255,.07); }
.teacher-card-top { position: relative; display: flex; align-items: center; gap: 15px; }
.teacher-avatar { width: 66px; height: 66px; flex: 0 0 66px; border-radius: 21px; display: grid; place-items: center; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22); font-size: 29px; font-weight: 900; }
.teacher-card-top small { display: block; color: rgba(255,255,255,.74); font-weight: 700; }
.teacher-card-top strong { display: block; margin-top: 2px; font-size: 21px; }
.teacher-profile-card h2 { position: relative; margin: 42px 0 13px; max-width: 340px; font-size: 29px; line-height: 1.15; letter-spacing: -.04em; }
.teacher-profile-card > p { position: relative; margin: 0; max-width: 350px; color: rgba(255,255,255,.82); }
.teacher-card-foot { position: relative; display: flex; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.82); font-size: 12px; font-weight: 750; }
.float-card { position: absolute; padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.97); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.float-card--one { left: 0; top: 0; }
.float-card__icon { width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 8px; background: var(--gold-soft); color: #bb761b; font-weight: 900; }
.float-card b { display: block; color: var(--ink-deep); font-size: 14px; }
.float-card small { color: var(--muted); }

.value-strip { position: relative; z-index: 2; margin-top: -36px; }
.value-strip__inner { display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-md); }
.value-item { display: flex; gap: 14px; align-items: flex-start; padding: 24px 25px; }
.value-item + .value-item { border-left: 1px solid var(--line); }
.value-icon { width: 43px; height: 43px; flex: 0 0 43px; border-radius: 14px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); font-weight: 900; }
.value-item:nth-child(2) .value-icon { background: var(--teal-soft); color: var(--teal); }
.value-item:nth-child(3) .value-icon { background: var(--gold-soft); color: #b8741f; }
.value-item strong { display: block; color: var(--ink-deep); font-size: 14px; }
.value-item p { margin: 3px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.section { padding-block: 95px; }
.section--soft { background: var(--surface); }
.section--compact { padding-block: 68px; }
.innovation-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 38px; }
.innovation-card { position: relative; min-height: 365px; display: flex; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.innovation-card:hover { transform: translateY(-4px); border-color: #c8d9ed; box-shadow: 0 24px 45px rgba(18,46,82,.12); }
.innovation-card::after { content: ""; position: absolute; width: 110px; height: 110px; border-radius: 36px; background: var(--primary-soft); right: -58px; top: -58px; transform: rotate(20deg); }
.innovation-card--learning::after { background: var(--teal-soft); }
.card-topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-icon { position: relative; z-index: 1; width: 49px; height: 49px; border-radius: 16px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); font-size: 20px; font-weight: 900; }
.innovation-card--learning .card-icon { background: var(--teal-soft); color: var(--teal); }
.tag { display: inline-flex; align-items: center; min-height: 26px; padding: 4px 10px; border-radius: 999px; background: var(--surface-2); color: #566b86; font-size: 11px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.innovation-card h3 { margin: 24px 0 10px; color: var(--ink-deep); font-size: 24px; line-height: 1.2; letter-spacing: -.035em; }
.innovation-card p { margin: 0; color: var(--muted); font-size: 15px; }
.card-link { margin-top: auto; padding-top: 25px; display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-size: 14px; font-weight: 850; }
.card-link span { transition: transform .18s ease; }
.innovation-card:hover .card-link span { transform: translateX(3px); }
.section-action { margin-top: 31px; text-align: center; }

.principle-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.principle-visual { position: relative; min-height: 470px; border-radius: 32px; background: linear-gradient(145deg, #f2f7ff, #e8f1fb); overflow: hidden; border: 1px solid var(--line); }
.principle-visual::before { content: ""; position: absolute; width: 310px; height: 310px; border-radius: 50%; background: #dbe9fb; left: -90px; bottom: -120px; }
.notebook { position: absolute; inset: 55px 46px 53px 70px; padding: 32px; border-radius: 12px 24px 24px 12px; background: #fff; box-shadow: var(--shadow-md); transform: rotate(-2deg); }
.notebook::before { content: ""; position: absolute; left: 18px; top: 0; bottom: 0; width: 1px; background: #f0b6bd; }
.notebook-lines { height: 100%; background: repeating-linear-gradient(to bottom, transparent 0 27px, #dce8f5 28px 29px); }
.notebook-title { position: relative; z-index: 1; display: inline-block; margin-left: 15px; padding: 4px 9px; background: var(--gold-soft); color: #a76a1a; border-radius: 7px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.notebook-copy { position: relative; z-index: 1; margin: 25px 0 0 17px; max-width: 260px; color: var(--ink-deep); font-size: 25px; font-weight: 850; line-height: 1.25; letter-spacing: -.035em; }
.pencil { position: absolute; right: 44px; bottom: 30px; width: 170px; height: 18px; border-radius: 12px; background: linear-gradient(90deg, #e8a33d 0 76%, #ddd 76% 84%, #d86979 84%); transform: rotate(-39deg); box-shadow: 0 12px 20px rgba(42,64,91,.16); }
.principle-list { display: grid; gap: 7px; margin-top: 27px; }
.principle-item { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.principle-item:last-child { border-bottom: 0; }
.principle-number { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); font-weight: 900; }
.principle-item strong { display: block; color: var(--ink-deep); font-size: 16px; }
.principle-item p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 21px; margin-top: 40px; }
.process-card { position: relative; padding: 26px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.process-step { width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center; color: #fff; background: var(--primary); font-size: 13px; font-weight: 900; }
.process-card:nth-child(2) .process-step { background: var(--teal); }
.process-card:nth-child(3) .process-step { background: var(--gold); }
.process-card h3 { margin: 21px 0 8px; color: var(--ink-deep); font-size: 21px; }
.process-card p { margin: 0; color: var(--muted); font-size: 14px; }

.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 46px 50px; border-radius: 30px; color: #fff; background: linear-gradient(125deg, #143d74, #2e66bd 62%, #158b87); box-shadow: 0 30px 60px rgba(18,54,100,.2); }
.cta-panel::after { content: ""; position: absolute; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; right: -120px; top: -130px; }
.cta-panel h2 { position: relative; margin: 0 0 8px; font-size: clamp(28px, 4vw, 41px); line-height: 1.15; letter-spacing: -.04em; }
.cta-panel p { position: relative; margin: 0; max-width: 700px; color: rgba(255,255,255,.78); }
.cta-panel .button { position: relative; color: var(--primary-dark); background: #fff; box-shadow: none; }

.page-hero { background: linear-gradient(180deg, #f4f8ff 0%, #fff 100%); border-bottom: 1px solid var(--line); }
.page-hero__inner { padding-block: 72px 68px; }
.page-hero h1 { max-width: 790px; margin: 13px 0 16px; color: var(--ink-deep); font-size: clamp(40px, 5.4vw, 62px); line-height: 1.06; letter-spacing: -.052em; }
.page-hero p { max-width: 750px; margin: 0; color: var(--muted); font-size: 18px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; color: var(--muted); font-size: 13px; font-weight: 750; }
.breadcrumb a:hover { color: var(--primary); }

.about-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 74px; align-items: start; }
.about-profile { position: sticky; top: 112px; padding: 28px; border-radius: 27px; background: linear-gradient(145deg, #143d74, #2f67bd); color: #fff; box-shadow: var(--shadow-md); }
.about-profile__head { display: flex; align-items: center; gap: 15px; }
.about-profile__avatar { width: 64px; height: 64px; flex: 0 0 64px; border-radius: 20px; display: grid; place-items: center; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); font-size: 28px; font-weight: 900; }
.about-profile h2 { margin: 0; font-size: 23px; }
.about-profile small { color: rgba(255,255,255,.7); }
.about-profile p { color: rgba(255,255,255,.8); }
.profile-points { display: grid; gap: 10px; padding-top: 18px; margin-top: 19px; border-top: 1px solid rgba(255,255,255,.16); }
.profile-points span { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: rgba(255,255,255,.86); }
.profile-points i { font-style: normal; color: #83e1d5; font-weight: 900; }
.story-copy h2 { margin: 0 0 17px; color: var(--ink-deep); font-size: 35px; line-height: 1.2; letter-spacing: -.04em; }
.story-copy > p { color: var(--muted); font-size: 17px; }
.quote-block { margin: 30px 0; padding: 26px 29px; border-left: 4px solid var(--gold); border-radius: 0 20px 20px 0; background: var(--gold-soft); color: #67471c; font-size: 19px; font-weight: 760; }
.story-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; margin-top: 28px; }
.story-card { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.story-card h3 { margin: 0 0 7px; color: var(--ink-deep); font-size: 18px; }
.story-card p { margin: 0; color: var(--muted); font-size: 14px; }

.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.help-card { padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.help-card__icon { width: 45px; height: 45px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 17px; background: var(--primary-soft); color: var(--primary); font-weight: 900; }
.help-card:nth-child(2) .help-card__icon { background: var(--teal-soft); color: var(--teal); }
.help-card:nth-child(3) .help-card__icon { background: var(--gold-soft); color: #ae701d; }
.help-card h3 { margin: 0 0 8px; color: var(--ink-deep); font-size: 19px; }
.help-card p { margin: 0; color: var(--muted); font-size: 14px; }
.support-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 25px; margin-top: 35px; }
.support-info, .form-card, .dashboard-card { padding: 27px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.support-info h2, .form-card h2, .dashboard-card h2 { margin: 0 0 8px; color: var(--ink-deep); font-size: 24px; }
.support-info p, .form-card > p { margin: 0; color: var(--muted); }
.support-info-list { display: grid; gap: 16px; margin-top: 24px; }
.support-info-item { display: flex; gap: 12px; }
.support-info-item span { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 11px; display: grid; place-items: center; background: var(--surface-2); color: var(--primary); font-weight: 900; }
.support-info-item strong { display: block; font-size: 14px; color: var(--ink-deep); }
.support-info-item small { color: var(--muted); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
label { color: #38506f; font-size: 13px; font-weight: 800; }
input, textarea, select { width: 100%; border: 1px solid #cfdae8; border-radius: 13px; background: #fff; color: var(--ink); outline: none; transition: border-color .16s ease, box-shadow .16s ease, background .16s ease; }
input, select { min-height: 49px; padding: 11px 13px; }
textarea { min-height: 132px; padding: 12px 13px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: #7ea5df; box-shadow: 0 0 0 4px rgba(47,102,200,.1); }
.form-actions { display: flex; align-items: center; gap: 12px; margin-top: 19px; }
.form-hint { color: var(--muted); font-size: 12px; }

.alert-stack { display: grid; gap: 10px; padding-top: 18px; }
.alert { display: flex; align-items: flex-start; gap: 11px; padding: 14px 16px; border-radius: 14px; font-size: 14px; font-weight: 680; }
.alert > span { width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; border-radius: 50%; font-weight: 900; }
.alert--success { border: 1px solid #bfe8db; background: #eefaf6; color: #12684f; }
.alert--success > span { color: #fff; background: var(--success); }
.alert--error { border: 1px solid #f1c4cc; background: #fff1f3; color: #8f2a3d; }
.alert--error > span { color: #fff; background: var(--danger); }

.auth-shell { min-height: calc(100vh - 80px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .75fr); background: var(--surface); }
.auth-brand-panel { position: relative; overflow: hidden; display: flex; align-items: center; padding: 70px max(48px, calc((100vw - 1180px) / 2)); color: #fff; background: linear-gradient(145deg, #133765, #2e64b8 62%, #178984); }
.auth-brand-panel::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); right: -190px; top: -180px; }
.auth-copy { position: relative; max-width: 590px; }
.auth-copy .eyebrow { color: #b7d8ff; }
.auth-copy h1 { margin: 15px 0 16px; font-size: clamp(38px, 5vw, 58px); line-height: 1.07; letter-spacing: -.05em; }
.auth-copy > p { margin: 0; color: rgba(255,255,255,.8); font-size: 17px; }
.auth-benefits { display: grid; gap: 13px; margin-top: 29px; }
.auth-benefits span { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.88); font-size: 14px; }
.auth-benefits i { width: 22px; height: 22px; flex: 0 0 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.15); color: #8ee6dc; font-style: normal; font-size: 11px; font-weight: 900; }
.auth-form-panel { display: flex; align-items: center; justify-content: center; padding: 50px; background: #fff; }
.auth-card { width: min(440px, 100%); }
.auth-card h2 { margin: 10px 0 7px; color: var(--ink-deep); font-size: 33px; letter-spacing: -.04em; }
.auth-card > p { margin: 0 0 26px; color: var(--muted); }
.auth-card form { display: grid; gap: 15px; }
.auth-card .button { margin-top: 4px; }
.auth-switch { margin: 22px 0 0; color: var(--muted); text-align: center; font-size: 14px; }
.auth-switch a { color: var(--primary); font-weight: 850; }
.back-home { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 24px; color: var(--muted); font-size: 13px; font-weight: 780; }
.back-home:hover { color: var(--primary); }

.account-shell { background: var(--surface); min-height: calc(100vh - 80px); padding-block: 42px 70px; }
.account-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 28px; }
.account-sidebar { position: sticky; top: 110px; align-self: start; padding: 16px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.account-user { padding: 10px 10px 17px; margin-bottom: 9px; border-bottom: 1px solid var(--line); }
.account-user__avatar { width: 43px; height: 43px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 10px; color: #fff; background: linear-gradient(145deg, var(--primary), var(--teal)); font-weight: 900; }
.account-user strong { display: block; color: var(--ink-deep); }
.account-user small { display: block; color: var(--muted); overflow: hidden; text-overflow: ellipsis; }
.account-nav { display: grid; gap: 4px; }
.account-nav a { display: flex; align-items: center; gap: 10px; min-height: 43px; padding: 9px 11px; border-radius: 12px; color: #596c85; font-size: 14px; font-weight: 730; }
.account-nav a:hover, .account-nav a.is-active { background: var(--primary-soft); color: var(--primary-dark); }
.account-content { min-width: 0; }
.account-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.account-head h1 { margin: 8px 0 5px; color: var(--ink-deep); font-size: 35px; line-height: 1.15; letter-spacing: -.04em; }
.account-head p { margin: 0; color: var(--muted); }
.account-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; margin-bottom: 20px; }
.summary-card { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.summary-card small { display: block; color: var(--muted); font-weight: 700; }
.summary-card strong { display: block; margin-top: 4px; color: var(--ink-deep); font-size: 29px; line-height: 1.1; }
.access-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 22px; }
.access-card { min-height: 280px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.access-card h3 { margin: 19px 0 8px; color: var(--ink-deep); font-size: 22px; line-height: 1.2; }
.access-card p { margin: 0; color: var(--muted); font-size: 14px; }
.access-meta { margin-top: auto; padding-top: 19px; color: var(--teal); font-size: 12px; font-weight: 850; }
.empty-state { padding: 38px; border: 1px dashed #c8d7e8; border-radius: 22px; background: #fbfdff; text-align: center; }
.empty-state__icon { width: 54px; height: 54px; margin: 0 auto 15px; border-radius: 18px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); font-size: 24px; font-weight: 900; }
.empty-state h3 { margin: 0 0 7px; color: var(--ink-deep); }
.empty-state p { max-width: 520px; margin: 0 auto 19px; color: var(--muted); }

.table-wrap { overflow-x: auto; margin-top: 20px; }
.data-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.data-table th, .data-table td { padding: 14px 13px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { color: #63758d; background: #f8fafc; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.data-table td { color: #405672; font-size: 13px; }
.data-table td strong { color: var(--ink-deep); }
.status { display: inline-flex; align-items: center; min-height: 26px; padding: 4px 9px; border-radius: 999px; background: var(--surface-2); color: #576b84; font-size: 11px; font-weight: 850; }
.status.open { color: #a45f0d; background: #fff3dc; }
.status.in_progress { color: #285aaf; background: #eaf2ff; }
.status.resolved { color: #087354; background: #e8f8f2; }

.innovation-page { background: var(--surface); }
.innovation-list-hero { padding-block: 70px 64px; background: linear-gradient(135deg, #123b70 0%, #2f67bd 64%, #188b87 130%); color: #fff; }
.innovation-list-hero .eyebrow { color: #bcd8ff; }
.innovation-list-hero h1 { max-width: 800px; margin: 14px 0 16px; font-size: clamp(41px, 5.3vw, 63px); line-height: 1.06; letter-spacing: -.052em; }
.innovation-list-hero p { max-width: 720px; margin: 0; color: rgba(255,255,255,.8); font-size: 18px; }
.innovation-list-toolbar { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 31px; }
.innovation-list-toolbar h2 { margin: 7px 0 0; color: var(--ink-deep); font-size: 35px; letter-spacing: -.04em; }
.innovation-count { color: var(--muted); font-size: 13px; font-weight: 750; }
.innovation-detail-hero { padding-block: 55px 59px; background: linear-gradient(180deg, #f2f7ff, #fff); border-bottom: 1px solid var(--line); }
.detail-category { margin-top: 26px; }
.innovation-detail-hero h1 { max-width: 850px; margin: 13px 0 15px; color: var(--ink-deep); font-size: clamp(40px, 5.2vw, 62px); line-height: 1.05; letter-spacing: -.052em; }
.innovation-detail-hero p { max-width: 770px; margin: 0; color: var(--muted); font-size: 19px; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) 360px; gap: 50px; align-items: start; }
.detail-content { display: grid; gap: 20px; }
.detail-section { padding: 28px; border: 1px solid var(--line); border-radius: 23px; background: #fff; }
.detail-section__head { display: flex; gap: 14px; align-items: flex-start; }
.detail-section__icon { width: 43px; height: 43px; flex: 0 0 43px; border-radius: 14px; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); font-weight: 900; }
.detail-section:nth-child(2) .detail-section__icon { background: var(--teal-soft); color: var(--teal); }
.detail-section:nth-child(3) .detail-section__icon { background: var(--gold-soft); color: #b17420; }
.detail-section h2 { margin: 2px 0 8px; color: var(--ink-deep); font-size: 22px; }
.detail-section p { margin: 0; color: var(--muted); }
.access-panel { position: sticky; top: 108px; padding: 26px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: var(--shadow-md); }
.access-panel h2 { margin: 9px 0 10px; color: var(--ink-deep); font-size: 24px; line-height: 1.2; }
.access-panel > p { margin: 0; color: var(--muted); font-size: 14px; }
.price-box { margin: 22px 0; padding: 17px; border-radius: 17px; background: var(--surface); }
.price-box small { display: block; color: var(--muted); font-weight: 700; }
.price-box strong { display: block; margin-top: 3px; color: var(--ink-deep); font-size: 28px; }
.price-box span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
.access-points { display: grid; gap: 9px; margin: 18px 0; }
.access-points span { display: flex; gap: 9px; color: #50647d; font-size: 13px; }
.access-points i { color: var(--teal); font-style: normal; font-weight: 900; }

.site-footer { color: #c7d5e8; background: #0e2544; }
.site-footer__main { display: grid; grid-template-columns: minmax(0, 1.6fr) .6fr .6fr; gap: 70px; padding-block: 55px 44px; }
.site-brand--footer .site-brand__text strong { color: #fff; }
.site-brand--footer .site-brand__text small { color: #91a8c4; }
.footer-intro p { max-width: 520px; margin: 18px 0 0; color: #9eb1c9; font-size: 14px; }
.footer-column { display: grid; align-content: start; gap: 10px; font-size: 14px; }
.footer-column strong { margin-bottom: 5px; color: #fff; }
.footer-column a { color: #aabbd0; }
.footer-column a:hover { color: #fff; }
.footer-version { width: fit-content; margin-top: 8px; padding: 4px 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #7f96b2; font-size: 10px; font-weight: 800; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 18px 28px; border-top: 1px solid rgba(255,255,255,.09); color: #7f96b2; font-size: 11px; }
.mobile-bottom-nav { display: none; }

@media (max-width: 1020px) {
    .site-header__inner { gap: 14px; }
    .site-brand__text small { display: none; }
    .site-nav { gap: 0; }
    .site-nav a { padding-inline: 10px; }
    .hero-home__inner { grid-template-columns: 1fr .8fr; gap: 35px; }
    .teacher-profile-card { inset: 30px 0 20px 15px; }
    .float-card--one { left: -18px; }
    .innovation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .principle-grid { gap: 40px; }
    .about-layout { gap: 40px; }
    .detail-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 30px; }
}

@media (max-width: 820px) {
    .page-container, .site-header__inner { width: min(100% - 36px, 1180px); }
    .site-header__inner { min-height: 72px; }
    .site-nav { position: fixed; inset: 73px 0 auto 0; display: none; align-self: auto; padding: 16px 18px 20px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
    .site-header.menu-open .site-nav { display: grid; }
    .site-nav a { min-height: 48px; padding: 10px 12px; border-radius: 12px; }
    .site-nav a::after { display: none; }
    .site-nav a.is-active { background: var(--primary-soft); }
    .menu-button { display: flex; }
    .button--header { display: none; }
    .hero-home__inner { min-height: auto; grid-template-columns: 1fr; padding-block: 65px 76px; }
    .hero-copy { max-width: 720px; }
    .hero-visual { min-height: 430px; max-width: 590px; width: 100%; margin-inline: auto; }
    .value-strip { margin-top: -25px; }
    .value-strip__inner { grid-template-columns: 1fr; }
    .value-item + .value-item { border-left: 0; border-top: 1px solid var(--line); }
    .innovation-grid { grid-template-columns: 1fr 1fr; }
    .principle-grid, .about-layout, .support-layout, .detail-layout { grid-template-columns: 1fr; }
    .principle-visual { max-width: 600px; width: 100%; margin-inline: auto; }
    .process-grid, .help-grid { grid-template-columns: 1fr; }
    .cta-panel { grid-template-columns: 1fr; }
    .cta-panel .button { width: fit-content; }
    .about-profile, .access-panel { position: static; }
    .auth-shell { grid-template-columns: 1fr; }
    .auth-brand-panel { min-height: 410px; padding: 62px 34px; }
    .auth-form-panel { padding: 50px 34px 75px; }
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .account-nav { grid-template-columns: repeat(3, 1fr); }
    .account-user { display: none; }
    .site-footer__main { grid-template-columns: 1fr 1fr; }
    .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    body { padding-bottom: 67px; }
    .page-container, .site-header__inner { width: min(100% - 28px, 1180px); }
    .site-brand__mark { width: 40px; height: 40px; border-radius: 13px; }
    .site-brand__text strong { font-size: 15px; }
    .hero-home__inner { padding-block: 48px 66px; }
    .hero-copy h1 { font-size: clamp(39px, 12vw, 53px); }
    .hero-copy > p { font-size: 16px; }
    .hero-actions .button { width: 100%; }
    .hero-trust { display: grid; gap: 10px; }
    .hero-visual { min-height: 392px; }
    .teacher-profile-card { inset: 24px 4px 26px 4px; padding: 24px; }
    .teacher-profile-card h2 { margin-top: 38px; font-size: 26px; }
    .float-card { padding: 13px 14px; }
    .float-card--one { left: -7px; top: -3px; }
    .section { padding-block: 68px; }
    .section--compact { padding-block: 54px; }
    .section-heading h2 { font-size: 32px; }
    .innovation-grid, .story-cards, .access-grid, .account-summary { grid-template-columns: 1fr; }
    .innovation-card { min-height: 315px; }
    .principle-visual { min-height: 390px; }
    .notebook { inset: 43px 24px 48px 43px; padding: 26px; }
    .notebook-copy { font-size: 21px; }
    .pencil { right: 8px; bottom: 25px; }
    .cta-panel { padding: 34px 27px; }
    .page-hero__inner, .innovation-list-hero { padding-block: 48px 49px; }
    .page-hero h1, .innovation-list-hero h1, .innovation-detail-hero h1 { font-size: 40px; }
    .about-profile { padding: 23px; }
    .story-copy h2 { font-size: 29px; }
    .support-info, .form-card, .dashboard-card, .detail-section, .access-panel { padding: 21px; }
    .form-grid { grid-template-columns: 1fr; }
    .field--full { grid-column: auto; }
    .auth-brand-panel { min-height: 370px; padding: 48px 22px; }
    .auth-copy h1 { font-size: 40px; }
    .auth-form-panel { padding: 42px 22px 60px; }
    .auth-card h2 { font-size: 29px; }
    .account-shell { padding-block: 24px 45px; }
    .account-nav { grid-template-columns: 1fr; }
    .account-head { align-items: flex-start; flex-direction: column; }
    .account-head .button { width: 100%; }
    .innovation-list-toolbar { align-items: flex-start; flex-direction: column; }
    .site-footer__main { grid-template-columns: 1fr; gap: 36px; padding-block: 45px 35px; }
    .footer-intro { grid-column: auto; }
    .site-footer__bottom { display: grid; gap: 7px; padding-bottom: 25px; }
    .mobile-bottom-nav { position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; min-height: 67px; display: grid; grid-template-columns: repeat(var(--mobile-nav-count, 4), 1fr); padding: 7px 7px calc(7px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); border-top: 1px solid var(--line); backdrop-filter: blur(14px); box-shadow: 0 -9px 25px rgba(18,46,82,.08); }
    .mobile-bottom-nav a { display: grid; justify-items: center; align-content: center; gap: 2px; border-radius: 11px; color: #718096; font-size: 10px; font-weight: 800; }
    .mobile-bottom-nav a.is-active { color: var(--primary); background: var(--primary-soft); }
    .mobile-nav-icon { font-size: 20px; line-height: 1; }
}

/* v1.11.0 — Akaun, pendaftaran murid dan Arena Ilmu */
.auth-shell--account { min-height: 100vh; }
.auth-brand-panel--arena { position: relative; background: linear-gradient(145deg, #0f2c54 0%, #245fb4 58%, #148782 115%); overflow: hidden; }
.auth-brand-panel--arena::before { content:""; position:absolute; width:440px; height:440px; border-radius:50%; border:1px solid rgba(255,255,255,.11); right:-190px; top:-170px; }
.auth-brand-panel--arena::after { content:""; position:absolute; width:210px; height:210px; border-radius:55px; background:rgba(255,255,255,.06); left:-90px; bottom:-105px; transform:rotate(20deg); }
.auth-home-link { position:absolute; top:28px; left:34px; z-index:2; color:rgba(255,255,255,.82); font-size:13px; font-weight:800; }
.auth-brand-panel--arena .auth-copy { position:relative; z-index:1; }
.auth-brand-panel--arena .eyebrow { color:#b9d7ff; }
.auth-card--wide { width:min(520px,100%); }
.auth-card--student { width:min(680px,100%); }
.auth-card .alert { margin:0 0 18px; }
.auth-inline-links { display:flex; justify-content:space-between; gap:15px; margin:-3px 0 4px; font-size:12px; font-weight:800; color:var(--primary); }
.auth-choice-grid { display:grid; grid-template-columns:1fr 1fr; gap:11px; margin-top:22px; }
.auth-choice-grid a { padding:15px; border:1px solid var(--line); border-radius:15px; background:#fff; transition:.18s ease; }
.auth-choice-grid a:hover { border-color:#b9cef2; background:var(--primary-soft); transform:translateY(-1px); }
.auth-choice-grid strong,.auth-choice-grid span { display:block; }
.auth-choice-grid strong { color:var(--ink-deep); font-size:13px; }
.auth-choice-grid span { color:var(--muted); font-size:11px; line-height:1.45; margin-top:4px; }
.auth-student-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.auth-student-grid .field { margin:0; }
.field small { display:block; color:var(--muted); font-size:11px; line-height:1.45; margin-top:6px; }
.optional { color:var(--muted); font-size:11px; font-weight:700; }
.consent-box { display:flex; align-items:flex-start; gap:10px; padding:14px; border:1px solid var(--line); background:var(--surface); border-radius:14px; color:#526681; font-size:12px; line-height:1.55; }
.consent-box input { width:18px; height:18px; flex:0 0 18px; margin-top:1px; accent-color:var(--primary); }
.auth-result-icon { width:64px; height:64px; border-radius:21px; display:grid; place-items:center; margin-bottom:19px; font-size:29px; font-weight:900; }
.auth-result-icon.success { background:var(--teal-soft); color:var(--success); }
.auth-result-icon.error { background:#fff0f2; color:var(--danger); }
.empty-state.compact { padding:26px 18px; }

.student-shell { min-height:calc(100vh - 80px); padding:30px 0 70px; background:linear-gradient(180deg,#f3f7fd,#f8fbff); }
.student-layout { display:grid; grid-template-columns:250px minmax(0,1fr); gap:24px; align-items:start; }
.student-sidebar { position:sticky; top:105px; padding:17px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:var(--shadow-sm); }
.student-user-card { display:flex; align-items:center; gap:12px; padding:8px 7px 18px; border-bottom:1px solid var(--line); }
.student-avatar { width:48px; height:48px; flex:0 0 48px; border-radius:16px; display:grid; place-items:center; color:#fff; background:linear-gradient(145deg,var(--primary),var(--teal)); font-size:20px; font-weight:900; }
.student-user-card small,.student-user-card strong,.student-user-card span { display:block; }
.student-user-card small { color:var(--muted); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.student-user-card strong { max-width:145px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; color:var(--ink-deep); font-size:14px; }
.student-user-card span { color:var(--muted); font-size:11px; }
.student-nav { display:grid; gap:5px; margin-top:15px; }
.student-nav a { display:flex; align-items:center; gap:10px; min-height:43px; padding:9px 11px; border-radius:12px; color:#5a6d87; font-size:13px; font-weight:800; }
.student-nav a span { width:25px; height:25px; border-radius:8px; display:grid; place-items:center; background:var(--surface); color:var(--primary); font-size:12px; }
.student-nav a:hover,.student-nav a.is-active { color:var(--primary-dark); background:var(--primary-soft); }
.student-logout { display:block; margin-top:16px; padding:11px; border-top:1px solid var(--line); color:var(--danger); text-align:center; font-size:12px; font-weight:850; }
.student-content { min-width:0; }
.student-welcome { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:28px 30px; border-radius:23px; color:#fff; background:linear-gradient(125deg,#153d74,#2e66bd 62%,#148782); box-shadow:0 18px 42px rgba(21,61,116,.17); }
.student-welcome .eyebrow { color:#c4ddff; }
.student-welcome h1 { margin:8px 0 5px; font-size:34px; line-height:1.12; letter-spacing:-.04em; }
.student-welcome p { max-width:690px; margin:0; color:rgba(255,255,255,.78); font-size:14px; }
.account-ready-badge { flex:0 0 auto; padding:9px 13px; border:1px solid rgba(255,255,255,.2); border-radius:999px; background:rgba(255,255,255,.12); font-size:11px; font-weight:900; }
.student-metrics { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:13px; margin:17px 0; }
.student-metrics article { padding:18px; border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:0 7px 22px rgba(24,54,93,.045); }
.student-metrics span,.student-metrics strong,.student-metrics small { display:block; }
.student-metrics span { color:var(--muted); font-size:10px; text-transform:uppercase; letter-spacing:.07em; font-weight:850; }
.student-metrics strong { margin:5px 0; color:var(--ink-deep); font-size:27px; line-height:1; }
.student-metrics small { color:var(--muted); font-size:10px; }
.student-feature { display:grid; grid-template-columns:minmax(0,1.3fr) minmax(240px,.7fr); gap:18px; padding:25px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:var(--shadow-sm); }
.student-feature h2 { margin:9px 0 10px; color:var(--ink-deep); font-size:25px; line-height:1.2; }
.student-feature p { margin:0; color:var(--muted); font-size:14px; }
.student-checks { display:grid; gap:8px; margin-top:19px; color:#4f6681; font-size:12px; font-weight:750; }
.student-checks span { display:flex; gap:7px; }
.coming-card { padding:20px; border-radius:18px; background:linear-gradient(150deg,#eef4ff,#e9f9f6); border:1px solid #d4e5f3; }
.coming-card > span,.coming-card > strong,.coming-card > small { display:block; }
.coming-card > span { color:var(--primary); font-size:10px; text-transform:uppercase; letter-spacing:.09em; font-weight:900; }
.coming-card > strong { margin-top:9px; color:var(--ink-deep); font-size:23px; }
.coming-card p { margin-top:7px; font-size:12px; }
.coming-progress { height:8px; margin:20px 0 8px; border-radius:999px; background:#d9e6f2; overflow:hidden; }
.coming-progress i { display:block; width:24%; height:100%; border-radius:inherit; background:linear-gradient(90deg,var(--primary),var(--teal)); }
.coming-card small { color:var(--muted); font-size:10px; }
.student-two-column { display:grid; grid-template-columns:1fr 1fr; gap:17px; margin-top:17px; }
.profile-list { display:grid; gap:0; margin:20px 0 0; }
.profile-list div { display:grid; grid-template-columns:150px 1fr; gap:15px; padding:11px 0; border-top:1px solid var(--line); }
.profile-list dt { color:var(--muted); font-size:12px; }
.profile-list dd { margin:0; color:var(--ink-deep); font-size:12px; font-weight:800; text-align:right; overflow-wrap:anywhere; }

@media (max-width: 960px) {
    .student-layout { grid-template-columns:1fr; }
    .student-sidebar { position:static; }
    .student-user-card { border-bottom:0; }
    .student-nav { grid-template-columns:repeat(5,1fr); }
    .student-nav a { justify-content:center; padding:8px 6px; font-size:11px; }
    .student-nav a span { display:none; }
    .student-logout { display:none; }
    .student-metrics { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 700px) {
    .auth-page { padding-bottom:0; }
    .auth-choice-grid,.auth-student-grid { grid-template-columns:1fr; }
    .auth-inline-links { display:grid; gap:5px; }
    .student-welcome { align-items:flex-start; flex-direction:column; padding:24px; }
    .student-welcome h1 { font-size:29px; }
    .student-feature,.student-two-column { grid-template-columns:1fr; }
    .student-nav { grid-template-columns:repeat(5,minmax(0,1fr)); overflow:auto; }
    .student-nav a { white-space:nowrap; }
    .profile-list div { grid-template-columns:1fr; gap:3px; }
    .profile-list dd { text-align:left; }
}

@media (max-width: 520px) {
    .student-shell { padding-top:17px; }
    .student-sidebar { padding:12px; border-radius:17px; }
    .student-nav { margin-top:10px; }
    .student-nav a { font-size:10px; }
    .student-metrics { grid-template-columns:1fr 1fr; gap:9px; }
    .student-metrics article { padding:14px; }
    .student-feature { padding:20px; }
}

/* v1.11.1 — Penambahbaikan kebolehbacaan kandungan
   Heading dikekalkan. Teks penerangan, kad, borang dan dashboard dibesarkan
   supaya lebih mesra pengguna pada desktop dan telefon. */

body { font-size: 17px; line-height: 1.72; }

.section-heading p { font-size: 18px; line-height: 1.7; }
.hero-trust { font-size: 14px; }
.teacher-card-top small { font-size: 14px; }
.teacher-profile-card > p { font-size: 16px; line-height: 1.7; }
.teacher-card-foot { font-size: 14px; }
.float-card b { font-size: 15px; }
.float-card small { font-size: 13px; }
.value-item strong { font-size: 16px; }
.value-item p { font-size: 15px; line-height: 1.65; }
.tag { font-size: 12px; }
.innovation-card p { font-size: 16px; line-height: 1.7; }
.card-link { font-size: 15px; }
.principle-item strong { font-size: 17px; }
.principle-item p { font-size: 16px; line-height: 1.65; }
.process-card p { font-size: 16px; line-height: 1.65; }
.cta-panel p { font-size: 17px; line-height: 1.7; }
.breadcrumb { font-size: 14px; }
.about-profile small { font-size: 13px; }
.about-profile p { font-size: 16px; line-height: 1.7; }
.profile-points span { font-size: 15px; line-height: 1.6; }
.story-card p { font-size: 16px; line-height: 1.65; }
.help-card p { font-size: 16px; line-height: 1.65; }
.support-info p,
.form-card > p,
.dashboard-card > p { font-size: 16px; line-height: 1.7; }
.support-info-item strong { font-size: 15px; }
.support-info-item small { font-size: 14px; line-height: 1.55; }
label { font-size: 15px; }
input,
textarea,
select { font-size: 16px; }
.form-hint { font-size: 14px; line-height: 1.55; }
.alert { font-size: 15px; line-height: 1.6; }
.auth-copy > p { font-size: 18px; line-height: 1.7; }
.auth-benefits span { font-size: 15px; line-height: 1.6; }
.auth-card > p { font-size: 16px; line-height: 1.7; }
.auth-switch { font-size: 15px; }
.back-home { font-size: 14px; }
.account-user small { font-size: 13px; }
.account-nav a { font-size: 15px; }
.account-head p { font-size: 16px; line-height: 1.65; }
.summary-card small { font-size: 14px; }
.access-card p { font-size: 16px; line-height: 1.65; }
.access-meta { font-size: 14px; }
.empty-state p { font-size: 16px; line-height: 1.65; }
.data-table th { font-size: 12px; }
.data-table td { font-size: 15px; line-height: 1.55; }
.status { font-size: 12px; }
.innovation-count { font-size: 14px; }
.detail-section p { font-size: 16px; line-height: 1.7; }
.access-panel > p { font-size: 16px; line-height: 1.65; }
.price-box small,
.price-box span { font-size: 14px; }
.access-points span { font-size: 15px; line-height: 1.55; }
.footer-intro p { font-size: 15px; line-height: 1.7; }
.footer-column { font-size: 15px; }
.site-footer__bottom { font-size: 13px; }

.auth-home-link { font-size: 14px; }
.auth-inline-links { font-size: 14px; }
.auth-choice-grid strong { font-size: 15px; }
.auth-choice-grid span { font-size: 14px; line-height: 1.55; }
.field small { font-size: 13px; line-height: 1.55; }
.optional { font-size: 13px; }
.consent-box { font-size: 14px; line-height: 1.65; }

.student-user-card small { font-size: 12px; }
.student-user-card strong { font-size: 15px; }
.student-user-card span { font-size: 13px; }
.student-nav a { font-size: 14px; }
.student-logout { font-size: 14px; }
.student-welcome p { font-size: 16px; line-height: 1.65; }
.account-ready-badge { font-size: 13px; }
.student-metrics span,
.student-metrics small { font-size: 12px; }
.student-feature p { font-size: 16px; line-height: 1.7; }
.student-checks { font-size: 14px; line-height: 1.55; }
.coming-card p { font-size: 15px; line-height: 1.65; }
.coming-card small { font-size: 12px; }
.profile-list dt,
.profile-list dd { font-size: 14px; line-height: 1.55; }

@media (max-width: 620px) {
    body { font-size: 17px; }
    .hero-copy > p { font-size: 17px; line-height: 1.7; }
    .section-heading p { font-size: 17px; }
    .teacher-profile-card > p,
    .innovation-card p,
    .principle-item p,
    .process-card p,
    .story-card p,
    .help-card p,
    .detail-section p,
    .access-card p,
    .student-feature p { font-size: 16px; }
    label { font-size: 15px; }
    .student-welcome p { font-size: 16px; }
}

/* v1.11.3 — Paparan login dan pendaftaran ringkas */
.auth-page--simple {
    min-height: 100vh;
    padding: 0;
    background: #f4f7f6;
}
.auth-page--simple .auth-shell--account {
    width: min(1180px, calc(100% - 48px));
    min-height: 650px;
    margin: 46px auto;
    grid-template-columns: minmax(320px, 36%) minmax(0, 64%);
    overflow: hidden;
    border: 1px solid #e3e9e7;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(30, 64, 56, .11);
}
.auth-page--simple .auth-brand-panel--arena {
    min-height: 650px;
    padding: 44px 42px;
    align-items: stretch;
    background: linear-gradient(155deg, #176c63 0%, #2fae78 68%, #72d38a 115%);
}
.auth-page--simple .auth-brand-panel--arena::before {
    width: 360px;
    height: 360px;
    right: -190px;
    top: -160px;
    border-color: rgba(255, 255, 255, .16);
}
.auth-page--simple .auth-brand-panel--arena::after {
    width: 230px;
    height: 230px;
    left: -125px;
    bottom: -125px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}
.auth-page--simple .auth-home-link {
    top: 22px;
    left: 26px;
    font-size: 13px;
    color: rgba(255, 255, 255, .84);
}
.auth-brand-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.auth-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: fit-content;
    margin-top: 24px;
    color: #fff;
}
.auth-brand-logo__mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
}
.auth-brand-logo__mark img { display: block; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 4px 14px rgba(255,255,255,.18)); }
.auth-brand-logo strong,
.auth-brand-logo small {
    display: block;
}
.auth-brand-logo strong {
    font-size: 19px;
    line-height: 1.15;
    letter-spacing: -.025em;
}
.auth-brand-logo small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .76);
    font-size: 11px;
    font-weight: 750;
}
.auth-page--simple .auth-copy {
    max-width: 380px;
    margin-top: 62px;
}
.auth-kicker {
    display: block;
    margin-bottom: 13px;
    color: #dcffe6;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .01em;
}
.auth-page--simple .auth-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 3.7vw, 48px);
    line-height: 1.08;
    letter-spacing: -.045em;
}
.auth-page--simple .auth-copy > p {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
    line-height: 1.65;
}
.auth-learning-visual {
    position: relative;
    height: 205px;
    margin-top: auto;
}
.auth-visual-device {
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 150px;
    height: 178px;
    transform: translateX(-50%) rotate(-3deg);
    border: 8px solid rgba(255,255,255,.95);
    border-radius: 28px 28px 13px 13px;
    background: linear-gradient(160deg, #e9fff1, #fff);
    box-shadow: 0 23px 35px rgba(17, 83, 67, .23);
}
.auth-visual-device::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: 44px;
    height: 6px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #c7ded4;
}
.auth-visual-device span,
.auth-visual-device b {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 15px;
    font-style: normal;
}
.auth-visual-device span {
    top: 43px;
    left: 20px;
    width: 64px;
    height: 64px;
    color: #1b806b;
    background: #d6f6e1;
    font-size: 25px;
    font-weight: 950;
}
.auth-visual-device b {
    top: 55px;
    right: 18px;
    width: 38px;
    height: 38px;
    color: #fff;
    background: #ffb441;
    font-size: 16px;
}
.auth-visual-device i {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 25px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1d9f74 72%, #d9e7e1 72%);
}
.auth-visual-card {
    position: absolute;
    z-index: 2;
    min-width: 96px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 17px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 15px 28px rgba(13, 77, 63, .18);
    color: #285d52;
}
.auth-visual-card span,
.auth-visual-card strong {
    display: block;
}
.auth-visual-card span {
    color: #ffb441;
    font-size: 20px;
    line-height: 1;
}
.auth-visual-card strong {
    margin-top: 6px;
    font-size: 14px;
}
.auth-visual-card--flag {
    left: 5px;
    bottom: 45px;
    transform: rotate(-5deg);
}
.auth-visual-card--score {
    right: 4px;
    bottom: 70px;
    transform: rotate(5deg);
}
.auth-visual-card--score span {
    color: #1eb77e;
}
.auth-page--simple .auth-form-panel {
    min-width: 0;
    padding: 50px 62px;
    align-items: center;
    background: #fff;
}
.auth-page--simple .auth-card {
    width: min(560px, 100%);
}
.auth-page--simple .auth-card--student {
    width: min(720px, 100%);
}
.auth-card__top {
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 25px;
}
.auth-page--simple .back-home {
    color: #6f7d79;
    font-size: 14px;
    font-weight: 800;
}
.auth-card__step {
    color: #87948f;
    font-size: 13px;
    font-weight: 800;
}
.auth-heading {
    margin-bottom: 25px;
}
.auth-heading h2 {
    margin: 0 0 6px;
    color: #24312e;
    font-size: 35px;
    line-height: 1.15;
    letter-spacing: -.035em;
}
.auth-heading p {
    margin: 0;
    color: #7b8884;
    font-size: 16px;
    line-height: 1.6;
}
.auth-page--simple .auth-card form {
    gap: 17px;
}
.auth-page--simple .field label {
    margin-bottom: 7px;
    color: #4d5a56;
    font-size: 14px;
    font-weight: 800;
}
.auth-page--simple .field input,
.auth-page--simple .field select,
.auth-page--simple .field textarea {
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d5ddda;
    border-radius: 9px;
    background: #fff;
    color: #27332f;
    font-size: 15px;
    box-shadow: none;
}
.auth-page--simple .field input::placeholder {
    color: #a7b0ad;
}
.auth-page--simple .field input:focus,
.auth-page--simple .field select:focus,
.auth-page--simple .field textarea:focus {
    outline: 3px solid rgba(38, 174, 117, .13);
    border-color: #43b982;
}
.password-field {
    position: relative;
}
.password-field input {
    padding-right: 90px !important;
}
.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    min-width: 62px;
    min-height: 34px;
    padding: 5px 9px;
    border: 0;
    border-radius: 7px;
    color: #288d68;
    background: #ecf8f2;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}
.auth-form-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: -3px;
    font-size: 13px;
    font-weight: 800;
}
.auth-form-meta a,
.auth-register-row a,
.auth-help-row a,
.auth-page--simple .auth-switch a {
    color: #239b6b;
}
.auth-submit {
    min-height: 50px;
    margin-top: 2px !important;
    border-radius: 8px;
    background: #3bb37c;
    box-shadow: none;
    font-size: 16px;
}
.auth-submit:hover {
    background: #2b9d6a;
    transform: none;
}
.auth-register-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 23px;
    color: #707d79;
    font-size: 14px;
}
.auth-register-row a {
    font-weight: 900;
}
.auth-register-row i {
    color: #b9c1be;
    font-style: normal;
}
.auth-help-row {
    margin: 10px 0 0;
    color: #7b8884;
    font-size: 14px;
}
.auth-page--simple .auth-switch {
    margin-top: 21px;
    font-size: 14px;
}
.auth-page--simple .auth-student-grid {
    gap: 15px 16px;
}
.auth-page--simple .field small {
    margin-top: 6px;
    color: #8a9793;
    font-size: 12px;
    line-height: 1.45;
}
.auth-page--simple .consent-box {
    padding: 13px 14px;
    border-color: #dde6e2;
    border-radius: 10px;
    background: #f7faf9;
    color: #5e6e68;
    font-size: 13px;
}
.auth-page--simple .alert {
    margin-bottom: 18px;
    border-radius: 10px;
    font-size: 14px;
}
.auth-account-note {
    margin: -10px 0 20px;
    color: #6f7d79;
    font-size: 15px;
}

@media (max-width: 960px) {
    .auth-page--simple .auth-shell--account {
        width: min(760px, calc(100% - 36px));
        grid-template-columns: 1fr;
        margin: 28px auto;
    }
    .auth-page--simple .auth-brand-panel--arena {
        min-height: 285px;
        padding: 36px 38px;
    }
    .auth-brand-logo {
        margin-top: 18px;
    }
    .auth-page--simple .auth-copy {
        max-width: 500px;
        margin-top: 35px;
    }
    .auth-page--simple .auth-copy h1 {
        max-width: 520px;
        font-size: 36px;
    }
    .auth-page--simple .auth-copy > p {
        max-width: 500px;
    }
    .auth-learning-visual {
        position: absolute;
        right: 20px;
        bottom: -30px;
        width: 280px;
        height: 180px;
        opacity: .55;
    }
    .auth-page--simple .auth-form-panel {
        padding: 46px 50px 54px;
    }
}

@media (max-width: 700px) {
    .auth-page--simple {
        padding-bottom: 0;
    }
    .auth-page--simple .auth-shell--account {
        width: 100%;
        min-height: 100vh;
        margin: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .auth-page--simple .auth-brand-panel--arena {
        min-height: 215px;
        padding: 28px 24px;
    }
    .auth-page--simple .auth-home-link {
        top: 18px;
        left: 20px;
    }
    .auth-brand-logo {
        margin-top: 28px;
    }
    .auth-brand-logo__mark {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }
    .auth-brand-logo strong {
        font-size: 17px;
    }
    .auth-brand-logo small {
        display: none;
    }
    .auth-page--simple .auth-copy {
        margin-top: 28px;
    }
    .auth-kicker,
    .auth-page--simple .auth-copy > p,
    .auth-learning-visual {
        display: none;
    }
    .auth-page--simple .auth-copy h1 {
        max-width: 430px;
        margin: 0;
        font-size: 30px;
        line-height: 1.12;
    }
    .auth-page--simple .auth-form-panel {
        padding: 34px 22px 45px;
        align-items: flex-start;
    }
    .auth-card__top {
        margin-bottom: 22px;
    }
    .auth-card__step {
        display: none;
    }
    .auth-heading h2 {
        font-size: 30px;
    }
    .auth-page--simple .auth-student-grid {
        grid-template-columns: 1fr;
    }
    .auth-page--simple .field--full {
        grid-column: auto;
    }
    .auth-form-meta {
        align-items: flex-end;
        flex-direction: column-reverse;
        gap: 5px;
    }
}

@media (max-width: 420px) {
    .auth-page--simple .auth-brand-panel--arena {
        min-height: 195px;
    }
    .auth-page--simple .auth-copy h1 {
        font-size: 27px;
    }
    .auth-page--simple .auth-form-panel {
        padding-inline: 18px;
    }
    .auth-register-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
    .auth-register-row i {
        display: none;
    }
}

/* v1.11.4 — Pendaftaran tiga medan dan tab jenis akaun */
.registration-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: -4px 0 22px;
    padding: 5px;
    border: 1px solid #dde6e2;
    border-radius: 13px;
    background: #f4f8f6;
}
.registration-tabs a {
    min-height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #65736e;
    background: transparent;
    text-align: center;
}
.registration-tabs a span,
.registration-tabs a small {
    display: block;
}
.registration-tabs a span {
    font-size: 15px;
    font-weight: 900;
}
.registration-tabs a small {
    margin-top: 2px;
    color: #8a9692;
    font-size: 12px;
    font-weight: 700;
}
.registration-tabs a.is-active {
    border-color: #c8e9da;
    color: #176c56;
    background: #fff;
    box-shadow: 0 6px 18px rgba(36, 119, 87, .09);
}
.registration-tabs a.is-active small {
    color: #4f816e;
}
.registration-note {
    margin: 13px 0 0;
    color: #7b8884;
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
}

@media (max-width: 420px) {
    .registration-tabs {
        gap: 6px;
    }
    .registration-tabs a {
        min-height: 60px;
        padding-inline: 8px;
    }
    .registration-tabs a small {
        font-size: 11px;
    }
}

/* v1.11.5 — Paparan akaun muat satu skrin desktop dan tablet */
@media (min-width: 701px) {
    html:has(body.auth-page--simple),
    body.auth-page--simple {
        height: 100%;
        overflow: hidden;
    }

    body.auth-page--simple {
        min-height: 100dvh;
        display: grid;
        place-items: center;
        padding: 16px;
    }

    .auth-page--simple .auth-shell--account {
        width: min(1180px, 100%);
        height: min(760px, calc(100dvh - 32px));
        min-height: 0;
        margin: 0;
        grid-template-columns: minmax(250px, 35%) minmax(0, 65%);
    }

    .auth-page--simple .auth-brand-panel--arena {
        min-height: 0;
        height: 100%;
        padding: 30px 32px;
    }

    .auth-page--simple .auth-home-link {
        top: 18px;
        left: 22px;
    }

    .auth-brand-logo {
        margin-top: 20px;
    }

    .auth-page--simple .auth-copy {
        margin-top: clamp(26px, 6vh, 48px);
    }

    .auth-page--simple .auth-copy h1 {
        margin-bottom: 12px;
        font-size: clamp(30px, 3.1vw, 43px);
    }

    .auth-page--simple .auth-copy > p {
        font-size: 15px;
        line-height: 1.55;
    }

    .auth-learning-visual {
        height: 165px;
    }

    .auth-visual-device {
        bottom: -30px;
        width: 126px;
        height: 150px;
        border-width: 7px;
    }

    .auth-visual-device span {
        top: 39px;
        left: 15px;
        width: 52px;
        height: 52px;
        font-size: 21px;
    }

    .auth-visual-device b {
        top: 48px;
        right: 13px;
        width: 34px;
        height: 34px;
    }

    .auth-visual-device i {
        left: 15px;
        right: 15px;
        bottom: 21px;
        height: 15px;
    }

    .auth-visual-card {
        min-width: 82px;
        padding: 10px 12px;
    }

    .auth-visual-card--flag {
        bottom: 27px;
    }

    .auth-visual-card--score {
        bottom: 48px;
    }

    .auth-page--simple .auth-form-panel {
        height: 100%;
        min-height: 0;
        padding: 28px clamp(30px, 5vw, 58px);
        overflow-y: auto;
        scrollbar-width: thin;
    }

    .auth-page--simple .auth-card {
        width: min(560px, 100%);
    }

    .auth-card__top {
        min-height: 20px;
        margin-bottom: 15px;
    }

    .auth-heading {
        margin-bottom: 16px;
    }

    .auth-heading h2 {
        font-size: 32px;
    }

    .auth-heading p {
        font-size: 14px;
        line-height: 1.5;
    }

    .auth-page--simple .auth-card form {
        gap: 12px;
    }

    .auth-page--simple .field {
        gap: 5px;
    }

    .auth-page--simple .field label {
        margin-bottom: 0;
        font-size: 13px;
    }

    .auth-page--simple .field input,
    .auth-page--simple .field select,
    .auth-page--simple .field textarea {
        min-height: 45px;
        padding-block: 10px;
    }

    .auth-form-meta {
        margin-top: 0;
    }

    .auth-submit {
        min-height: 47px;
    }

    .auth-register-row {
        margin-top: 16px;
    }

    .auth-help-row {
        margin-top: 7px;
    }

    .auth-page--simple .auth-switch {
        margin-top: 13px;
        margin-bottom: 0;
    }

    .registration-tabs {
        margin: -2px 0 14px;
        padding: 4px;
    }

    .registration-tabs a {
        min-height: 56px;
        padding: 7px 12px;
    }

    .registration-note {
        margin-top: 8px;
        line-height: 1.4;
    }

    .auth-page--simple .alert {
        margin-bottom: 12px;
        padding-block: 11px;
    }
}

@media (min-width: 701px) and (max-width: 960px) {
    body.auth-page--simple {
        padding: 12px;
    }

    .auth-page--simple .auth-shell--account {
        width: 100%;
        height: calc(100dvh - 24px);
        grid-template-columns: minmax(215px, 31%) minmax(0, 69%);
        margin: 0;
    }

    .auth-page--simple .auth-brand-panel--arena {
        min-height: 0;
        padding: 26px 24px;
    }

    .auth-brand-logo {
        margin-top: 24px;
        gap: 8px;
    }

    .auth-brand-logo__mark {
        width: 40px;
        height: 40px;
        border-radius: 13px;
        font-size: 18px;
    }

    .auth-brand-logo strong {
        font-size: 16px;
    }

    .auth-brand-logo small {
        font-size: 9px;
    }

    .auth-page--simple .auth-copy {
        margin-top: 32px;
    }

    .auth-kicker {
        margin-bottom: 9px;
        font-size: 12px;
    }

    .auth-page--simple .auth-copy h1 {
        font-size: clamp(25px, 3.5vw, 31px);
        line-height: 1.12;
    }

    .auth-page--simple .auth-copy > p {
        font-size: 13px;
        line-height: 1.5;
    }

    .auth-learning-visual {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        height: 145px;
        opacity: .82;
    }

    .auth-visual-card {
        display: none;
    }

    .auth-page--simple .auth-form-panel {
        padding: 22px clamp(24px, 4vw, 40px);
    }

    .auth-heading h2 {
        font-size: 29px;
    }
}

@media (min-width: 701px) and (max-height: 700px) {
    body.auth-page--simple {
        padding: 10px;
    }

    .auth-page--simple .auth-shell--account {
        height: calc(100dvh - 20px);
    }

    .auth-page--simple .auth-brand-panel--arena {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .auth-page--simple .auth-copy {
        margin-top: 24px;
    }

    .auth-page--simple .auth-copy > p,
    .auth-learning-visual {
        display: none;
    }

    .auth-page--simple .auth-form-panel {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .auth-card__top {
        margin-bottom: 10px;
    }

    .auth-heading {
        margin-bottom: 12px;
    }

    .registration-tabs {
        margin-bottom: 10px;
    }

    .registration-tabs a {
        min-height: 50px;
    }

    .auth-page--simple .auth-card form {
        gap: 9px;
    }

    .auth-register-row,
    .auth-page--simple .auth-switch {
        margin-top: 10px;
    }
}

/* v1.11.8 — Tipografi Poppins dan navigasi awam berasaskan prinsip UI pembelajaran */
:root {
    --font-ui: "Poppins", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --content-max: 1200px;
    --header-max: 1240px;
}

body,
button,
input,
textarea,
select {
    font-family: var(--font-ui);
}

body {
    color: #434955;
    font-size: 16px;
    line-height: 1.68;
}

.page-container {
    width: min(var(--content-max), calc(100% - 48px));
}

h1, h2, h3, h4, h5, h6,
.site-brand__text strong,
.button,
.site-nav a {
    font-family: var(--font-ui);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--ink-deep);
    text-wrap: balance;
}

.site-header {
    background: rgba(247, 252, 250, .94);
    border-bottom-color: rgba(214, 230, 225, .92);
    backdrop-filter: blur(18px);
    box-shadow: 0 7px 24px rgba(18, 46, 82, .035);
}

.site-header__inner {
    width: min(var(--header-max), calc(100% - 48px));
    min-height: 82px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 28px;
}

.site-brand {
    gap: 11px;
}

.site-brand__mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
}

.site-brand__mark span {
    font-size: 21px;
    font-weight: 800;
}

.site-brand__text strong {
    color: #26384f;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.site-brand__text small {
    margin-top: 4px;
    color: #718096;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .045em;
}

.site-nav {
    min-width: 0;
    margin: 0;
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-nav__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.site-nav a {
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 13px;
    color: #596779;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    transition: color .16s ease, background .16s ease, transform .16s ease;
}

.site-nav a::after {
    display: none;
}

.site-nav a:hover {
    color: var(--primary-dark);
    background: rgba(234, 242, 255, .72);
}

.site-nav a.is-active {
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.site-nav__mobile-actions {
    display: none;
}

.site-header__actions {
    gap: 9px;
}

.header-login-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 12px;
    color: #526174;
    font-size: 14px;
    font-weight: 600;
}

.header-login-link:hover {
    color: var(--primary-dark);
    background: #fff;
}

.button,
.button--header {
    font-weight: 700;
}

.button--header.button--signup {
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 14px;
}

.menu-button {
    width: 46px;
    height: 46px;
    border-radius: 14px;
}

.hero-copy h1 {
    max-width: 720px;
    font-size: clamp(42px, 5vw, 60px);
    line-height: 1.1;
    letter-spacing: -.04em;
    font-weight: 700;
}

.hero-copy > p {
    max-width: 680px;
    color: #5d6878;
    font-size: 18px;
    line-height: 1.72;
}

.section-heading h2 {
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.16;
    letter-spacing: -.035em;
    font-weight: 700;
}

.section-heading p {
    color: #697586;
    font-size: 17px;
    line-height: 1.72;
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
}

.innovation-card h3,
.process-card h3,
.help-card h3,
.story-card h3,
.access-card h3 {
    font-weight: 700;
    letter-spacing: -.018em;
}

.innovation-card p,
.process-card p,
.help-card p,
.story-card p,
.access-card p,
.principle-item p,
.value-item p {
    color: #697586;
    line-height: 1.7;
}

.site-footer,
.site-footer button,
.site-footer input,
.site-footer textarea,
.site-footer select {
    font-family: var(--font-ui);
}

.mobile-bottom-nav {
    display: none !important;
}

@media (max-width: 1100px) {
    .site-header__inner {
        gap: 16px;
    }

    .site-brand__text small {
        display: none;
    }

    .site-nav__links {
        gap: 1px;
    }

    .site-nav a {
        padding-inline: 11px;
        font-size: 14px;
    }

    .button--header.button--signup {
        padding-inline: 14px;
    }
}

@media (max-width: 960px) {
    .page-container,
    .site-header__inner {
        width: min(100% - 36px, var(--content-max));
    }

    .site-header__inner {
        min-height: 74px;
        grid-template-columns: auto 1fr auto;
    }

    .site-nav {
        position: fixed;
        inset: 75px 18px auto 18px;
        display: none;
        max-height: calc(100dvh - 94px);
        overflow-y: auto;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(255,255,255,.99);
        box-shadow: 0 24px 60px rgba(18,46,82,.17);
    }

    .site-header.menu-open .site-nav {
        display: grid;
        gap: 12px;
    }

    .site-nav__links {
        display: grid;
        gap: 4px;
    }

    .site-nav a {
        min-height: 50px;
        justify-content: flex-start;
        padding: 12px 14px;
        font-size: 15px;
    }

    .site-nav__mobile-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        padding-top: 12px;
        border-top: 1px solid var(--line);
    }

    .site-nav__mobile-actions .site-nav__login {
        justify-content: center;
        border: 1px solid var(--line);
        background: #fff;
    }

    .site-nav__mobile-actions .button--header {
        display: inline-flex;
        width: 100%;
    }

    .menu-button {
        display: flex;
    }

    .header-login-link {
        display: none;
    }

    .site-header__actions .button--header {
        display: inline-flex;
    }

    .site-header.menu-open .menu-button span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.menu-open .menu-button span:nth-child(2) {
        opacity: 0;
    }

    .site-header.menu-open .menu-button span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-copy h1 {
        font-size: clamp(38px, 6.5vw, 50px);
    }
}

@media (max-width: 620px) {
    body {
        font-size: 16px;
        padding-bottom: 0;
    }

    .page-container,
    .site-header__inner {
        width: min(100% - 28px, var(--content-max));
    }

    .site-header__inner {
        min-height: 68px;
        gap: 10px;
    }

    .site-brand__mark {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .site-brand__text strong {
        font-size: 14px;
    }

    .site-header__actions > .button--signup {
        display: none;
    }

    .site-nav {
        inset: 69px 12px auto 12px;
        max-height: calc(100dvh - 82px);
        border-radius: 18px;
    }

    .site-nav__mobile-actions {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: clamp(32px, 10vw, 40px);
        line-height: 1.12;
    }

    .hero-copy > p,
    .section-heading p {
        font-size: 16px;
        line-height: 1.7;
    }

    .section-heading h2 {
        font-size: clamp(27px, 8vw, 34px);
    }

    .button {
        font-size: 15px;
    }
}

/* v1.11.10 — lebar responsif stabil untuk mengelakkan pergeseran antara halaman/menu */
:root {
    --public-shell-max: 1240px;
    --public-shell-space: 48px;
    --public-brand-slot: 230px;
    --public-menu-slot: 500px;
    --public-action-slot: 230px;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

body {
    min-width: 320px;
    overflow-x: clip;
}

.page-container,
.site-header__inner {
    width: min(var(--public-shell-max), calc(100% - var(--public-shell-space)));
    max-width: none;
    margin-inline: auto;
}

@media (min-width: 961px) {
    .site-header__inner {
        grid-template-columns: var(--public-brand-slot) var(--public-menu-slot) var(--public-action-slot);
        justify-content: space-between;
    }

    .site-brand {
        width: var(--public-brand-slot);
        min-width: 0;
    }

    .site-nav {
        width: var(--public-menu-slot);
        min-width: var(--public-menu-slot);
    }

    .site-nav__links {
        width: 100%;
        justify-content: center;
    }

    .site-nav__links > a {
        flex: 0 0 100px;
        justify-content: center;
        padding-inline: 8px;
        white-space: nowrap;
    }

    .site-header__actions {
        width: var(--public-action-slot);
        min-width: 0;
        justify-content: flex-end;
    }
}

@media (min-width: 961px) and (max-width: 1179px) {
    :root {
        --public-shell-max: 1080px;
        --public-shell-space: 36px;
        --public-brand-slot: 190px;
        --public-menu-slot: 440px;
        --public-action-slot: 190px;
    }

    .site-nav__links > a {
        flex-basis: 88px;
        font-size: 13.5px;
        padding-inline: 5px;
    }

    .site-brand__text strong {
        font-size: 14.5px;
    }

    .header-login-link,
    .button--header.button--signup {
        font-size: 13px;
        padding-inline: 11px;
    }
}

@media (max-width: 960px) {
    :root {
        --public-shell-max: 920px;
        --public-shell-space: 36px;
    }

    .site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .site-brand,
    .site-nav,
    .site-header__actions,
    .site-nav__links {
        width: auto;
        min-width: 0;
    }

    .site-nav__links > a {
        flex: none;
        width: 100%;
        white-space: normal;
    }
}

@media (max-width: 620px) {
    :root {
        --public-shell-space: 28px;
    }
}

/* v1.12.0 — asas stabil akaun, profil murid dan privasi */
.alert--warning {
    border: 1px solid #f0d69b;
    background: #fff9e9;
    color: #775616;
}
.alert--warning > span { color: #fff; background: #c48a16; }
.alert--info {
    border: 1px solid #bfd9ef;
    background: #eff8ff;
    color: #245a83;
}
.alert--info > span { color: #fff; background: #327db5; }
.auth-flash-stack { margin-bottom: 14px; }
.dashboard-alerts { margin-bottom: 16px; }
form[aria-busy="true"] { opacity: .88; }
button[disabled] { cursor: not-allowed; opacity: .72; }

.account-ready-badge.is-pending {
    color: #6c4a08;
    background: #fff1c7;
    border-color: rgba(255, 225, 142, .9);
}
.profile-prompt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 17px;
    padding: 21px 23px;
    border: 1px solid #dce7f4;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff, #f4f9ff);
    box-shadow: var(--shadow-sm);
}
.profile-prompt h2 { margin: 6px 0 5px; font-size: 22px; }
.profile-prompt p { max-width: 760px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.privacy-summary { display: grid; gap: 11px; margin: 17px 0; }
.privacy-summary span {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--surface);
    color: #52657e;
    font-size: 14px;
    line-height: 1.55;
}
.text-link { color: var(--primary); font-size: 14px; font-weight: 750; }
.student-profile-panel { margin-top: 17px; scroll-margin-top: 100px; }
.profile-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}
.profile-panel-head h2 { margin: 6px 0 5px; }
.profile-panel-head p { margin: 0; color: var(--muted); }
.student-profile-form { display: grid; gap: 20px; }
.avatar-choice {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}
.avatar-choice label {
    position: relative;
    display: grid;
    place-items: center;
    gap: 5px;
    min-height: 86px;
    padding: 11px 7px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.avatar-choice label:hover { transform: translateY(-1px); border-color: #a9c1e2; }
.avatar-choice label.is-selected { border-color: var(--primary); background: var(--primary-soft); box-shadow: 0 0 0 3px rgba(49,95,190,.08); }
.avatar-choice input { position: absolute; opacity: 0; pointer-events: none; }
.avatar-choice span { font-size: 27px; line-height: 1; }
.avatar-choice small { color: #5b6c83; font-size: 12px; font-weight: 700; }
.field-help { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.private-field { margin: 0; }
.private-value {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 14px;
    border: 1px dashed #cbd7e5;
    border-radius: 13px;
    background: #f8fafc;
}
.private-value span { color: var(--ink-deep); font-weight: 650; overflow-wrap: anywhere; }
.private-value small { color: var(--muted); text-align: right; }
.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 15px;
    border: 1px solid #cfe0f2;
    border-radius: 14px;
    background: #f4f9ff;
    color: #4e6078;
    font-size: 13px;
    line-height: 1.6;
}
.privacy-check input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--primary); }
.account-danger-zone {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, .65fr);
    gap: 25px;
    align-items: end;
    margin-top: 17px;
    border-color: #f0ccd2;
    background: linear-gradient(135deg, #fff, #fff8f8);
}
.account-danger-zone h2 { margin: 6px 0 6px; }
.account-danger-zone p { margin: 0; color: var(--muted); }
.danger-action-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; align-items: end; }
.danger-action-row .field { margin: 0; }
.button--danger { color: #fff; background: #b3384f; box-shadow: 0 9px 20px rgba(179,56,79,.16); }
.button--danger:hover { background: #972d42; }

.privacy-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.privacy-card {
    position: relative;
    min-height: 230px;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.privacy-card__number {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-size: 13px;
    font-weight: 800;
}
.privacy-card h2 { margin: 17px 0 9px; font-size: 22px; }
.privacy-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.72; }

@media (max-width: 960px) {
    .avatar-choice { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .account-danger-zone { grid-template-columns: 1fr; align-items: stretch; }
}

@media (max-width: 700px) {
    .profile-prompt,
    .profile-panel-head { align-items: flex-start; flex-direction: column; }
    .privacy-page-grid { grid-template-columns: 1fr; }
    .private-value { align-items: flex-start; flex-direction: column; }
    .private-value small { text-align: left; }
    .danger-action-row { grid-template-columns: 1fr; }
    .danger-action-row .button { width: 100%; }
}

@media (max-width: 520px) {
    .avatar-choice { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .profile-prompt,
    .privacy-card { padding: 20px; }
    .account-danger-zone { padding: 20px; }
}

/* Arena Ilmu public page — v1.12.1 */
.arena-home-teaser__inner{display:flex;align-items:center;justify-content:space-between;gap:44px;padding-top:4px;padding-bottom:4px}
.arena-home-teaser__inner>div:first-child{max-width:760px}
.arena-home-teaser h2{margin:10px 0 12px;max-width:720px}
.arena-home-teaser p{margin:0;color:var(--muted);font-size:17px;line-height:1.7}
.arena-home-teaser__actions{display:flex;flex-direction:column;align-items:flex-start;gap:14px;flex:0 0 auto}

.arena-public-page{background:#fff}
.arena-public-hero{position:relative;overflow:hidden;background:linear-gradient(145deg,#f2fff7 0%,#f8fbff 58%,#fff9eb 100%);border-bottom:1px solid rgba(21,52,95,.08)}
.arena-public-hero:before,.arena-public-hero:after{content:"";position:absolute;border-radius:999px;pointer-events:none;filter:blur(2px)}
.arena-public-hero:before{width:360px;height:360px;right:-110px;top:-150px;background:rgba(93,221,145,.18)}
.arena-public-hero:after{width:260px;height:260px;left:-130px;bottom:-170px;background:rgba(255,208,76,.18)}
.arena-public-hero__inner{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr);align-items:center;gap:64px;min-height:640px;padding-top:72px;padding-bottom:72px}
.arena-public-hero__copy{max-width:670px}
.arena-public-hero__copy h1{margin:15px 0 20px;font-size:clamp(42px,5vw,66px);line-height:1.08;letter-spacing:-.045em;color:#15345f}
.arena-public-hero__copy h1 span{color:#079767}
.arena-public-hero__copy>p{margin:0;max-width:640px;color:#506175;font-size:18px;line-height:1.75}
.arena-public-hero__copy .hero-actions{margin-top:28px}
.arena-public-hero__copy .hero-trust{margin-top:24px}
.arena-public-hero__visual{position:relative;min-height:470px;display:flex;align-items:center;justify-content:center}
.arena-demo-window{position:relative;width:min(100%,500px);padding:18px;background:#fff;border:1px solid rgba(21,52,95,.11);border-radius:28px;box-shadow:0 30px 80px rgba(34,68,108,.16);transform:rotate(1deg)}
.arena-demo-window__top{display:flex;align-items:center;gap:7px;padding:2px 4px 16px;color:#627185;font-size:13px}
.arena-demo-window__top span{width:10px;height:10px;border-radius:50%;background:#e7edf3}
.arena-demo-window__top span:first-child{background:#ff8d8d}.arena-demo-window__top span:nth-child(2){background:#ffd36c}.arena-demo-window__top span:nth-child(3){background:#6dde9a}
.arena-demo-window__top b{margin-left:auto;color:#15345f;font-size:14px}
.arena-demo-question{padding:28px;border-radius:22px;background:linear-gradient(160deg,#f2fff7,#f7fbff);text-align:center}
.arena-demo-question small{display:block;color:#07855c;font-weight:700;text-transform:uppercase;letter-spacing:.08em}
.arena-demo-question strong{display:block;margin:9px 0 16px;color:#15345f;font-size:20px;line-height:1.4}
.arena-demo-flag{display:grid;place-items:center;min-height:112px;margin:0 auto 20px;border-radius:18px;background:#fff;font-size:76px;box-shadow:inset 0 0 0 1px rgba(21,52,95,.07)}
.arena-demo-options{display:grid;grid-template-columns:1fr 1fr;gap:10px;text-align:left}
.arena-demo-options span{padding:13px 14px;border:1px solid #dfe8ee;border-radius:13px;background:#fff;color:#405269;font-weight:600;font-size:14px}
.arena-demo-options .is-answer{border-color:#22b87c;background:#eafff4;color:#087853;box-shadow:0 0 0 2px rgba(34,184,124,.08)}
.arena-demo-result{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:15px 10px 2px;color:#55677b;font-size:13px}
.arena-demo-result span{padding:7px 11px;border-radius:999px;background:#fff3c7;color:#8c6500;font-weight:700}
.arena-demo-result b{color:#15345f}
.arena-floating-badge{position:absolute;z-index:3;min-width:165px;padding:14px 16px;border:1px solid rgba(21,52,95,.08);border-radius:17px;background:rgba(255,255,255,.96);box-shadow:0 16px 40px rgba(31,62,100,.14)}
.arena-floating-badge b,.arena-floating-badge small{display:block}.arena-floating-badge b{color:#15345f;font-size:14px}.arena-floating-badge small{margin-top:3px;color:#728093;font-size:12px}
.arena-floating-badge--one{left:-8px;top:64px}.arena-floating-badge--two{right:-8px;bottom:58px}

.arena-status-strip{background:#0d7f5d;color:#fff}
.arena-status-strip__inner{display:flex;align-items:center;justify-content:space-between;gap:24px;min-height:82px}
.arena-status-strip__inner>div{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.arena-status-strip__inner strong{font-size:16px}.arena-status-strip__inner small{color:rgba(255,255,255,.78);font-size:14px}
.arena-status-strip__inner a{color:#fff;font-weight:700;text-decoration:none;white-space:nowrap}
.status-dot{width:10px;height:10px;border-radius:50%;background:#fff15f;box-shadow:0 0 0 6px rgba(255,241,95,.14)}

.arena-benefit-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;margin-top:38px}
.arena-benefit-grid article{padding:27px;border:1px solid #e5edf1;border-radius:22px;background:#fff;box-shadow:0 10px 30px rgba(33,62,98,.06)}
.arena-benefit-icon{display:grid;place-items:center;width:50px;height:50px;margin-bottom:19px;border-radius:15px;background:#e9fff5;color:#087e59;font-weight:800;font-size:19px}
.arena-benefit-grid article:nth-child(2) .arena-benefit-icon{background:#fff6cf;color:#987100}.arena-benefit-grid article:nth-child(3) .arena-benefit-icon{background:#eef3ff;color:#4965be}.arena-benefit-grid article:nth-child(4) .arena-benefit-icon{background:#fff0f7;color:#b33a75}
.arena-benefit-grid h3{margin:0 0 9px;color:#15345f;font-size:20px}.arena-benefit-grid p{margin:0;color:var(--muted);font-size:15px;line-height:1.65}

.arena-collection-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:32px}
.arena-collection-card{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:18px;padding:22px 24px;border:1px solid #e2eaf0;border-radius:20px;background:#fff}
.arena-collection-card__emoji{display:grid;place-items:center;width:64px;height:64px;border-radius:18px;background:#f2fff7;font-size:34px}
.arena-collection-card small{display:block;color:#0c8c63;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.07em}
.arena-collection-card h3{margin:4px 0 5px;color:#15345f;font-size:19px}.arena-collection-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.55}
.arena-collection-card .status{white-space:nowrap}

.arena-purpose-layout{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(350px,.9fr);align-items:center;gap:58px}
.arena-purpose-copy h2{margin:12px 0 15px;color:#15345f;font-size:clamp(31px,3vw,43px);line-height:1.18;letter-spacing:-.03em}
.arena-purpose-copy>p{margin:0;color:var(--muted);font-size:17px;line-height:1.75}
.arena-purpose-points{display:grid;gap:13px;margin-top:25px}.arena-purpose-points span{padding:15px 17px;border-left:4px solid #25b57d;border-radius:0 12px 12px 0;background:#f4fbf7;color:#536477;line-height:1.55}.arena-purpose-points b{display:block;margin-bottom:2px;color:#15345f}
.arena-principle-card{padding:34px;border-radius:28px;background:#15345f;color:#fff;box-shadow:0 24px 60px rgba(21,52,95,.18)}
.arena-principle-card>span{color:#91e7c3;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.09em}
.arena-principle-card blockquote{margin:18px 0 25px;font-size:25px;line-height:1.5;font-weight:600}
.arena-principle-card>div{display:flex;align-items:center;justify-content:space-between;gap:8px;padding-top:20px;border-top:1px solid rgba(255,255,255,.17);font-size:12px}.arena-principle-card i{color:#8ee6c0;font-style:normal}

.arena-step-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:32px}
.arena-step-grid article{padding:28px;border-radius:22px;background:#fff;border:1px solid #e5edf1}.arena-step-grid article>span{display:grid;place-items:center;width:45px;height:45px;border-radius:14px;background:#15345f;color:#fff;font-weight:700}.arena-step-grid h3{margin:18px 0 8px;color:#15345f;font-size:20px}.arena-step-grid p{margin:0;color:var(--muted);font-size:15px;line-height:1.65}

.arena-final-cta{padding:66px 0;background:linear-gradient(135deg,#0f7f5e,#075b4e);color:#fff}
.arena-final-cta__inner{display:flex;align-items:center;justify-content:space-between;gap:45px}.arena-final-cta .eyebrow{color:#b9f1d9}.arena-final-cta h2{margin:10px 0 8px;color:#fff;font-size:clamp(31px,3.5vw,46px)}.arena-final-cta p{margin:0;max-width:760px;color:rgba(255,255,255,.8);font-size:16px;line-height:1.7}.button--light{background:#fff!important;color:#087255!important;border-color:#fff!important;white-space:nowrap}

@media (max-width:1050px){
  .arena-public-hero__inner{grid-template-columns:1fr 1fr;gap:34px;min-height:600px}
  .arena-public-hero__copy h1{font-size:48px}
  .arena-benefit-grid{grid-template-columns:1fr 1fr}
  .arena-floating-badge--one{left:-2px}.arena-floating-badge--two{right:-2px}
  .arena-purpose-layout{gap:34px}
}
@media (max-width:804px){
  .arena-home-teaser__inner,.arena-final-cta__inner{align-items:flex-start;flex-direction:column}
  .arena-public-hero__inner{grid-template-columns:1fr;min-height:auto;padding-top:54px;padding-bottom:58px}
  .arena-public-hero__copy{max-width:none}.arena-public-hero__copy h1{font-size:42px}
  .arena-public-hero__visual{min-height:430px}
  .arena-status-strip__inner{padding-top:18px;padding-bottom:18px}
  .arena-collection-grid,.arena-purpose-layout{grid-template-columns:1fr}
  .arena-step-grid{grid-template-columns:1fr}
  .arena-principle-card>div{justify-content:flex-start;flex-wrap:wrap}
}
@media (max-width:560px){
  .arena-public-hero__copy h1{font-size:34px}.arena-public-hero__copy>p{font-size:16px}
  .arena-public-hero__visual{min-height:370px}
  .arena-demo-window{padding:12px;border-radius:22px}.arena-demo-question{padding:20px 15px}.arena-demo-question strong{font-size:17px}.arena-demo-flag{min-height:90px;font-size:59px}.arena-demo-options{grid-template-columns:1fr}.arena-demo-options span{padding:10px 12px}
  .arena-floating-badge{display:none}
  .arena-status-strip__inner{align-items:flex-start;flex-direction:column;gap:10px}
  .arena-benefit-grid{grid-template-columns:1fr}
  .arena-collection-card{grid-template-columns:auto 1fr;padding:18px}.arena-collection-card .status{grid-column:2;justify-self:start}.arena-collection-card__emoji{width:54px;height:54px;font-size:29px}
  .arena-principle-card{padding:26px}.arena-principle-card blockquote{font-size:21px}
}

/* v1.12.4 — log keluar melalui POST terlindung */
.student-logout-form,.account-logout-form,.account-head-logout{margin:0}
.student-logout{width:100%;border:0;background:transparent;font-family:inherit;cursor:pointer}
.account-nav .account-logout-link{width:100%;border:0;background:transparent;display:flex;align-items:center;gap:10px;min-height:43px;padding:9px 11px;border-radius:12px;color:var(--danger);font-family:inherit;font-size:15px;font-weight:730;text-align:left;cursor:pointer}
.account-nav .account-logout-link:hover{background:var(--danger-soft)}
.account-head-logout{display:inline-flex}
@media(max-width:760px){.student-logout-form{display:none}.account-head-logout{width:100%}.account-head-logout .button{width:100%}}

/* v1.12.6 — Gambar hero halaman utama */
.hero-visual--image{min-height:470px;display:flex;align-items:center;justify-content:center}
.hero-media-card{position:relative;width:100%;aspect-ratio:6/5;margin:0;border-radius:30px;overflow:hidden;background:#e9f0fa;border:1px solid rgba(21,52,95,.1);box-shadow:0 30px 64px rgba(18,54,100,.18)}
.hero-media-card:after{content:"";position:absolute;inset:0;pointer-events:none;box-shadow:inset 0 0 0 1px rgba(255,255,255,.28)}
.hero-media-card img{width:100%;height:100%;display:block;object-fit:cover;object-position:center}
@media(max-width:900px){.hero-visual--image{min-height:auto}.hero-media-card{max-width:590px}}
@media(max-width:560px){.hero-media-card{border-radius:22px;aspect-ratio:6/5}}


/* v1.12.7 — Hero halaman Inovasi berkontras tinggi dan gambar boleh urus */
.innovation-list-hero{position:relative;overflow:hidden;padding:0;background:linear-gradient(135deg,#071b34 0%,#123e72 58%,#0c7770 125%);color:#fff;border-bottom:1px solid rgba(255,255,255,.08)}
.innovation-list-hero:before{content:"";position:absolute;width:520px;height:520px;right:-210px;top:-290px;border-radius:50%;background:radial-gradient(circle,rgba(105,219,206,.26),rgba(105,219,206,0) 68%);pointer-events:none}
.innovation-list-hero:after{content:"";position:absolute;width:360px;height:360px;left:-240px;bottom:-250px;border-radius:50%;background:radial-gradient(circle,rgba(249,200,70,.15),rgba(249,200,70,0) 70%);pointer-events:none}
.innovation-list-hero__inner{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.02fr) minmax(390px,.98fr);align-items:center;gap:60px;min-height:540px;padding-top:58px;padding-bottom:58px}
.innovation-list-hero__copy{min-width:0;max-width:720px}
.innovation-list-hero .breadcrumb{margin-bottom:26px;color:rgba(255,255,255,.68)}
.innovation-list-hero .breadcrumb a{color:rgba(255,255,255,.78)}
.innovation-list-hero .eyebrow{color:#91e8dc}
.innovation-list-hero h1{max-width:760px;margin:15px 0 18px;color:#fff;font-size:clamp(40px,4.8vw,61px);line-height:1.07;letter-spacing:-.052em;text-wrap:balance}
.innovation-list-hero p{max-width:690px;margin:0;color:#d9e7f6;font-size:18px;line-height:1.75}
.innovation-hero-tags{display:flex;flex-wrap:wrap;gap:9px;margin-top:27px}
.innovation-hero-tags span{display:inline-flex;align-items:center;min-height:34px;padding:7px 12px;border:1px solid rgba(255,255,255,.18);border-radius:999px;background:rgba(255,255,255,.08);color:#fff;font-size:13px;font-weight:650;backdrop-filter:blur(10px)}
.innovation-list-hero__visual{min-width:0;display:flex;align-items:center;justify-content:center}
.innovation-hero-media,.innovation-hero-placeholder{position:relative;width:100%;aspect-ratio:6/5;margin:0;overflow:hidden;border:1px solid rgba(255,255,255,.22);border-radius:30px;box-shadow:0 34px 75px rgba(0,16,39,.34)}
.innovation-hero-media{background:#dce8f4}
.innovation-hero-media:after{content:"";position:absolute;inset:0;pointer-events:none;box-shadow:inset 0 0 0 1px rgba(255,255,255,.24)}
.innovation-hero-media img{width:100%;height:100%;display:block;object-fit:cover;object-position:center}
.innovation-hero-placeholder{display:flex;flex-direction:column;justify-content:flex-end;padding:38px;background:linear-gradient(145deg,#fff 0%,#eaf7f4 58%,#d9ebff 100%);color:#102c52}
.innovation-hero-placeholder:before{content:"";position:absolute;width:220px;height:220px;right:-80px;top:-85px;border-radius:50%;border:1px solid rgba(18,62,114,.14);box-shadow:0 0 0 54px rgba(18,62,114,.035)}
.innovation-hero-placeholder__mark{position:absolute;left:32px;top:30px;width:56px;height:56px;display:grid;place-items:center;border-radius:17px;background:#0c7770;color:#fff;font-size:18px;font-weight:800;box-shadow:0 13px 28px rgba(12,119,112,.22)}
.innovation-hero-placeholder small{position:relative;color:#0c7770;font-size:12px;font-weight:750;text-transform:uppercase;letter-spacing:.09em}
.innovation-hero-placeholder h2{position:relative;margin:11px 0 12px;max-width:470px;color:#102c52;font-size:clamp(25px,2.4vw,36px);line-height:1.2;letter-spacing:-.035em}
.innovation-hero-placeholder p{position:relative;color:#526b83;font-size:15px;line-height:1.65}
.innovation-hero-placeholder>div{position:relative;display:flex;gap:9px;flex-wrap:wrap;margin-top:22px;padding-top:18px;border-top:1px solid rgba(16,44,82,.12)}
.innovation-hero-placeholder>div span{padding:7px 10px;border-radius:999px;background:#fff;color:#284765;font-size:12px;font-weight:700;box-shadow:0 6px 18px rgba(16,44,82,.07)}
@media(max-width:1050px){.innovation-list-hero__inner{grid-template-columns:minmax(0,1fr) minmax(340px,.82fr);gap:36px}.innovation-list-hero h1{font-size:46px}.innovation-hero-placeholder{padding:28px}.innovation-hero-placeholder h2{font-size:28px}}
@media(max-width:804px){.innovation-list-hero__inner{grid-template-columns:1fr;min-height:auto;padding-top:46px;padding-bottom:54px}.innovation-list-hero__copy{max-width:none}.innovation-list-hero__visual{width:100%;max-width:620px;margin-inline:auto}.innovation-list-hero h1{font-size:42px}.innovation-list-hero .breadcrumb{margin-bottom:20px}}
@media(max-width:560px){.innovation-list-hero__inner{padding-top:36px;padding-bottom:42px}.innovation-list-hero h1{font-size:35px}.innovation-list-hero p{font-size:16px;line-height:1.7}.innovation-hero-media,.innovation-hero-placeholder{border-radius:22px}.innovation-hero-placeholder{padding:25px}.innovation-hero-placeholder__mark{left:24px;top:22px;width:48px;height:48px;border-radius:14px}.innovation-hero-placeholder h2{font-size:25px}.innovation-hero-tags{margin-top:21px}}

/* v1.12.8 — Audit kontras seluruh paparan awam */
/* Permukaan gelap menggunakan warna lebih dalam supaya teks biasa melepasi kontras praktikal. */
.teacher-profile-card {
    background: linear-gradient(145deg, #12355f 0%, #2458a5 56%, #0c706d 120%);
}
.cta-panel {
    background: linear-gradient(125deg, #102f5b 0%, #2458a5 62%, #0c706d 100%);
}
.auth-brand-panel,
.auth-brand-panel--arena {
    background: linear-gradient(145deg, #102f5b 0%, #2458a5 58%, #0c706d 112%);
}
.auth-page--simple .auth-brand-panel--arena {
    background: linear-gradient(155deg, #115f58 0%, #176f59 62%, #1d8062 100%);
}
.student-welcome {
    background: linear-gradient(125deg, #12355f 0%, #2458a5 62%, #0c706d 100%);
}

/* Tajuk global mempunyai warna gelap; semua tajuk pada permukaan gelap ditetapkan secara khusus. */
.teacher-profile-card h2,
.cta-panel h2,
.about-profile h2,
.auth-brand-panel h1,
.auth-brand-panel h2,
.auth-page--simple .auth-copy h1,
.student-welcome h1,
.arena-principle-card blockquote,
.arena-status-strip strong {
    color: #fff;
}

/* Teks sokongan pada permukaan gelap tidak lagi menggunakan putih terlalu lutsinar. */
.teacher-card-top small,
.teacher-profile-card > p,
.teacher-card-foot,
.cta-panel p,
.about-profile small,
.about-profile p,
.profile-points span,
.auth-copy > p,
.auth-benefits span,
.auth-page--simple .auth-copy > p,
.auth-page--simple .auth-home-link,
.auth-brand-logo small,
.student-welcome p,
.arena-status-strip__inner small,
.arena-final-cta p {
    color: #eef6ff;
}

/* Breadcrumb dan penerangan pada hero Inovasi diberi bacaan lebih jelas. */
.innovation-list-hero .breadcrumb {
    color: #d7e6f5;
}
.innovation-list-hero .breadcrumb a {
    color: #f3f8ff;
}
.innovation-list-hero p {
    color: #e5effa;
}

/* Butang putih pada kad gelap kekal jelas ketika hover dan fokus. */
.cta-panel .button {
    color: #123b70;
    background: #fff;
    border-color: #fff;
}
.cta-panel .button:hover,
.cta-panel .button:focus-visible {
    color: #0d315f;
    background: #edf5ff;
    border-color: #edf5ff;
    box-shadow: 0 0 0 4px rgba(255,255,255,.2);
}

/* Permukaan Arena Ilmu berwarna gelap. */
.arena-principle-card blockquote,
.arena-principle-card > div strong {
    color: #fff;
}
.arena-principle-card > span,
.arena-principle-card i {
    color: #a8f3d3;
}
.arena-status-strip__inner a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,.42);
    text-underline-offset: 4px;
}
.arena-status-strip__inner a:hover,
.arena-status-strip__inner a:focus-visible {
    color: #fff7a8;
    text-decoration-color: currentColor;
}

/* Elemen kecil yang sebelum ini terlalu pudar. */
.auth-brand-logo small,
.auth-page--simple .auth-home-link {
    opacity: 1;
}
.account-ready-badge {
    color: #fff;
}
.site-footer .footer-version,
.site-footer__bottom {
    color: #a9bdd4;
}


/* v1.12.9 — Persembahan profesional untuk gambar PNG lutsinar */
/*
 * Semua gambar hero yang dimuat naik dipersembahkan sebagai subjek terapung.
 * Tiada latar segi empat, bingkai keras atau crop daripada kod.
 */
.hero-media-card,
.innovation-hero-media {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    aspect-ratio: 6 / 5;
    margin: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hero-media-card::before,
.innovation-hero-media::before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 50%;
    top: 48%;
    width: min(88%, 510px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-media-card::after,
.innovation-hero-media::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    bottom: 3%;
    width: min(72%, 430px);
    height: 38px;
    transform: translateX(-50%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-media-card::before {
    background: radial-gradient(circle, rgba(77, 135, 231, .19) 0%, rgba(77, 135, 231, .08) 48%, rgba(77, 135, 231, 0) 72%);
}
.hero-media-card::after {
    background: radial-gradient(ellipse, rgba(18, 54, 100, .22) 0%, rgba(18, 54, 100, .08) 47%, rgba(18, 54, 100, 0) 76%);
    filter: blur(8px);
}

.innovation-hero-media::before {
    background: radial-gradient(circle, rgba(137, 235, 220, .23) 0%, rgba(137, 235, 220, .09) 48%, rgba(137, 235, 220, 0) 73%);
}
.innovation-hero-media::after {
    background: radial-gradient(ellipse, rgba(0, 10, 28, .55) 0%, rgba(0, 10, 28, .2) 46%, rgba(0, 10, 28, 0) 76%);
    filter: blur(9px);
}

.hero-media-card img,
.innovation-hero-media img {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin-inline: auto;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 24px 24px rgba(10, 35, 69, .20));
}

.innovation-hero-media img {
    max-height: 520px;
    filter: drop-shadow(0 26px 26px rgba(0, 13, 32, .38));
}

.hero-visual--image,
.innovation-list-hero__visual {
    overflow: visible;
}

/* Elakkan latar lama muncul semula melalui selector terdahulu. */
.hero-media-card:where(:not(.hero-media-card--framed)),
.innovation-hero-media:where(:not(.innovation-hero-media--framed)) {
    background-color: transparent;
}

@media (max-width: 1050px) {
    .innovation-hero-media img { max-height: 455px; }
}

@media (max-width: 804px) {
    .hero-media-card,
    .innovation-hero-media {
        max-width: 620px;
        min-height: 390px;
        aspect-ratio: auto;
    }
    .hero-media-card img,
    .innovation-hero-media img {
        max-height: 470px;
    }
}

@media (max-width: 560px) {
    .hero-media-card,
    .innovation-hero-media {
        min-height: 325px;
    }
    .hero-media-card::before,
    .innovation-hero-media::before {
        width: 94%;
    }
    .hero-media-card img,
    .innovation-hero-media img {
        max-height: 390px;
    }
}

/* v1.14.1 — Ruang Murid berhalaman dan modular */
.student-content[data-student-page] { display: grid; gap: 17px; }
.student-content[data-student-page] > .student-welcome,
.student-content[data-student-page] > .student-page-head,
.student-content[data-student-page] > .profile-prompt,
.student-content[data-student-page] > .student-metrics,
.student-content[data-student-page] > .student-section-card,
.student-content[data-student-page] > .student-two-column,
.student-content[data-student-page] > .student-note-card,
.student-content[data-student-page] > .student-privacy-banner,
.student-content[data-student-page] > .dashboard-card { margin: 0; }
.student-welcome .account-ready-badge { color: #fff; text-decoration: none; }
.student-welcome .account-ready-badge.is-pending { color: #6c4a08; }

.student-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    min-height: 178px;
    padding: 30px;
    overflow: hidden;
    border-radius: 23px;
    background:
        radial-gradient(circle at 91% 8%, rgba(255,255,255,.12) 0 120px, transparent 121px),
        linear-gradient(125deg, #12355f 0%, #2458a5 62%, #0c706d 100%);
    box-shadow: 0 18px 42px rgba(21,61,116,.17);
}
.student-page-head .eyebrow { color: #cde5ff; }
.student-page-head h1 { margin: 8px 0 7px; color: #fff; font-size: clamp(30px, 3vw, 43px); line-height: 1.08; letter-spacing: -.04em; }
.student-page-head p { max-width: 760px; margin: 0; color: #edf6ff; font-size: 16px; line-height: 1.65; }

.student-page-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}
.student-page-summary > div {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(24,54,93,.045);
}
.student-page-summary span,
.student-page-summary strong { display: block; }
.student-page-summary span { color: var(--muted); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.student-page-summary strong { margin-top: 7px; color: var(--ink-deep); font-size: 30px; line-height: 1; }

.student-section-card {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.student-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.student-section-head h2 { margin: 7px 0 5px; color: var(--ink-deep); font-size: 25px; line-height: 1.2; }
.student-section-head p { max-width: 720px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.student-action-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 13px; }
.student-action-card {
    display: grid;
    grid-template-columns: 46px minmax(0,1fr) auto;
    align-items: center;
    gap: 13px;
    min-height: 112px;
    padding: 17px;
    border: 1px solid #dce6f3;
    border-radius: 18px;
    background: linear-gradient(145deg,#fff,#f7fbff);
    color: var(--ink-deep);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.student-action-card:hover { transform: translateY(-2px); border-color: #abc7eb; box-shadow: 0 13px 27px rgba(24,54,93,.09); }
.student-action-card__icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--primary-soft); color: var(--primary); font-size: 18px; font-weight: 900; }
.student-action-card strong { display: block; margin-bottom: 4px; font-size: 16px; }
.student-action-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.student-action-card > b { color: var(--primary); font-size: 20px; }

.student-game-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
.student-game-card { overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.student-game-card__visual {
    min-height: 125px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(145deg,#173e77,#2d68be 62%,#13847d);
}
.student-game-card__visual > span { font-size: 38px; }
.student-game-card__visual > small { padding: 6px 9px; border-radius: 999px; background: rgba(255,255,255,.15); color: #fff; font-size: 11px; font-weight: 800; }
.student-game-card__body { padding: 18px; }
.student-game-card__meta { display: flex; gap: 7px; flex-wrap: wrap; }
.student-game-card__meta span { padding: 5px 8px; border-radius: 999px; background: var(--surface); color: #58708b; font-size: 11px; font-weight: 750; }
.student-game-card h3 { margin: 12px 0 6px; color: var(--ink-deep); font-size: 20px; }
.student-game-card p { min-height: 48px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.student-game-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.student-game-card__foot small { color: #60738c; font-size: 11px; font-weight: 700; }
.student-game-card button[disabled] { cursor: not-allowed; opacity: .62; }

.student-empty-large { min-height: 260px; display: grid; place-items: center; align-content: center; gap: 8px; padding: 35px; border: 1px dashed #cbd9ea; border-radius: 19px; background: #f9fbfe; text-align: center; }
.student-empty-large > span { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: var(--primary-soft); color: var(--primary); font-size: 24px; font-weight: 900; }
.student-empty-large h3 { margin: 8px 0 0; color: var(--ink-deep); font-size: 22px; }
.student-empty-large p { max-width: 610px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.student-empty-large .button { margin-top: 10px; }

.student-note-card,
.student-privacy-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 19px;
    border: 1px solid #cae3e0;
    border-radius: 18px;
    background: #edf9f7;
}
.student-note-card > span,
.student-privacy-banner > span { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 11px; background: #0c7770; color: #fff; font-weight: 900; }
.student-note-card strong,
.student-privacy-banner strong { display: block; color: #143f52; }
.student-note-card p,
.student-privacy-banner p { margin: 2px 0 0; color: #4d6c77; font-size: 13px; line-height: 1.55; }
.student-privacy-banner > a { margin-left: auto; color: #0d5d68; font-size: 13px; font-weight: 800; white-space: nowrap; }

.student-badge-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-top: 17px; }
.student-badge-grid article { display: grid; place-items: center; gap: 4px; min-height: 130px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: #f8fafc; text-align: center; opacity: .68; }
.student-badge-grid article > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: #e9eef5; color: #56708f; font-size: 18px; font-weight: 900; }
.student-badge-grid strong { color: var(--ink-deep); font-size: 13px; }
.student-badge-grid small { color: var(--muted); font-size: 10px; line-height: 1.4; }
.student-muted-note { margin: 14px 0 0; color: var(--muted); font-size: 12px; }

.student-leaderboard-placeholder { display: grid; gap: 9px; }
.student-leaderboard-placeholder > div { display: grid; grid-template-columns: 38px minmax(0,1fr) auto; align-items: center; gap: 12px; min-height: 58px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 14px; background: #f9fbfe; opacity: .72; }
.student-leaderboard-placeholder b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: #eaf1fb; color: var(--primary); }
.student-leaderboard-placeholder span { color: #566d88; font-weight: 700; }
.student-leaderboard-placeholder strong { color: #6c7d91; font-size: 13px; }
.student-profile-panel--standalone { margin-top: 0; }

@media (max-width: 980px) {
    .student-action-grid { grid-template-columns: 1fr; }
    .student-game-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .student-page-head { min-height: 150px; padding: 24px; }
    .student-page-head h1 { font-size: 31px; }
    .student-page-summary { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .student-page-summary > div { padding: 14px; }
    .student-page-summary strong { font-size: 24px; }
    .student-privacy-banner { align-items: flex-start; flex-wrap: wrap; }
    .student-privacy-banner > a { width: 100%; margin-left: 48px; }
}
@media (max-width: 560px) {
    .student-page-summary { grid-template-columns: 1fr; }
    .student-section-card { padding: 20px; }
    .student-section-head { flex-direction: column; }
    .student-action-card { grid-template-columns: 42px minmax(0,1fr) auto; min-height: 98px; padding: 14px; }
    .student-action-card__icon { width: 42px; height: 42px; }
    .student-badge-grid { grid-template-columns: 1fr; }
    .student-badge-grid article { min-height: 95px; }
    .student-game-card__foot { align-items: flex-start; flex-direction: column; }
    .student-leaderboard-placeholder > div { grid-template-columns: 34px minmax(0,1fr); }
    .student-leaderboard-placeholder strong { grid-column: 2; }
}
@media (max-width: 1050px) {
    .student-nav { grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); }
}
@media (max-width: 760px) {
    .student-logout-form { display: block; }
    .student-logout { margin-top: 10px; border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
    .student-nav { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 3px; scrollbar-width: thin; }
    .student-nav a { flex: 0 0 auto; min-width: 94px; }
}

/* v1.14.2 — Responsif penuh Ruang Murid */
.student-dashboard-page,
.student-dashboard-page main,
.student-dashboard-page .student-shell,
.student-dashboard-page .student-layout,
.student-dashboard-page .student-content,
.student-dashboard-page .student-content > * {
    min-width: 0;
}

.student-shell {
    overflow: clip;
}

.student-layout {
    width: min(var(--public-shell-max), calc(100% - var(--public-shell-space)));
}

.student-content {
    width: 100%;
    overflow: clip;
}

.student-mobile-help {
    display: none;
}

.student-welcome,
.student-page-head,
.student-section-card,
.student-two-column > *,
.student-metrics > *,
.student-page-summary > *,
.student-game-card,
.student-action-card,
.student-profile-panel,
.account-danger-zone {
    max-width: 100%;
}

.student-welcome > div,
.student-page-head > div,
.student-section-head > div,
.student-action-card > div,
.student-game-card__body,
.student-user-card > div {
    min-width: 0;
}

.student-welcome h1,
.student-page-head h1,
.student-section-head h2,
.student-feature h2,
.dashboard-card h2,
.student-game-card h3 {
    overflow-wrap: anywhere;
}

.student-welcome p,
.student-page-head p,
.student-section-head p,
.student-game-card p,
.student-note-card p,
.student-privacy-banner p,
.dashboard-card p,
.profile-prompt p {
    overflow-wrap: anywhere;
}

@media (max-width: 1120px) and (min-width: 901px) {
    .student-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 18px;
    }

    .student-sidebar {
        padding: 14px;
    }

    .student-welcome,
    .student-page-head {
        padding: 24px;
    }

    .student-welcome h1 {
        font-size: clamp(28px, 3vw, 34px);
    }

    .student-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .student-two-column,
    .student-game-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .student-shell {
        padding-top: 20px;
    }

    .student-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .student-sidebar {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "user logout"
            "nav nav";
        gap: 12px;
        padding: 14px;
        border-radius: 20px;
    }

    .student-user-card {
        grid-area: user;
        padding: 0;
        border: 0;
    }

    .student-user-card strong {
        max-width: min(46vw, 310px);
    }

    .student-nav {
        grid-area: nav;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin: 0;
    }

    .student-nav a {
        min-width: 0;
        justify-content: flex-start;
        padding: 9px 10px;
        font-size: 12px;
    }

    .student-nav a span {
        display: grid;
        flex: 0 0 25px;
    }

    .student-logout-form {
        grid-area: logout;
        display: flex;
        align-items: center;
    }

    .student-logout {
        width: auto;
        min-height: 42px;
        margin: 0;
        padding: 9px 13px;
        border: 1px solid #f0cbd1;
        border-radius: 12px;
        background: #fff7f8;
        white-space: nowrap;
    }

    .student-action-grid,
    .student-game-grid,
    .student-two-column {
        grid-template-columns: 1fr;
    }

    .student-welcome {
        padding: 24px;
    }

    .student-page-head {
        min-height: 0;
        padding: 24px;
    }

    .student-section-card,
    .dashboard-card,
    .student-profile-panel,
    .account-danger-zone {
        padding: 22px;
    }
}

@media (max-width: 760px) {
    .student-dashboard-page {
        padding-bottom: calc(82px + env(safe-area-inset-bottom));
    }

    .student-shell {
        padding: 14px 0 28px;
    }

    .student-layout {
        width: min(100% - 24px, var(--public-shell-max));
        gap: 12px;
    }

    .student-sidebar {
        grid-template-columns: minmax(0, 1fr) auto auto;
        grid-template-areas: "user help logout";
        align-items: center;
        gap: 8px;
        padding: 10px;
        border-radius: 16px;
    }

    .student-user-card {
        gap: 9px;
    }

    .student-avatar {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 13px;
        font-size: 18px;
    }

    .student-user-card small {
        display: none;
    }

    .student-user-card strong {
        max-width: min(40vw, 210px);
        font-size: 13px;
    }

    .student-user-card span {
        font-size: 11px;
    }

    .student-mobile-help {
        grid-area: help;
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        color: var(--primary);
    }

    .student-mobile-help span {
        font-size: 16px;
        font-weight: 900;
    }

    .student-mobile-help b {
        display: none;
    }

    .student-logout-form {
        display: flex;
    }

    .student-logout {
        width: 42px;
        height: 42px;
        min-height: 42px;
        overflow: hidden;
        padding: 0;
        border-radius: 12px;
        color: transparent;
        font-size: 0;
    }

    .student-logout::before {
        content: "↪";
        color: var(--danger);
        font-size: 19px;
        line-height: 1;
    }

    .student-nav {
        position: fixed;
        z-index: 70;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 2px;
        margin: 0;
        padding: 7px 6px calc(7px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--line);
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 -10px 28px rgba(18, 46, 82, .10);
        backdrop-filter: blur(16px);
        overflow: visible;
    }

    .student-nav a {
        min-width: 0;
        min-height: 56px;
        display: grid;
        place-items: center;
        align-content: center;
        gap: 3px;
        padding: 5px 2px;
        border-radius: 11px;
        color: #64758b;
        font-size: 10px;
        line-height: 1.1;
        text-align: center;
        white-space: normal;
    }

    .student-nav a span {
        width: 24px;
        height: 24px;
        display: grid;
        place-items: center;
        border-radius: 8px;
        font-size: 13px;
    }

    .student-nav a.is-active {
        color: var(--primary-dark);
        background: var(--primary-soft);
    }

    .student-nav__support {
        display: none !important;
    }

    .student-content[data-student-page] {
        gap: 12px;
    }

    .student-welcome,
    .student-page-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        padding: 22px;
        border-radius: 19px;
    }

    .student-welcome h1,
    .student-page-head h1 {
        margin-top: 6px;
        font-size: clamp(27px, 8vw, 34px);
        line-height: 1.12;
    }

    .student-welcome p,
    .student-page-head p {
        font-size: 14px;
        line-height: 1.65;
    }

    .account-ready-badge {
        width: fit-content;
        white-space: normal;
    }

    .student-metrics,
    .student-metrics--page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .student-metrics article {
        min-width: 0;
        padding: 14px;
        border-radius: 15px;
    }

    .student-metrics strong {
        font-size: 24px;
    }

    .student-metrics span,
    .student-metrics small {
        font-size: 10px;
        line-height: 1.45;
    }

    .student-page-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .student-page-summary > div {
        min-width: 0;
        padding: 14px;
    }

    .student-section-card,
    .dashboard-card,
    .student-profile-panel,
    .account-danger-zone {
        padding: 18px;
        border-radius: 18px;
    }

    .student-section-head,
    .profile-panel-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .student-section-head h2,
    .dashboard-card h2,
    .profile-panel-head h2 {
        font-size: clamp(21px, 6vw, 26px);
    }

    .student-action-card {
        grid-template-columns: 40px minmax(0, 1fr) auto;
        min-height: 88px;
        padding: 13px;
    }

    .student-action-card__icon {
        width: 40px;
        height: 40px;
    }

    .student-game-card__visual {
        min-height: 105px;
    }

    .student-game-card__body {
        padding: 15px;
    }

    .student-game-card p {
        min-height: 0;
    }

    .student-game-card__foot,
    .form-actions,
    .danger-action-row {
        align-items: stretch;
        flex-direction: column;
    }

    .student-game-card__foot .button,
    .form-actions .button,
    .danger-action-row .button {
        width: 100%;
    }

    .student-note-card,
    .student-privacy-banner {
        align-items: flex-start;
        padding: 14px;
    }

    .student-privacy-banner > a {
        width: 100%;
        margin-left: 48px;
        white-space: normal;
    }

    .student-profile-form .form-grid,
    .account-danger-zone .form-grid,
    .danger-action-row {
        grid-template-columns: 1fr;
    }

    .avatar-choice {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 430px) {
    .student-layout {
        width: min(100% - 18px, var(--public-shell-max));
    }

    .student-sidebar {
        grid-template-columns: minmax(0, 1fr) 40px 40px;
        padding: 9px;
    }

    .student-avatar,
    .student-mobile-help,
    .student-logout {
        width: 40px;
        height: 40px;
        min-height: 40px;
    }

    .student-user-card strong {
        max-width: 35vw;
    }

    .student-welcome,
    .student-page-head,
    .student-section-card,
    .dashboard-card,
    .student-profile-panel,
    .account-danger-zone {
        padding: 16px;
    }

    .student-metrics,
    .student-metrics--page,
    .student-page-summary {
        grid-template-columns: 1fr;
    }

    .student-action-card {
        grid-template-columns: 38px minmax(0, 1fr) auto;
    }

    .student-action-card p {
        font-size: 12px;
    }

    .avatar-choice {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .student-empty-large {
        min-height: 220px;
        padding: 24px 16px;
    }
}

/* v1.14.3 — Header awam tetamu lebih kemas dan stabil */
.site-brand__text strong,
.site-brand__text small,
.header-login-link,
.button--header.button--signup {
    white-space: nowrap;
}

.header-login-link {
    min-height: 46px;
    padding: 10px 15px;
    border: 1px solid #d7e2ef;
    border-radius: 14px;
    background: rgba(255, 255, 255, .82);
    color: #3d526d;
    box-shadow: 0 6px 18px rgba(18, 46, 82, .035);
}

.header-login-link:hover {
    border-color: #b9ccec;
    background: #f8fbff;
    color: var(--primary-dark);
}

.site-header--guest .button--header.button--signup {
    min-width: 145px;
    flex: 0 0 auto;
    padding-inline: 18px;
}

.site-header--guest .site-header__actions--guest {
    flex-wrap: nowrap;
}

@media (min-width: 961px) {
    .site-header__inner {
        grid-template-columns: minmax(230px, 1fr) auto minmax(260px, 1fr);
        column-gap: 22px;
    }

    .site-brand,
    .site-nav,
    .site-header__actions {
        width: auto;
        min-width: 0;
    }

    .site-brand {
        justify-self: start;
    }

    .site-nav {
        min-width: 0;
        justify-self: center;
    }

    .site-nav__links {
        width: auto;
    }

    .site-nav__links > a {
        flex: 0 0 auto;
        min-width: 96px;
        padding-inline: 12px;
    }

    .site-header__actions {
        justify-self: end;
    }

    .site-header--guest .site-header__actions--guest {
        display: grid;
        grid-template-columns: max-content max-content;
        align-items: center;
        justify-content: end;
        gap: 10px;
    }
}

@media (min-width: 961px) and (max-width: 1179px) {
    .site-header__inner {
        grid-template-columns: minmax(178px, 1fr) auto minmax(238px, 1fr);
        column-gap: 14px;
    }

    .site-nav__links > a {
        min-width: 82px;
        padding-inline: 8px;
    }

    .site-header--guest .button--header.button--signup {
        min-width: 132px;
        padding-inline: 13px;
    }

    .header-login-link {
        padding-inline: 12px;
    }
}

@media (max-width: 960px) {
    .site-header--guest .site-header__actions > .button--signup {
        display: none;
    }
}

@media (max-width: 430px) {
    .site-brand__text small {
        display: none;
    }
}

/* v1.15.0 — Fasa 1 Ruang Guru */
.teacher-dashboard-page,
.teacher-dashboard-page main,
.teacher-shell,
.teacher-layout,
.teacher-content,
.teacher-content > * {
    min-width: 0;
}

.teacher-shell {
    min-height: calc(100vh - 80px);
    padding: 30px 0 72px;
    overflow: clip;
    background:
        radial-gradient(circle at 88% 4%, rgba(20,138,134,.08), transparent 25%),
        linear-gradient(180deg, #f2f7fc 0%, #f8fbff 100%);
}

.teacher-layout {
    width: min(var(--public-shell-max, 1220px), calc(100% - var(--public-shell-space, 48px)));
    display: grid;
    grid-template-columns: 254px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
}

.teacher-sidebar {
    position: sticky;
    top: 104px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-sm);
}

.teacher-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 7px 18px;
    border-bottom: 1px solid var(--line);
}

.teacher-user-card > div:last-child { min-width: 0; }
.teacher-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(145deg, #173f77, #326dc7 58%, #12857f);
    box-shadow: 0 10px 24px rgba(28,79,137,.18);
    font-size: 20px;
    font-weight: 900;
}
.teacher-user-card small,
.teacher-user-card strong,
.teacher-user-card span { display: block; }
.teacher-user-card small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.teacher-user-card strong {
    max-width: 150px;
    overflow: hidden;
    color: var(--ink-deep);
    font-size: 14px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.teacher-user-card span { color: var(--muted); font-size: 11px; }

.teacher-nav {
    display: grid;
    gap: 5px;
    margin-top: 15px;
}
.teacher-nav a,
.teacher-logout {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #5a6d87;
    cursor: pointer;
    text-align: left;
    font-size: 13px;
    font-weight: 800;
}
.teacher-nav a > span,
.teacher-logout > span {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--surface);
    color: var(--primary);
    font-size: 12px;
}
.teacher-nav a:hover,
.teacher-nav a.is-active {
    background: var(--primary-soft);
    color: var(--primary-dark);
}
.teacher-nav a.is-active > span { background: #fff; box-shadow: 0 4px 12px rgba(40,93,176,.10); }
.teacher-nav b,
.teacher-logout b { font: inherit; }
.teacher-nav__support { margin-top: 5px; border-top: 1px solid var(--line); border-radius: 0 0 12px 12px !important; }
.teacher-logout-form { margin-top: 8px; border-top: 1px solid var(--line); padding-top: 8px; }
.teacher-logout { color: var(--danger); }
.teacher-logout:hover { background: #fff2f4; }
.teacher-logout > span { color: var(--danger); background: #fff1f3; }
.teacher-mobile-help { display: none; }
.teacher-content { width: 100%; overflow: clip; }

.teacher-welcome,
.teacher-page-head {
    max-width: 100%;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 32px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(125deg, #102f59 0%, #245da8 58%, #117a78 100%);
    box-shadow: 0 18px 44px rgba(16,47,89,.17);
}
.teacher-page-head { min-height: 164px; }
.teacher-welcome > div,
.teacher-page-head > div { min-width: 0; }
.teacher-welcome .eyebrow,
.teacher-page-head .eyebrow { color: #aeece5; }
.teacher-welcome h1,
.teacher-page-head h1 {
    margin: 8px 0 6px;
    color: #fff;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
}
.teacher-page-head h1 { font-size: clamp(29px, 3.6vw, 38px); }
.teacher-welcome p,
.teacher-page-head p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}
.teacher-ready-badge {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    background: rgba(255,255,255,.13);
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}
.teacher-ready-badge.is-pending { background: #fff; color: var(--primary-dark); }

.teacher-profile-prompt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 16px;
    padding: 20px 22px;
    border: 1px solid #d8e5f3;
    border-radius: 19px;
    background: linear-gradient(135deg, #fff, #edf8f6);
}
.teacher-profile-prompt h2 { margin: 5px 0 4px; color: var(--ink-deep); font-size: 21px; }
.teacher-profile-prompt p { margin: 0; color: var(--muted); font-size: 13px; }

.teacher-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
    margin: 17px 0;
}
.teacher-metrics article,
.teacher-page-summary > div {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(24,54,93,.045);
}
.teacher-metrics span,
.teacher-metrics strong,
.teacher-metrics small,
.teacher-page-summary span,
.teacher-page-summary strong { display: block; }
.teacher-metrics span,
.teacher-page-summary span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.teacher-metrics strong,
.teacher-page-summary strong {
    margin: 5px 0;
    color: var(--ink-deep);
    font-size: 28px;
    line-height: 1.1;
}
.teacher-metrics small { color: var(--muted); font-size: 11px; line-height: 1.5; }
.teacher-metrics .teacher-metric-status { color: var(--success); font-size: 22px; }

.teacher-page-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin: 17px 0;
}

.teacher-section-card,
.teacher-dashboard-card,
.teacher-profile-panel {
    max-width: 100%;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.teacher-section-card + .teacher-section-card { margin-top: 17px; }
.teacher-section-head,
.teacher-profile-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}
.teacher-section-head > div,
.teacher-profile-panel__head > div { min-width: 0; }
.teacher-section-head h2,
.teacher-profile-panel__head h2,
.teacher-dashboard-card h2 {
    margin: 7px 0 7px;
    color: var(--ink-deep);
    font-size: 24px;
    line-height: 1.22;
    overflow-wrap: anywhere;
}
.teacher-section-head p,
.teacher-profile-panel__head p,
.teacher-dashboard-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.teacher-action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin-top: 20px;
}
.teacher-action-card {
    min-width: 0;
    min-height: 114px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f9fbfe;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.teacher-action-card:hover { transform: translateY(-2px); border-color: #b9d2ee; box-shadow: 0 12px 28px rgba(23,62,108,.08); }
.teacher-action-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(145deg, var(--primary-soft), var(--teal-soft));
    color: var(--primary-dark);
    font-size: 19px;
    font-weight: 900;
}
.teacher-action-card strong { display: block; color: var(--ink-deep); font-size: 15px; }
.teacher-action-card p { margin: 3px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; overflow-wrap: anywhere; }
.teacher-action-card > b { color: var(--primary); font-size: 20px; }

.teacher-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
    margin-top: 17px;
}
.teacher-two-column > * { min-width: 0; }
.teacher-dashboard-card .empty-state { margin-top: 16px; }

.teacher-empty-large {
    min-height: 270px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 30px;
    border: 1px dashed #c8d9eb;
    border-radius: 19px;
    background: #f8fbff;
    text-align: center;
}
.teacher-empty-large--compact { min-height: 190px; }
.teacher-empty-large > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 22px;
    font-weight: 900;
}
.teacher-empty-large h3 { margin: 5px 0 0; color: var(--ink-deep); font-size: 20px; }
.teacher-empty-large p { max-width: 620px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.teacher-category-preview { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 15px; }
.teacher-category-preview span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #526681; font-size: 11px; font-weight: 750; }

.teacher-tool-grid,
.teacher-access-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}
.teacher-tool-card,
.teacher-access-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: #fff;
}
.teacher-tool-card { display: grid; grid-template-columns: 115px minmax(0, 1fr); }
.teacher-tool-card__visual { display: grid; place-items: center; align-content: center; gap: 6px; padding: 18px; background: linear-gradient(145deg, #eaf2ff, #e7f8f5); color: var(--primary); }
.teacher-tool-card__visual span { font-size: 28px; font-weight: 900; }
.teacher-tool-card__visual small { color: #526681; font-size: 10px; font-weight: 800; text-align: center; }
.teacher-tool-card__body { min-width: 0; padding: 18px; }
.teacher-tool-card h3,
.teacher-access-card h3 { margin: 0 0 6px; color: var(--ink-deep); font-size: 18px; overflow-wrap: anywhere; }
.teacher-tool-card p,
.teacher-access-card p { margin: 0 0 14px; color: var(--muted); font-size: 13px; line-height: 1.65; overflow-wrap: anywhere; }
.teacher-access-card { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; padding: 20px; }
.teacher-access-card > div:first-child { flex: 1; min-width: 0; }
.teacher-access-card .button { margin-top: auto; }

.teacher-note-card,
.teacher-account-note {
    max-width: 100%;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-top: 17px;
    padding: 17px 19px;
    border: 1px solid #cfe4e1;
    border-radius: 18px;
    background: #effaf8;
}
.teacher-note-card > span,
.teacher-account-note > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #fff;
    color: var(--teal);
    font-weight: 900;
}
.teacher-note-card strong,
.teacher-account-note strong { display: block; color: var(--ink-deep); font-size: 14px; }
.teacher-note-card p,
.teacher-account-note p { margin: 2px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.teacher-account-note > a { color: var(--primary); font-size: 12px; font-weight: 850; white-space: nowrap; }

.teacher-profile-panel { margin-top: 17px; }
.teacher-profile-form { margin-top: 22px; }
.teacher-profile-form .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.teacher-profile-form .field { margin: 0; }
.teacher-profile-form .field--full { grid-column: 1 / -1; }

@media (max-width: 1120px) and (min-width: 901px) {
    .teacher-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 18px; }
    .teacher-sidebar { padding: 14px; }
    .teacher-welcome,
    .teacher-page-head { padding: 25px; }
    .teacher-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .teacher-action-grid { grid-template-columns: 1fr; }
    .teacher-tool-grid,
    .teacher-access-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .teacher-shell { padding-top: 20px; }
    .teacher-layout { grid-template-columns: minmax(0, 1fr); gap: 16px; }
    .teacher-sidebar {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas: "user logout" "nav nav";
        gap: 12px;
        padding: 14px;
        border-radius: 20px;
    }
    .teacher-user-card { grid-area: user; padding: 0; border: 0; }
    .teacher-user-card strong { max-width: min(48vw, 330px); }
    .teacher-nav {
        grid-area: nav;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin: 0;
    }
    .teacher-nav a { min-width: 0; justify-content: flex-start; padding: 9px 10px; font-size: 12px; }
    .teacher-logout-form { grid-area: logout; display: flex; align-items: center; margin: 0; padding: 0; border: 0; }
    .teacher-logout { width: auto; min-height: 42px; padding: 9px 13px; border: 1px solid #f0cbd1; background: #fff7f8; white-space: nowrap; }
    .teacher-welcome,
    .teacher-page-head { min-height: 0; padding: 24px; }
    .teacher-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .teacher-action-grid,
    .teacher-two-column,
    .teacher-tool-grid,
    .teacher-access-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .teacher-dashboard-page { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
    .teacher-shell { padding: 14px 0 28px; }
    .teacher-layout { width: min(100% - 24px, var(--public-shell-max, 1220px)); gap: 12px; }
    .teacher-sidebar {
        grid-template-columns: minmax(0, 1fr) 42px 42px;
        grid-template-areas: "user help logout";
        align-items: center;
        gap: 8px;
        padding: 10px;
        border-radius: 16px;
    }
    .teacher-user-card { gap: 9px; }
    .teacher-avatar { width: 42px; height: 42px; flex-basis: 42px; border-radius: 13px; font-size: 18px; }
    .teacher-user-card small { display: none; }
    .teacher-user-card strong { max-width: min(42vw, 230px); font-size: 13px; }
    .teacher-user-card span { font-size: 10px; }
    .teacher-mobile-help {
        grid-area: help;
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #f8fbff;
        color: var(--primary);
    }
    .teacher-mobile-help b { display: none; }
    .teacher-logout-form { grid-area: logout; }
    .teacher-logout { width: 42px; height: 42px; min-height: 42px; justify-content: center; padding: 0; }
    .teacher-logout > span { width: auto; height: auto; background: transparent; }
    .teacher-logout b { display: none; }
    .teacher-nav {
        position: fixed;
        z-index: 70;
        left: 12px;
        right: 12px;
        bottom: max(10px, env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 4px;
        margin: 0;
        padding: 7px;
        border: 1px solid rgba(205,220,237,.95);
        border-radius: 19px;
        background: rgba(255,255,255,.96);
        box-shadow: 0 16px 44px rgba(16,47,89,.20);
        backdrop-filter: blur(16px);
    }
    .teacher-nav a {
        min-width: 0;
        min-height: 54px;
        display: grid;
        place-items: center;
        align-content: center;
        gap: 3px;
        padding: 5px 2px;
        border-radius: 13px;
        font-size: 9px;
        line-height: 1.15;
        text-align: center;
    }
    .teacher-nav a > span { width: 25px; height: 25px; }
    .teacher-nav a > b { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .teacher-nav__support { display: none !important; }
    .teacher-welcome { align-items: flex-start; flex-direction: column; gap: 16px; padding: 21px; }
    .teacher-ready-badge { white-space: normal; }
    .teacher-page-head { padding: 21px; }
    .teacher-profile-prompt { align-items: flex-start; flex-direction: column; }
    .teacher-section-card,
    .teacher-dashboard-card,
    .teacher-profile-panel { padding: 20px; }
    .teacher-section-head,
    .teacher-profile-panel__head { align-items: flex-start; flex-direction: column; }
    .teacher-action-card { grid-template-columns: 44px minmax(0, 1fr) auto; min-height: 100px; padding: 14px; }
    .teacher-action-card__icon { width: 44px; height: 44px; }
    .teacher-page-summary { grid-template-columns: 1fr; }
    .teacher-profile-form .form-grid { grid-template-columns: 1fr; }
    .teacher-profile-form .field--full { grid-column: auto; }
    .teacher-note-card,
    .teacher-account-note { grid-template-columns: 42px minmax(0, 1fr); align-items: flex-start; padding: 14px; }
    .teacher-account-note > a { grid-column: 2; white-space: normal; }
    .teacher-tool-card { grid-template-columns: 92px minmax(0, 1fr); }
}

@media (max-width: 430px) {
    .teacher-layout { width: min(100% - 18px, var(--public-shell-max, 1220px)); }
    .teacher-sidebar { grid-template-columns: minmax(0, 1fr) 40px 40px; padding: 9px; }
    .teacher-avatar,
    .teacher-mobile-help,
    .teacher-logout { width: 40px; height: 40px; min-height: 40px; }
    .teacher-user-card strong { max-width: 34vw; }
    .teacher-welcome,
    .teacher-page-head,
    .teacher-section-card,
    .teacher-dashboard-card,
    .teacher-profile-panel { padding: 16px; }
    .teacher-metrics { grid-template-columns: 1fr; }
    .teacher-action-card { grid-template-columns: 39px minmax(0, 1fr) auto; }
    .teacher-action-card__icon { width: 39px; height: 39px; border-radius: 12px; }
    .teacher-tool-card { grid-template-columns: 1fr; }
    .teacher-tool-card__visual { min-height: 110px; }
    .teacher-nav { left: 7px; right: 7px; padding: 5px; border-radius: 16px; }
    .teacher-nav a { min-height: 52px; font-size: 8px; }
}

/* Arena Ilmu v1.18.0 — SmartGame Player, keputusan dan leaderboard */
.student-back-link{display:inline-flex;align-items:center;gap:7px;margin-bottom:16px;color:var(--primary);font-size:13px;font-weight:850;text-decoration:none}
.student-back-link:hover{text-decoration:underline}
.student-game-card__visual{position:relative;overflow:hidden;min-height:168px}
.student-game-card__visual>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.student-game-card__visual>img+small{position:relative;z-index:2;align-self:flex-end}
.student-game-card__visual:has(>img)::after{content:"";position:absolute;inset:45% 0 0;background:linear-gradient(transparent,rgba(8,30,61,.78))}
.game-record-chip{position:absolute;z-index:3;top:12px;right:12px;padding:6px 9px;border-radius:999px;background:#fff;color:#0759b8;font-size:11px;box-shadow:0 8px 24px rgba(6,33,69,.18)}
.game-personal-record{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;gap:2px 12px;margin-top:14px;padding:11px 12px;border-radius:14px;background:#f1f7ff}
.game-personal-record span{color:#5c718b;font-size:11px;font-weight:800}
.game-personal-record strong{grid-row:1/3;grid-column:2;color:var(--primary);font-size:24px;line-height:1}
.game-personal-record small{color:#78889b;font-size:10px}

.game-launch-card{display:grid;grid-template-columns:minmax(260px,.8fr) minmax(0,1.2fr);overflow:hidden;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:0 18px 50px rgba(16,49,85,.08)}
.game-launch-card__visual{min-height:380px;display:grid;place-items:center;background:linear-gradient(135deg,#0759b8,#13a4a0);overflow:hidden}
.game-launch-card__visual img{width:100%;height:100%;object-fit:cover}
.game-launch-card__visual>span{font-size:74px}
.game-launch-card__body{align-self:center;padding:34px}
.game-launch-card__body h2{margin:8px 0 10px;color:var(--ink-deep);font-size:34px;line-height:1.12}
.game-launch-card__body>p{color:var(--muted);line-height:1.7}
.game-launch-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:22px 0}
.game-launch-facts span{padding:13px;border:1px solid var(--line);border-radius:14px;background:#f8fbff;color:#667991;font-size:11px;font-weight:750}
.game-launch-facts b{display:block;margin-bottom:4px;color:var(--ink-deep);font-size:20px}

.game-player-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:18px}
.game-player-head h1{margin:5px 0 7px;color:var(--ink-deep);font-size:36px;line-height:1.08}
.game-player-head p{margin:0;color:var(--muted)}
.game-session-status{display:flex;align-items:center;gap:11px;min-width:220px;padding:12px 14px;border:1px solid var(--line);border-radius:16px;background:#fff}
.game-session-status>span{width:11px;height:11px;border-radius:999px;background:#f1a10b;box-shadow:0 0 0 5px rgba(241,161,11,.12)}
.game-session-status>span.is-active,.game-session-status>span.is-complete{background:#16a36a;box-shadow:0 0 0 5px rgba(22,163,106,.12)}
.game-session-status>span.is-error{background:#d94242;box-shadow:0 0 0 5px rgba(217,66,66,.12)}
.game-session-status>span.is-processing{animation:smartgamePulse 1.2s infinite}
.game-session-status small,.game-session-status strong{display:block}
.game-session-status small{color:#7a8b9f;font-size:10px;text-transform:uppercase;letter-spacing:.06em;font-weight:800}
.game-session-status strong{margin-top:2px;color:var(--ink-deep);font-size:13px}
@keyframes smartgamePulse{50%{opacity:.42;transform:scale(.8)}}
.smartgame-player{position:relative;overflow:hidden;min-height:620px;border:1px solid #cfdceb;border-radius:24px;background:#eaf1f8;box-shadow:0 20px 55px rgba(16,49,85,.12)}
.smartgame-player iframe{display:block;width:100%;height:clamp(620px,72vh,840px);border:0;background:#fff;opacity:0;transition:opacity .2s ease}
.smartgame-player iframe.is-ready{opacity:1}
.smartgame-player__loading{position:absolute;z-index:3;inset:0;display:grid;place-content:center;justify-items:center;gap:8px;background:linear-gradient(145deg,#edf6ff,#f8fcff);text-align:center}
.smartgame-player__loading[hidden]{display:none}
.smartgame-player__loading>span{width:44px;height:44px;border:4px solid #cfe1f5;border-top-color:var(--primary);border-radius:999px;animation:smartgameSpin .8s linear infinite}
.smartgame-player__loading strong{color:var(--ink-deep);font-size:18px}
.smartgame-player__loading small{color:var(--muted)}
@keyframes smartgameSpin{to{transform:rotate(360deg)}}
.game-submit-panel,.game-result-card{display:flex;align-items:flex-start;gap:18px;margin-top:20px;padding:22px;border:1px solid #bfe6d4;border-radius:20px;background:#f1fbf6}
.game-submit-panel[hidden]{display:none}
.game-submit-panel.is-error{border-color:#efc3c3;background:#fff6f6}
.game-submit-panel__icon,.game-result-card__icon{flex:0 0 48px;width:48px;height:48px;display:grid;place-items:center;border-radius:15px;background:#16a36a;color:#fff;font-size:23px;font-weight:900}
.game-submit-panel.is-error .game-submit-panel__icon{background:#d94242}
.game-submit-panel h2,.game-result-card h2{margin:4px 0 6px;color:var(--ink-deep);font-size:28px}
.game-submit-panel p,.game-result-card p{margin:0;color:var(--muted)}
.game-earned-badges{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.game-earned-badges span{padding:7px 10px;border-radius:999px;background:#fff;color:#087456;font-size:12px;font-weight:850;box-shadow:0 5px 16px rgba(12,91,68,.08)}
.game-result-actions{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-top:16px}
.game-security-note{margin-top:18px}

.student-leaderboard-table{display:grid;gap:9px}
.leaderboard-row{display:grid;grid-template-columns:54px 48px minmax(0,1fr) auto;align-items:center;gap:12px;padding:12px 15px;border:1px solid var(--line);border-radius:16px;background:#fff}
.leaderboard-row.is-podium{background:linear-gradient(100deg,#fffdf3,#fff)}
.leaderboard-row.is-current{border-color:#7fb8ef;background:#f2f8ff;box-shadow:0 0 0 3px rgba(7,89,184,.07)}
.leaderboard-rank{color:#40566f;font-size:18px;font-weight:900;text-align:center}
.leaderboard-avatar{width:44px;height:44px;display:grid;place-items:center;border-radius:14px;background:#eaf3ff;font-size:22px}
.leaderboard-person strong,.leaderboard-person small{display:block}
.leaderboard-person strong{color:var(--ink-deep);font-size:14px}
.leaderboard-person strong span{display:inline-block;margin-left:5px;padding:3px 6px;border-radius:999px;background:#dceeff;color:#0759b8;font-size:9px;text-transform:uppercase;vertical-align:middle}
.leaderboard-person small{margin-top:3px;color:var(--muted);font-size:11px}
.leaderboard-score{text-align:right}
.leaderboard-score strong,.leaderboard-score small{display:block}
.leaderboard-score strong{color:var(--primary);font-size:21px}
.leaderboard-score small{color:#71839a;font-size:10px;text-transform:uppercase;font-weight:800}

.student-achievement-columns{align-items:start}
.student-badge-grid--dynamic{grid-template-columns:repeat(2,minmax(0,1fr))}
.student-badge-grid--dynamic article{min-height:170px;opacity:1}
.student-badge-grid--dynamic article.is-locked{filter:grayscale(.8);opacity:.55}
.student-badge-grid--dynamic article.is-unlocked{border-color:#b9dfcf;background:#f2fbf7}
.student-badge-grid--dynamic article.is-unlocked>span{background:#dff5ea;color:#087456}
.student-badge-grid--dynamic article>b{margin-top:3px;color:#75869a;font-size:9px;font-weight:800}
.student-history-list{display:grid;gap:9px;margin:16px 0}
.student-history-list article{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px;border:1px solid var(--line);border-radius:14px;background:#f9fbfd}
.student-history-list strong,.student-history-list small,.student-history-list b,.student-history-list span{display:block}
.student-history-list strong{color:var(--ink-deep);font-size:13px}
.student-history-list small{margin-top:3px;color:var(--muted);font-size:10px}
.student-history-list article>div:last-child{text-align:right}
.student-history-list b{color:var(--primary);font-size:16px}
.student-history-list span{color:#087456;font-size:10px;font-weight:850}
.student-game-record-table{display:grid;gap:10px}
.student-game-record-table>article{display:grid;grid-template-columns:minmax(180px,1fr) minmax(180px,1.2fr) 90px;align-items:center;gap:18px;padding:13px 15px;border:1px solid var(--line);border-radius:15px;background:#fff}
.student-game-record-table strong,.student-game-record-table small{display:block}
.student-game-record-table strong{color:var(--ink-deep);font-size:13px}
.student-game-record-table small{margin-top:3px;color:var(--muted);font-size:10px}
.student-game-record-table>article>div:last-child{text-align:right}
.record-progress{display:grid;grid-template-columns:minmax(0,1fr) 46px;align-items:center;gap:10px}
.record-progress>span{height:9px;overflow:hidden;border-radius:999px;background:#e7edf4}
.record-progress i{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#0759b8,#13a4a0)}
.record-progress b{color:var(--primary);font-size:12px;text-align:right}

@media(max-width:900px){
  .game-launch-card{grid-template-columns:1fr}
  .game-launch-card__visual{min-height:260px;max-height:360px}
  .game-player-head{align-items:flex-start;flex-direction:column}
  .game-session-status{width:100%}
  .smartgame-player,.smartgame-player iframe{min-height:560px;height:68vh}
}
@media(max-width:680px){
  .game-launch-card__body{padding:24px}
  .game-launch-card__body h2{font-size:28px}
  .game-launch-facts{grid-template-columns:1fr}
  .game-player-head h1{font-size:29px}
  .smartgame-player{min-height:520px;border-radius:18px}
  .smartgame-player iframe{height:70vh;min-height:520px}
  .leaderboard-row{grid-template-columns:42px 40px minmax(0,1fr);gap:9px;padding:11px}
  .leaderboard-avatar{width:38px;height:38px;border-radius:12px;font-size:19px}
  .leaderboard-score{grid-column:3;text-align:left;display:flex;align-items:baseline;gap:5px}
  .leaderboard-score strong,.leaderboard-score small{display:inline}
  .student-badge-grid--dynamic{grid-template-columns:1fr}
  .student-game-record-table>article{grid-template-columns:1fr}
  .student-game-record-table>article>div:last-child{text-align:left}
  .game-submit-panel,.game-result-card{align-items:flex-start;padding:17px}
}

/* SmartTool Guru v1.19.0 — katalog, projek dan Player */
.teacher-tool-grid--live{align-items:stretch}
.teacher-tool-card--live{grid-template-columns:150px minmax(0,1fr);box-shadow:0 10px 28px rgba(20,53,91,.05);transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}
.teacher-tool-card--live:hover{transform:translateY(-2px);border-color:#b7d2ec;box-shadow:0 16px 36px rgba(20,53,91,.09)}
.teacher-tool-card--live .teacher-tool-card__visual{position:relative;min-height:210px;overflow:hidden}
.teacher-tool-card--live .teacher-tool-card__visual img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.teacher-tool-card--live .teacher-tool-card__visual img+small{position:absolute;z-index:2;left:12px;right:12px;bottom:12px;padding:6px 9px;border-radius:999px;background:rgba(255,255,255,.94);color:#25435f;box-shadow:0 7px 20px rgba(10,40,74,.16)}
.teacher-tool-card__labels{display:flex;align-items:center;flex-wrap:wrap;gap:7px;margin-bottom:10px}
.tool-access-label,.tool-favorite-label{display:inline-flex;align-items:center;min-height:25px;padding:5px 9px;border-radius:999px;font-size:10px;font-weight:850;line-height:1}
.tool-access-label--free{background:#e6f8ef;color:#11704a}
.tool-access-label--manual{background:#edf3ff;color:#245bb0}
.tool-access-label--premium{background:#fff5d9;color:#8a5d08}
.tool-favorite-label{background:#fff8e7;color:#996600}
.tool-card-meta{display:flex;align-items:center;flex-wrap:wrap;gap:8px 14px;margin:0 0 15px;color:#687c93;font-size:10.5px;font-weight:750}
.tool-card-meta span{display:inline-flex;align-items:center;gap:5px}
.tool-card-meta span+span:before{content:"•";margin-right:5px;color:#a2afbd}
.tool-card-actions{display:flex;align-items:center;gap:9px;flex-wrap:wrap;margin-top:auto}
.tool-card-actions form{margin:0}
.tool-favorite-button{width:39px;height:39px;display:grid;place-items:center;border:1px solid #d9e3ee;border-radius:12px;background:#fff;color:#73859b;font-size:20px;line-height:1;cursor:pointer;transition:.18s ease}
.tool-favorite-button:hover,.tool-favorite-button.is-active{border-color:#efce77;background:#fff9e8;color:#b57900}

.teacher-my-tool-list,.teacher-project-list,.teacher-activity-list{display:grid;gap:11px;margin-top:19px}
.teacher-my-tool-list article{display:grid;grid-template-columns:56px minmax(0,1fr) auto;align-items:center;gap:14px;padding:15px;border:1px solid var(--line);border-radius:17px;background:#fbfdff}
.teacher-my-tool-list__icon{width:54px;height:54px;display:grid;place-items:center;border-radius:16px;background:linear-gradient(145deg,#eaf2ff,#e7f8f5);color:var(--primary);font-size:24px;font-weight:900;overflow:hidden}
.teacher-my-tool-list__icon img{width:100%;height:100%;object-fit:cover}
.teacher-my-tool-list h3,.teacher-project-list h3{margin:0 0 4px;color:var(--ink-deep);font-size:15px}
.teacher-my-tool-list p,.teacher-project-list p{margin:0;color:var(--muted);font-size:11.5px;line-height:1.55}
.teacher-my-tool-list__actions,.teacher-project-actions{display:flex;align-items:center;justify-content:flex-end;gap:8px;flex-wrap:wrap}
.teacher-my-tool-list__actions form,.teacher-project-actions form{margin:0}

.teacher-files-layout{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);gap:17px;align-items:start}
.teacher-project-list article{display:grid;grid-template-columns:50px minmax(0,1fr) auto;align-items:center;gap:13px;padding:14px;border:1px solid var(--line);border-radius:16px;background:#fff}
.teacher-project-list__icon{width:48px;height:48px;display:grid;place-items:center;border-radius:14px;background:#edf6ff;color:#1769ba;font-size:21px;font-weight:900}
.teacher-project-list time{display:block;margin-top:4px;color:#8493a4;font-size:10px}
.teacher-project-actions .button{min-height:37px}
.teacher-project-delete{min-height:37px;padding:8px 11px;border:1px solid #efc7cc;border-radius:11px;background:#fff7f8;color:#a43744;font-size:11px;font-weight:850;cursor:pointer}
.teacher-activity-list article{display:grid;grid-template-columns:13px minmax(0,1fr) auto;align-items:start;gap:10px;padding:12px 0;border-bottom:1px solid #e7edf4}
.teacher-activity-list article:last-child{border-bottom:0}
.teacher-activity-dot{width:10px;height:10px;margin-top:4px;border-radius:999px;background:#1a80cf;box-shadow:0 0 0 4px rgba(26,128,207,.1)}
.teacher-activity-list strong,.teacher-activity-list small{display:block}
.teacher-activity-list strong{color:var(--ink-deep);font-size:12.5px}
.teacher-activity-list small{margin-top:3px;color:var(--muted);font-size:10.5px;line-height:1.5}
.teacher-activity-list time{color:#8795a5;font-size:9.5px;white-space:nowrap}

.smarttool-launch-card{display:grid;grid-template-columns:minmax(270px,.82fr) minmax(0,1.18fr);overflow:hidden;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:0 18px 50px rgba(16,49,85,.08)}
.smarttool-launch-visual{min-height:400px;display:grid;place-items:center;overflow:hidden;background:linear-gradient(135deg,#0759b8,#13a4a0);color:#fff}
.smarttool-launch-visual img{width:100%;height:100%;object-fit:cover}
.smarttool-launch-visual>span{font-size:76px;font-weight:900}
.smarttool-launch-copy{align-self:center;padding:36px}
.smarttool-launch-copy h1{margin:8px 0 11px;color:var(--ink-deep);font-size:36px;line-height:1.12}
.smarttool-launch-copy>p{margin:0;color:var(--muted);font-size:15px;line-height:1.72}
.smarttool-capabilities{display:flex;flex-wrap:wrap;gap:8px;margin:22px 0}
.smarttool-capabilities span{padding:7px 11px;border:1px solid #d7e5f3;border-radius:999px;background:#f5f9fe;color:#41617f;font-size:10.5px;font-weight:800}
.smarttool-player-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:18px}
.smarttool-player-head h1{margin:5px 0 7px;color:var(--ink-deep);font-size:36px;line-height:1.08}
.smarttool-player-head p{margin:0;color:var(--muted)}
.smarttool-session-badge{display:flex;align-items:center;gap:11px;min-width:235px;padding:12px 14px;border:1px solid var(--line);border-radius:16px;background:#fff}
.smarttool-session-badge>span{width:11px;height:11px;border-radius:999px;background:#16a36a;box-shadow:0 0 0 5px rgba(22,163,106,.12)}
.smarttool-session-badge small,.smarttool-session-badge strong{display:block}
.smarttool-session-badge small{color:#1a7d58;font-size:9px;font-weight:900;letter-spacing:.08em}
.smarttool-session-badge strong{margin-top:2px;color:var(--ink-deep);font-size:11px}
.smarttool-player{position:relative;overflow:hidden;min-height:690px;border:1px solid #cfdbe8;border-radius:23px;background:#f4f7fb;box-shadow:0 18px 48px rgba(14,46,82,.08)}
.smarttool-player iframe{display:block;width:100%;height:76vh;min-height:690px;border:0;background:#fff;opacity:0;transition:opacity .2s ease}
.smarttool-player iframe.is-ready{opacity:1}
.smarttool-player-loading{position:absolute;z-index:2;inset:0;display:grid;place-items:center;align-content:center;gap:9px;background:linear-gradient(145deg,#f6faff,#ecf8f6);text-align:center}
.smarttool-player-loading[hidden]{display:none}
.smarttool-player-loading>span{width:44px;height:44px;border:4px solid #cfe1f5;border-top-color:var(--primary);border-radius:999px;animation:smartgameSpin .8s linear infinite}
.smarttool-player-loading strong{color:var(--ink-deep);font-size:18px}
.smarttool-player-loading small{color:var(--muted)}
.smarttool-host-message{display:grid;grid-template-columns:46px minmax(0,1fr);align-items:start;gap:13px;margin-top:15px;padding:16px;border:1px solid #efc4c4;border-radius:17px;background:#fff5f5}
.smarttool-host-message[hidden]{display:none}
.smarttool-host-message>span{width:44px;height:44px;display:grid;place-items:center;border-radius:13px;background:#d94242;color:#fff;font-weight:900}
.smarttool-host-message strong{display:block;color:#7f2525;font-size:14px}
.smarttool-host-message p{margin:4px 0 0;color:#875555;font-size:12px;line-height:1.6}
.smarttool-security-note{margin-bottom:5px}

@media(max-width:980px){
  .teacher-files-layout{grid-template-columns:1fr}
  .smarttool-launch-card{grid-template-columns:1fr}
  .smarttool-launch-visual{min-height:280px;max-height:390px}
  .smarttool-player-head{align-items:flex-start;flex-direction:column}
  .smarttool-session-badge{width:100%}
}
@media(max-width:760px){
  .teacher-tool-card--live{grid-template-columns:115px minmax(0,1fr)}
  .teacher-tool-card--live .teacher-tool-card__visual{min-height:190px}
  .teacher-my-tool-list article,.teacher-project-list article{grid-template-columns:48px minmax(0,1fr)}
  .teacher-my-tool-list__actions,.teacher-project-actions{grid-column:2;justify-content:flex-start}
  .smarttool-launch-copy{padding:26px}
  .smarttool-launch-copy h1,.smarttool-player-head h1{font-size:30px}
  .smarttool-player,.smarttool-player iframe{min-height:600px}
  .smarttool-player iframe{height:72vh}
}
@media(max-width:480px){
  .teacher-tool-card--live{grid-template-columns:1fr}
  .teacher-tool-card--live .teacher-tool-card__visual{min-height:155px}
  .tool-card-actions{justify-content:space-between}
  .teacher-my-tool-list article,.teacher-project-list article{grid-template-columns:42px minmax(0,1fr);padding:12px}
  .teacher-my-tool-list__icon,.teacher-project-list__icon{width:42px;height:42px;border-radius:12px;font-size:18px}
  .teacher-activity-list article{grid-template-columns:10px minmax(0,1fr)}
  .teacher-activity-list time{grid-column:2}
  .smarttool-launch-visual{min-height:220px}
  .smarttool-launch-copy{padding:21px}
  .smarttool-player{min-height:540px;border-radius:18px}
  .smarttool-player iframe{height:72vh;min-height:540px}
}
.teacher-my-tool-list__copy>span{display:block;margin-bottom:4px;color:#66809a;font-size:9.5px;font-weight:850;letter-spacing:.055em;text-transform:uppercase}
.teacher-my-tool-list__copy>small{display:block;margin-top:6px;color:#8190a1;font-size:10px}

/* =========================================================
   CikguAnita.my Playful Learning Landing — September 2026
   Visual direction: warm orange/yellow, rounded cards, doodles,
   Fredoka headings + Nunito body, mobile-first refinements.
   ========================================================= */
body.page-utama {
    --play-blue: #0f57b7;
    --play-blue-deep: #083c8d;
    --play-orange: #ff6d13;
    --play-orange-2: #ff9800;
    --play-yellow: #ffc928;
    --play-cream: #fffaf0;
    --play-green: #33b95b;
    --play-pink: #f74491;
    --play-cyan: #52cbee;
    --play-ink: #0d3477;
    margin: 0;
    background: var(--play-cream);
    color: #163a70;
    font-family: "Nunito", Poppins, ui-sans-serif, system-ui, sans-serif;
}
body.page-utama .page-container { width: min(1240px, calc(100% - 48px)); }
body.page-utama .alert-stack { position: relative; z-index: 70; padding-top: 110px; }

/* Floating white header inside the orange hero */
body.page-utama .playful-site-header {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1240px, calc(100% - 48px));
    transform: translateX(-50%);
    z-index: 60;
    border: 0;
    border-radius: 0 0 42px 42px;
    background: rgba(255,253,246,.98);
    box-shadow: 0 12px 34px rgba(122,70,0,.10);
    backdrop-filter: blur(8px);
}
body.page-utama .playful-site-header .site-header__inner {
    width: 100%;
    min-height: 92px;
    padding: 0 28px;
    gap: 28px;
}
.play-brand { display: inline-flex; align-items: center; gap: 9px; min-width: 0; }
.play-brand__sun { color: #ffad00; font: 900 29px/1 "Fredoka", sans-serif; transform: translateY(-8px) rotate(-15deg); text-shadow: 8px 8px 0 rgba(255,173,0,.15); }
.play-brand__copy { display: grid; line-height: 1; }
.play-brand__copy strong { white-space: nowrap; font: 700 clamp(27px,3.2vw,40px)/.9 "Fredoka", sans-serif; letter-spacing: -.045em; }
.play-brand__copy strong span { color: var(--play-blue); }
.play-brand__copy strong em { color: var(--play-orange); font-style: normal; }
.play-brand__copy strong b { color: var(--play-blue); font-size: .72em; }
.play-brand__copy small { margin-top: 8px; color: #183c78; font-size: 12px; font-weight: 900; letter-spacing: .04em; }
body.page-utama .playful-site-nav { align-self: center; gap: 6px; }
body.page-utama .playful-site-nav .site-nav__links { display: flex; align-items: center; }
body.page-utama .playful-site-nav a { min-height: 44px; padding: 0 18px; color: #0d3477; font-size: 15px; font-weight: 900; }
body.page-utama .playful-site-nav a::after { display: none; }
body.page-utama .playful-site-nav a:hover { color: var(--play-orange); }
.play-header-login {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    color: #fff !important;
    background: linear-gradient(180deg,#2683e2,#0c56bd);
    box-shadow: 0 12px 24px rgba(12,86,189,.20);
    font-weight: 900;
}
.play-user-icon { position: relative; width: 17px; height: 17px; display: inline-block; flex: 0 0 17px; }
.play-user-icon::before { content:""; position:absolute; width:7px; height:7px; border-radius:50%; background:currentColor; left:5px; top:0; }
.play-user-icon::after { content:""; position:absolute; width:15px; height:8px; border-radius:9px 9px 4px 4px; background:currentColor; left:1px; bottom:0; }
body.page-utama .play-header-login .play-user-icon { color:#fff; }
body.page-utama .site-nav__mobile-actions { display: none; }

/* Hero */
.playful-home { overflow: hidden; }
.play-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 34%, rgba(255,255,255,.16) 0 3px, transparent 4px),
        linear-gradient(128deg,#ff9b00 0%,#ffad05 38%,#ffc116 100%);
}
.play-grid { position: absolute; inset: 0; opacity: .23; background-image: linear-gradient(rgba(255,255,255,.65) 2px,transparent 2px),linear-gradient(90deg,rgba(255,255,255,.65) 2px,transparent 2px); background-size: 125px 125px; transform: translateX(54%); }
.play-hero__inner { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0,1.04fr) minmax(340px,.88fr) minmax(190px,.42fr); gap: 22px; align-items: end; min-height: 720px; padding-top: 132px; padding-bottom: 78px; }
.play-hero__copy { align-self: center; padding-bottom: 16px; }
.play-handnote { display: inline-block; max-width: 280px; margin-bottom: 12px; color: #fff; font: 600 22px/1.22 "Fredoka", cursive; letter-spacing: .01em; transform: rotate(-4deg); text-shadow: 0 2px 0 rgba(164,80,0,.08); }
.play-hero__brand { margin: 4px 0 7px; color: var(--play-blue); font: 700 clamp(50px,6.15vw,82px)/.88 "Fredoka", sans-serif; letter-spacing: -.065em; white-space: nowrap; text-shadow: 0 5px 0 #fff,4px 0 0 #fff,-4px 0 0 #fff,0 -4px 0 #fff,0 4px 0 #fff,0 10px 22px rgba(99,61,0,.12); }
.play-hero__brand .brand-orange { color: #ff5d10; }
.play-hero__brand .brand-dot { font-size: .61em; letter-spacing: -.04em; }
.play-hero__copy h2 { margin: 17px 0 13px; color: #062e73; font: 700 clamp(22px,2.2vw,29px)/1.12 "Fredoka", sans-serif; letter-spacing: -.025em; }
.play-hero__copy > p { max-width: 520px; margin: 0; color: #163a70; font-size: 17px; font-weight: 700; line-height: 1.47; }
.play-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.play-button { min-height: 56px; display:inline-flex; align-items:center; justify-content:center; gap:10px; padding: 12px 22px; border-radius:999px; font:700 16px/1 "Fredoka",sans-serif; transition: transform .18s ease, box-shadow .18s ease; }
.play-button:hover { transform: translateY(-2px); }
.play-button--blue { color:#fff; background:linear-gradient(180deg,#1b72d8,#0754b7); box-shadow:0 12px 24px rgba(7,84,183,.24); }
.play-button--white { color:#0c3f91; background:#fffdf6; box-shadow:0 12px 26px rgba(135,74,0,.14); }
.play-button b { font-size:20px; }
.play-hero__trust { display:flex; align-items:flex-start; gap:22px; margin-top:24px; }
.play-hero__trust > span { display:flex; align-items:center; gap:9px; color:#0a356f; font-size:12px; line-height:1.13; }
.trust-icon { width:34px; height:34px; display:grid; place-items:center; flex:0 0 34px; color:#0754b7; font-style:normal; font-size:18px; font-weight:900; }
.trust-icon--heart { color:#f44586; font-size:23px; }
.trust-icon--people { color:#0754b7; font-size:13px; letter-spacing:-4px; }

.play-hero__portrait-wrap { position: relative; align-self: end; height: 570px; min-width: 0; }
.play-hero__portrait { position:absolute; z-index:4; left:50%; bottom:-15px; width:min(440px,116%); max-width:none; transform:translateX(-50%); object-fit:contain; filter: drop-shadow(6px 0 0 #fff) drop-shadow(-6px 0 0 #fff) drop-shadow(0 6px 0 #fff) drop-shadow(0 -6px 0 #fff) drop-shadow(0 20px 22px rgba(89,53,0,.18)); }
.play-plane { position:absolute; z-index:2; left:-26px; top:12px; color:#fff; font-size:84px; transform:rotate(-38deg); opacity:.95; text-shadow:0 2px 0 rgba(0,0,0,.03); }
.play-speech { position:absolute; z-index:8; right:-40px; bottom:5px; min-width:220px; padding:18px 22px 19px; border:4px solid #fff; border-radius:48% 52% 50% 45% / 47% 48% 52% 53%; color:#1759b4; background:#fffdf8; box-shadow:0 10px 26px rgba(107,66,0,.12); font:600 17px/1.25 "Fredoka",sans-serif; text-align:center; transform:rotate(-6deg); }
.play-speech strong { font-weight:600; }
.play-speech span { position:absolute; right:16px; bottom:7px; color:#ff6d28; font-size:21px; }
.play-badges { align-self:center; position:relative; z-index:9; display:grid; gap:10px; padding-bottom:62px; }
.play-badge { min-height:54px; display:grid; place-items:center; padding:8px 14px; border:5px solid #fff; border-radius:18px; color:#0c397c; font:700 18px/1.02 "Fredoka",sans-serif; text-align:center; box-shadow:0 7px 16px rgba(106,60,0,.14); transform:rotate(-2deg); }
.play-badge:nth-child(even) { transform:rotate(2deg); }
.play-badge--pink { color:#fff; background:#f64aa1; }
.play-badge--pink b { margin-left:5px; color:#ff1c39; text-shadow:0 0 0 #fff; }
.play-badge--cyan { background:#5ed4f2; }
.play-badge--yellow { background:#ffd42f; }
.play-badge--green { background:#62dc8c; }
.play-lightbulb { position:absolute; right:3px; top:-104px; color:#fff; font-size:68px; line-height:1; transform:rotate(8deg); }
.play-side-note { justify-self:end; margin-top:18px; margin-right:6px; color:#fff; font:600 19px/1.1 "Fredoka",sans-serif; text-align:center; transform:rotate(-8deg); }
.play-doodle { position:absolute; z-index:2; color:rgba(255,255,255,.93); font-family:"Fredoka",sans-serif; pointer-events:none; }
.play-doodle--star { left:2.5%; top:18%; font-size:72px; transform:rotate(-15deg); }
.play-doodle--heart { right:-7px; top:42%; font-size:84px; transform:rotate(10deg); }
.play-doodle--spark { left:2%; bottom:17%; font-size:48px; }
.play-doodle--scribble { right:1%; bottom:11%; font-size:94px; transform:rotate(-17deg); }
.play-hero__wave { position:absolute; z-index:5; left:-2%; right:-2%; bottom:-51px; height:115px; border-radius:50% 50% 0 0 / 50% 50% 0 0; background:#fffaf0; transform:rotate(-1deg); }

/* Products */
.play-products { position:relative; padding:70px 0 36px; background:#fffaf0; }
.play-section-heading { position:relative; max-width:900px; margin:0 auto 34px; text-align:center; }
.play-section-heading h2 { margin:0; color:#0d55b3; font:700 clamp(38px,5vw,58px)/1 "Fredoka",sans-serif; letter-spacing:-.045em; }
.play-section-heading h2 em { color:#ff6412; font-style:normal; }
.play-section-heading p { margin:13px 0 0; color:#204b86; font-size:16px; font-weight:700; }
.heading-rays { position:absolute; left:5%; top:-7px; color:#f9a500; font-size:50px; transform:rotate(35deg); }
.play-product-grid { display:grid; grid-template-columns:1.05fr 1fr .75fr; gap:20px; align-items:stretch; }
.play-product-card { position:relative; min-width:0; min-height:590px; display:flex; flex-direction:column; overflow:hidden; padding:28px 18px 18px; border:1px solid rgba(29,77,126,.08); border-radius:22px; box-shadow:0 16px 34px rgba(87,64,19,.08); }
.play-product-card--kabima { background:linear-gradient(150deg,#ffdc36,#ffbd15); }
.play-product-card--smartplay { background:linear-gradient(180deg,#cff4ff 0 51%,#e9fff1 100%); }
.play-product-card--coming { background:linear-gradient(160deg,#d9f0ff,#cfe6ff 66%,#eaf5ff); }
.product-ribbon { position:absolute; z-index:5; left:14px; top:14px; padding:7px 15px; border-radius:8px; color:#fff; font:700 13px/1 "Fredoka",sans-serif; transform:rotate(-4deg); box-shadow:0 6px 12px rgba(0,0,0,.08); }
.product-ribbon--pink { background:#f54275; }
.product-ribbon--green { background:#10a34c; }
.product-ribbon--blue { background:#61a5e7; }
.product-doodle { position:absolute; color:#fff; font-size:55px; }
.product-doodle--one { right:22px; top:31px; transform:rotate(10deg); }
.kabima-wordmark { margin:52px 0 3px; text-align:center; font:700 clamp(40px,4.7vw,64px)/.95 "Fredoka",sans-serif; letter-spacing:-.085em; filter:drop-shadow(0 4px 0 rgba(255,255,255,.85)); }
.kabima-wordmark span:nth-child(1){color:#7f43a5}.kabima-wordmark span:nth-child(2){color:#ff7a18}.kabima-wordmark span:nth-child(3){color:#126fd2}.kabima-wordmark span:nth-child(4){color:#1faa7d}.kabima-wordmark span:nth-child(5){color:#f14b6f}.kabima-wordmark span:nth-child(6){color:#ff7f00}
.product-tagline { position:relative; z-index:2; margin:5px auto 10px; color:#103c80; font-size:14px; line-height:1.18; text-align:center; }
.kabima-visual { position:relative; height:220px; margin:2px 0 10px; }
.kabima-book { position:absolute; left:50%; bottom:8px; width:170px; height:117px; transform:translateX(-50%) rotate(-3deg); border:8px solid #fff; border-radius:16px 16px 28px 28px; background:linear-gradient(90deg,#38bdeb 0 49%,#fff 49% 51%,#4a80e8 51%); box-shadow:0 14px 20px rgba(101,67,0,.12); }
.kabima-book::before,.kabima-book::after{content:"";position:absolute;top:15px;width:44px;height:5px;border-radius:5px;background:rgba(255,255,255,.75);box-shadow:0 15px 0 rgba(255,255,255,.55),0 30px 0 rgba(255,255,255,.55)}
.kabima-book::before{left:20px}.kabima-book::after{right:20px}.kabima-book span{position:absolute;left:50%;top:44px;transform:translateX(-50%);color:#ffdc38;background:#175bb9;border:4px solid #fff;border-radius:10px;padding:5px 9px;font:700 20px/1 "Fredoka",sans-serif;z-index:3}
.kabima-pencil { position:absolute; left:16%; top:56px; color:#fff; font-size:55px; transform:rotate(-16deg); }
.kabima-chips { position:absolute; right:2px; top:20px; display:grid; gap:4px; }
.kabima-chips b { padding:4px 8px; border-radius:999px; background:#fff8; color:#4c4380; font:700 10px/1 "Fredoka",sans-serif; text-align:center; }
.kabima-chips b:nth-child(2){color:#135cae}.kabima-chips b:nth-child(3){color:#1e8a62}.kabima-chips b:nth-child(4){color:#cc4d78}.kabima-chips b:nth-child(5){color:#a87409}
.product-mini-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:auto; }
.product-mini-grid a { min-height:104px; display:block; padding:12px 10px; border-radius:16px; color:#164581; background:#fffdf7; box-shadow:0 8px 18px rgba(102,71,0,.08); text-align:center; }
.product-mini-grid b { display:block; font-size:12px; }
.product-mini-grid b span { color:#0b61be; }
.product-mini-grid small { display:block; margin-top:5px; font-size:10.5px; font-weight:700; line-height:1.35; }
.product-cta { min-height:50px; display:flex; align-items:center; justify-content:center; gap:8px; margin-top:10px; border-radius:999px; font:700 16px/1 "Fredoka",sans-serif; transition:transform .18s ease; }
.product-cta:hover { transform:translateY(-2px); }
.product-cta--orange { color:#fff; background:linear-gradient(180deg,#ff8015,#f6640c); }
.product-cta--green { color:#fff; background:linear-gradient(180deg,#49c86d,#26a84d); }
.product-cta--outline { color:#2762a4; border:2px solid #88bbea; background:rgba(255,255,255,.55); }

.smartplay-wordmark { position:relative; z-index:3; display:grid; margin:54px auto 4px; text-align:center; font-family:"Fredoka",sans-serif; line-height:.92; transform:rotate(-2deg); }
.smartplay-wordmark span { color:#0d478d; font-size:40px; font-weight:700; text-shadow:0 3px 0 #fff,2px 0 0 #fff,-2px 0 0 #fff; }
.smartplay-wordmark strong { color:#51bb42; font-size:38px; text-shadow:0 3px 0 #fff,2px 0 0 #fff,-2px 0 0 #fff; }
.smartplay-clouds span { position:absolute; z-index:1; width:80px; height:35px; border-radius:50px; background:rgba(255,255,255,.82); }
.smartplay-clouds span:nth-child(1){left:-20px;top:148px}.smartplay-clouds span:nth-child(2){right:-24px;top:178px;width:100px}.smartplay-clouds span:nth-child(3){left:42px;top:270px;width:62px;height:28px}
.smartplay-scene { position:relative; height:212px; overflow:hidden; margin-top:2px; }
.smartplay-hill { position:absolute; left:-12%; right:-12%; bottom:-56px; height:140px; border-radius:50% 50% 0 0; background:linear-gradient(#65d975,#3cbd61); }
.smartplay-star { position:absolute; right:18px; top:6px; color:#ffc928; font-size:42px; text-shadow:0 0 0 #fff; }
.smartplay-mosque { position:absolute; z-index:2; left:50%; bottom:22px; width:155px; height:82px; transform:translateX(-50%); border-radius:10px 10px 0 0; background:#fff7de; box-shadow:0 7px 0 rgba(18,126,77,.08); }
.smartplay-mosque::before { content:""; position:absolute; left:44px; top:-43px; width:68px; height:55px; border-radius:55% 55% 20% 20%; background:#61cd76; transform:rotate(45deg); }
.smartplay-mosque::after { content:""; position:absolute; left:66px; top:-52px; width:4px; height:18px; border-radius:4px; background:#ffc928; }
.smartplay-mosque i,.smartplay-mosque b { position:absolute; bottom:0; width:29px; height:70px; background:#fff4ce; border-radius:10px 10px 0 0; }
.smartplay-mosque i{left:-27px}.smartplay-mosque b{right:-27px}.smartplay-mosque em{position:absolute;left:65px;bottom:0;width:26px;height:42px;border-radius:20px 20px 0 0;background:#41b865}
.smart-feature-row { position:relative; z-index:3; display:grid; grid-template-columns:repeat(4,1fr); gap:5px; margin-top:auto; padding:8px 6px; border-radius:14px; background:rgba(255,255,255,.92); }
.smart-feature-row span { min-width:0; text-align:center; color:#285085; }
.smart-feature-row i { width:36px; height:36px; display:grid; place-items:center; margin:0 auto 5px; border-radius:11px; color:#fff; background:#4bc16d; font-style:normal; font-size:15px; }
.smart-feature-row span:nth-child(2) i{background:#7ad76c}.smart-feature-row span:nth-child(3) i{background:#42b9dc}.smart-feature-row span:nth-child(4) i{background:#318bdd}
.smart-feature-row b { display:block; font-size:9px; line-height:1.2; }

.coming-stars { position:absolute; left:20px; top:70px; color:#fff; font-size:34px; }
.coming-title { margin:76px auto 0; color:#0d3d84; font:700 26px/1.12 "Fredoka",sans-serif; text-align:center; }
.coming-gift { position:relative; width:155px; height:120px; margin:58px auto 36px; border-radius:18px; background:linear-gradient(145deg,#75bfff,#2e83dc); box-shadow:0 14px 25px rgba(34,98,166,.17); }
.coming-gift::before { content:""; position:absolute; left:-8px; right:-8px; top:-22px; height:38px; border-radius:12px; background:#398fdc; }
.coming-gift::after { content:""; position:absolute; left:69px; top:-23px; width:17px; height:143px; background:#ffd342; }
.coming-gift span { position:absolute; z-index:3; left:50%; top:50%; transform:translate(-50%,-50%); width:54px; height:54px; display:grid; place-items:center; border-radius:50%; color:#2c75c2; background:#fff; font:700 36px/1 "Fredoka",sans-serif; }
.play-product-card--coming > p { margin:auto auto 20px; max-width:260px; color:#275588; font-size:12px; font-weight:700; text-align:center; line-height:1.5; }

/* Value strip + footer */
.play-values { padding:18px 0 48px; background:#fffaf0; }
.play-values__grid { display:grid; grid-template-columns:repeat(4,1fr); }
.play-values article { min-height:130px; display:flex; align-items:center; justify-content:center; gap:12px; padding:16px 20px; text-align:left; }
.play-values article + article { border-left:1px solid #e8dfcf; }
.value-circle { width:54px; height:54px; display:grid; place-items:center; flex:0 0 54px; border-radius:50%; color:#fff; font-style:normal; font-size:23px; box-shadow:0 7px 15px rgba(67,57,34,.10); }
.value-circle--pink{background:#ee4f83}.value-circle--green{background:#4fc56d;font-size:13px;letter-spacing:-3px}.value-circle--orange{background:#f8a20a}.value-circle--blue{background:#267dcc}
.play-values h3 { margin:0; color:#0d3a81; font:700 17px/1.14 "Fredoka",sans-serif; }
.play-values p { margin:5px 0 0; color:#244e83; font-size:12px; font-weight:700; line-height:1.35; }
.play-footer { position:relative; color:#fff; background:#0c55b7; font-family:"Nunito",sans-serif; }
.play-footer__wave { position:absolute; z-index:1; left:-2%; right:-2%; top:-33px; height:67px; border-radius:50% 50% 0 0 / 65% 65% 0 0; background:#0c55b7; transform:rotate(.5deg); }
.play-footer__main { position:relative; z-index:2; min-height:130px; display:grid; grid-template-columns:1fr 1.25fr .55fr; gap:28px; align-items:center; padding-top:26px; padding-bottom:24px; }
.play-brand--footer .play-brand__copy strong span,.play-brand--footer .play-brand__copy strong b { color:#fff; }
.play-brand--footer .play-brand__copy strong em { color:#ff8b18; }
.play-brand--footer .play-brand__copy small { color:#fff; opacity:.9; }
.play-footer blockquote { margin:0; color:#fff; font:600 15px/1.5 "Fredoka",sans-serif; text-align:center; font-style:italic; }
.play-footer blockquote span { color:#ff9815; font-size:20px; }
.play-footer__social { display:flex; justify-content:flex-end; gap:10px; }
.play-footer__social a,.play-footer__social span { width:42px; height:42px; display:grid; place-items:center; border-radius:50%; color:#0c55b7; background:#fff; font-style:normal; font-weight:900; }
.play-footer__bottom { position:relative; z-index:2; color:#14437e; background:#e4f2ff; font-size:11px; font-weight:700; }
.play-footer__bottom .page-container { min-height:52px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.play-footer__bottom nav { display:flex; gap:18px; }
.play-footer__bottom a:hover { color:#ff6515; }

/* Tablet */
@media (max-width: 1080px) {
    body.page-utama .playful-site-header .site-header__inner { min-height:84px; padding:0 20px; }
    body.page-utama .playful-site-nav a { padding:0 11px; }
    .play-header-login { padding-inline:16px; min-height:48px; }
    .play-hero__inner { grid-template-columns:minmax(0,1fr) minmax(310px,.84fr) 165px; gap:8px; min-height:680px; padding-top:118px; }
    .play-hero__portrait-wrap { height:525px; }
    .play-speech { right:-8px; min-width:190px; font-size:15px; }
    .play-badge { min-height:48px; padding:7px 8px; font-size:15px; border-width:4px; }
    .play-product-grid { grid-template-columns:1fr 1fr; }
    .play-product-card--coming { grid-column:1/-1; min-height:430px; display:grid; grid-template-columns:1fr 1fr; grid-template-rows:auto 1fr auto; align-items:center; padding:36px 48px; }
    .play-product-card--coming .product-ribbon { grid-column:1/-1; }
    .coming-title { grid-column:1; margin:45px 0 0; font-size:31px; }
    .coming-gift { grid-column:2; grid-row:2; margin:40px auto 0; }
    .play-product-card--coming > p { grid-column:1; margin:10px auto 0; font-size:13px; }
    .play-product-card--coming .product-cta { grid-column:1/-1; width:min(420px,100%); justify-self:center; }
    .play-values__grid { grid-template-columns:1fr 1fr; }
    .play-values article:nth-child(3) { border-left:0; border-top:1px solid #e8dfcf; }
    .play-values article:nth-child(4) { border-top:1px solid #e8dfcf; }
}

/* Mobile navigation + stacked visual */
@media (max-width: 820px) {
    body.page-utama .page-container { width:min(100% - 28px,1240px); }
    body.page-utama .playful-site-header { width:calc(100% - 20px); border-radius:0 0 28px 28px; }
    body.page-utama .playful-site-header .site-header__inner { min-height:74px; padding:0 14px; }
    .play-brand__copy strong { font-size:28px; }
    .play-brand__copy small { margin-top:5px; font-size:8px; }
    .play-brand__sun { font-size:22px; }
    body.page-utama .desktop-login { display:none; }
    body.page-utama .menu-button { display:flex; width:44px; height:44px; border:0; color:#fff; background:#0c59ba; border-radius:14px; }
    body.page-utama .menu-button span:not(.sr-only) { background:#fff; }
    body.page-utama .playful-site-nav { position:fixed; z-index:80; left:10px; right:10px; top:78px; display:none; padding:14px; border-radius:20px; background:#fffdf7; box-shadow:0 20px 45px rgba(66,44,14,.18); }
    body.page-utama .playful-site-header.menu-open .playful-site-nav { display:grid; }
    body.page-utama .playful-site-nav .site-nav__links { display:grid; }
    body.page-utama .playful-site-nav a { min-height:47px; padding:0 14px; border-radius:12px; }
    body.page-utama .site-nav__mobile-actions { display:grid; margin-top:8px; }
    body.page-utama .site-nav__mobile-actions .play-header-login { min-height:49px; color:#fff!important; }

    .play-hero { min-height:auto; }
    .play-grid { transform:none; background-size:90px 90px; }
    .play-hero__inner { display:grid; grid-template-columns:1fr; min-height:auto; padding-top:112px; padding-bottom:88px; }
    .play-hero__copy { position:relative; z-index:10; text-align:center; padding:0; }
    .play-handnote { margin:0 auto 12px; font-size:18px; }
    .play-hero__brand { white-space:normal; font-size:clamp(48px,14vw,70px); text-align:center; }
    .play-hero__copy h2 { font-size:23px; }
    .play-hero__copy > p { margin-inline:auto; font-size:16px; }
    .play-hero__actions,.play-hero__trust { justify-content:center; }
    .play-hero__portrait-wrap { order:2; height:455px; margin-top:10px; }
    .play-hero__portrait { width:min(430px,105%); bottom:-7px; }
    .play-plane { left:7%; top:18px; font-size:58px; }
    .play-speech { right:2%; bottom:4px; min-width:180px; font-size:14px; }
    .play-badges { order:3; grid-template-columns:1fr 1fr; max-width:520px; margin:-12px auto 0; padding:0; }
    .play-badge { min-height:50px; }
    .play-lightbulb,.play-side-note { display:none; }
    .play-doodle--heart { display:none; }
    .play-hero__wave { bottom:-54px; }
    .play-products { padding-top:62px; }
    .play-section-heading h2 { font-size:42px; }
    .play-product-grid { grid-template-columns:1fr; max-width:590px; margin-inline:auto; }
    .play-product-card { min-height:560px; }
    .play-product-card--coming { grid-column:auto; display:flex; min-height:500px; padding:28px 18px 18px; }
    .coming-title { margin:72px auto 0; font-size:27px; }
    .coming-gift { margin:56px auto 34px; }
    .play-product-card--coming > p { margin:auto auto 20px; }
    .play-product-card--coming .product-cta { width:100%; }
    .play-footer__main { grid-template-columns:1fr; gap:18px; justify-items:center; text-align:center; padding-top:34px; padding-bottom:28px; }
    .play-footer__social { justify-content:center; }
    .play-footer__bottom .page-container { flex-direction:column; justify-content:center; padding:14px 0; text-align:center; }
}

@media (max-width: 520px) {
    body.page-utama .playful-site-header { width:calc(100% - 14px); }
    body.page-utama .playful-site-header .site-header__inner { min-height:70px; }
    .play-brand__copy strong { font-size:24px; }
    .play-brand__copy small { max-width:180px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font-size:7.5px; }
    .play-brand__sun { display:none; }
    .play-hero__inner { padding-top:103px; }
    .play-hero__brand { font-size:50px; }
    .play-hero__copy h2 { margin-top:15px; font-size:20px; }
    .play-hero__copy > p { font-size:15.5px; line-height:1.5; }
    .play-hero__actions { display:grid; grid-template-columns:1fr 1fr; gap:9px; }
    .play-button { min-height:52px; padding:10px 12px; font-size:14px; }
    .play-hero__trust { gap:10px; justify-content:space-between; }
    .play-hero__trust > span { gap:4px; font-size:10px; }
    .trust-icon { width:27px; height:27px; flex-basis:27px; font-size:14px; }
    .play-hero__portrait-wrap { height:390px; }
    .play-hero__portrait { width:370px; }
    .play-speech { right:-2%; bottom:-5px; min-width:153px; padding:13px 14px; border-width:3px; font-size:12px; }
    .play-badges { gap:7px; }
    .play-badge { min-height:45px; border-width:3px; border-radius:14px; font-size:13px; }
    .play-section-heading { margin-bottom:25px; }
    .play-section-heading h2 { font-size:36px; }
    .play-section-heading p { font-size:14px; }
    .heading-rays { display:none; }
    .play-product-card { min-height:535px; border-radius:19px; }
    .kabima-wordmark { font-size:54px; }
    .smartplay-wordmark span { font-size:38px; }
    .smartplay-wordmark strong { font-size:36px; }
    .play-values__grid { grid-template-columns:1fr; }
    .play-values article { min-height:105px; justify-content:flex-start; padding:14px 24px; }
    .play-values article + article { border-left:0; border-top:1px solid #e8dfcf; }
    .play-values h3 { font-size:16px; }
    .play-footer__bottom nav { gap:12px; }
}

/* =========================================================
   CikguAnita.my Playful Landing V2 — readability + portrait scale
   - Semua teks yang boleh dibaca pada landing page minimum 16px.
   - Potret Cikgu Anita dibesarkan supaya ruang kosong di bahagian atas
     kolum visual diisi dengan lebih seimbang.
   ========================================================= */
body.page-utama .play-brand__copy small,
body.page-utama .playful-site-nav a,
body.page-utama .play-hero__copy > p,
body.page-utama .play-hero__trust > span,
body.page-utama .play-speech,
body.page-utama .product-ribbon,
body.page-utama .product-tagline,
body.page-utama .kabima-chips b,
body.page-utama .product-mini-grid b,
body.page-utama .product-mini-grid small,
body.page-utama .smart-feature-row b,
body.page-utama .play-product-card--coming > p,
body.page-utama .play-values p,
body.page-utama .play-footer blockquote,
body.page-utama .play-footer__bottom,
body.page-utama .play-footer__bottom a,
body.page-utama .play-section-heading p,
body.page-utama .play-button,
body.page-utama .play-badge {
    font-size: 16px;
}

/* Hero portrait: isi ruang menegak dengan lebih penuh tanpa mengubah aset asal. */
body.page-utama .play-hero__portrait-wrap {
    height: 585px;
}
body.page-utama .play-hero__portrait {
    width: min(540px, 142%);
    bottom: -18px;
}

/* Ruang tambahan untuk teks kad yang kini minimum 16px. */
body.page-utama .play-product-card {
    min-height: 650px;
}
body.page-utama .product-mini-grid a {
    min-height: 132px;
    padding: 14px 12px;
}
body.page-utama .product-mini-grid small {
    line-height: 1.45;
}
body.page-utama .smart-feature-row {
    padding: 12px 8px;
    gap: 8px;
}
body.page-utama .smart-feature-row b {
    line-height: 1.25;
}
body.page-utama .play-values article {
    min-height: 148px;
}
body.page-utama .play-values p {
    line-height: 1.45;
}
body.page-utama .play-footer__bottom .page-container {
    min-height: 64px;
}

@media (max-width: 1080px) {
    body.page-utama .play-hero__portrait-wrap { height: 545px; }
    body.page-utama .play-hero__portrait { width: min(500px, 132%); bottom: -15px; }
    body.page-utama .play-speech,
    body.page-utama .play-badge,
    body.page-utama .play-product-card--coming > p { font-size: 16px; }
}

@media (max-width: 820px) {
    /* Subtitle logo disorok pada skrin sempit supaya tiada teks mikro. */
    body.page-utama .play-brand__copy small { display: none; }
    body.page-utama .play-hero__portrait-wrap { height: 485px; margin-top: 0; }
    body.page-utama .play-hero__portrait { width: min(470px, 112%); bottom: -10px; }
    body.page-utama .play-speech,
    body.page-utama .play-hero__copy > p,
    body.page-utama .play-hero__trust > span,
    body.page-utama .play-button,
    body.page-utama .play-badge,
    body.page-utama .play-section-heading p { font-size: 16px; }
    body.page-utama .play-product-card { min-height: 650px; }
}

@media (max-width: 520px) {
    body.page-utama .play-hero__portrait-wrap { height: 430px; }
    body.page-utama .play-hero__portrait { width: 430px; bottom: -8px; }
    body.page-utama .play-hero__actions { grid-template-columns: 1fr; }
    body.page-utama .play-hero__trust { display: grid; grid-template-columns: 1fr; gap: 8px; justify-items: center; }
    body.page-utama .play-speech { min-width: 172px; padding: 14px 16px; font-size: 16px; line-height: 1.22; }
    body.page-utama .play-badge { min-height: 50px; font-size: 16px; }
    body.page-utama .play-product-card { min-height: 670px; }
    body.page-utama .play-values h3,
    body.page-utama .play-values p,
    body.page-utama .play-footer blockquote,
    body.page-utama .play-footer__bottom { font-size: 16px; }
}

/* =========================================================
   CikguAnita.my Playful Landing V3 — desktop portrait balance
   Potret dibesarkan lagi pada desktop supaya mengisi ruang visual
   menegak dan seimbang dengan blok copy di kiri serta badge di kanan.
   Aset gambar asal tidak diubah.
   ========================================================= */
@media (min-width: 1081px) {
    body.page-utama .play-hero__portrait-wrap {
        height: 610px;
    }

    body.page-utama .play-hero__portrait {
        width: min(690px, 178%);
        left: 49%;
        bottom: -20px;
    }
}

/* =========================================================
   CikguAnita.my — Global Playful Learning Theme V4
   September 2026
   Digunakan pada semua halaman awam, akaun, Ruang Murid dan
   Ruang Guru supaya pengalaman visual sepadan dengan landing page.
   ========================================================= */
:root {
    --ink: #10366f;
    --ink-deep: #082e72;
    --muted: #5d6f86;
    --muted-soft: #7d8b9d;
    --primary: #0f5fcb;
    --primary-dark: #08489e;
    --primary-soft: #eaf4ff;
    --teal: #2dbf7d;
    --teal-soft: #e9fbf3;
    --gold: #ff9b10;
    --gold-soft: #fff1c8;
    --rose: #f34b92;
    --paper: #fffdf7;
    --surface: #fff8e8;
    --surface-2: #fff1c8;
    --line: #eadfc8;
    --success: #11865a;
    --danger: #c03d54;
    --shadow-sm: 0 10px 26px rgba(81, 55, 9, .07);
    --shadow-md: 0 24px 58px rgba(81, 55, 9, .12);
    --radius-sm: 16px;
    --radius: 24px;
    --radius-lg: 32px;
    --play-blue: #0f57b7;
    --play-blue-deep: #083c8d;
    --play-orange: #ff6d13;
    --play-orange-2: #ff9800;
    --play-yellow: #ffc928;
    --play-cream: #fffaf0;
    --play-green: #33b95b;
    --play-pink: #f74491;
    --play-cyan: #52cbee;
}

body:not(.page-utama) {
    background-color: var(--play-cream);
    color: var(--ink);
    font-family: "Nunito", Poppins, ui-sans-serif, system-ui, sans-serif;
    font-size: 16px;
    background-image:
        linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
    background-size: 108px 108px;
}
body:not(.page-utama) h1,
body:not(.page-utama) h2,
body:not(.page-utama) h3,
body:not(.page-utama) h4,
body:not(.page-utama) .button,
body:not(.page-utama) .eyebrow,
body:not(.page-utama) nav,
body:not(.page-utama) strong {
    font-family: "Fredoka", "Nunito", sans-serif;
}
body:not(.page-utama) p,
body:not(.page-utama) li,
body:not(.page-utama) label,
body:not(.page-utama) small,
body:not(.page-utama) td,
body:not(.page-utama) th,
body:not(.page-utama) input,
body:not(.page-utama) select,
body:not(.page-utama) textarea,
body:not(.page-utama) button,
body:not(.page-utama) a,
body:not(.page-utama) .tag,
body:not(.page-utama) .status,
body:not(.page-utama) .eyebrow {
    font-size: 16px;
}
body:not(.page-utama) input,
body:not(.page-utama) select,
body:not(.page-utama) textarea { font-family: "Nunito", sans-serif; }

/* Header seragam */
.theme-site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
    border: 0;
    border-radius: 0 0 34px 34px;
    background: rgba(255,253,246,.98);
    box-shadow: 0 12px 34px rgba(122,70,0,.10);
    backdrop-filter: blur(12px);
}
.theme-site-header .site-header__inner {
    width: 100%;
    min-height: 88px;
    padding: 0 26px;
    gap: 24px;
}
.play-brand--inner .play-brand__copy strong { font-size: 34px; }
.play-brand--inner .play-brand__copy small { color: var(--play-blue-deep); font-size: 16px; }
.theme-site-nav { align-self: stretch; }
.theme-site-nav .site-nav__links { display:flex; align-items:stretch; height:100%; }
.theme-site-nav a {
    color: #0b397e;
    font-weight: 900;
    border-radius: 14px;
}
.theme-site-nav a::after { display:none; }
.theme-site-nav .site-nav__links a { padding-inline: 16px; }
.theme-site-nav .site-nav__links a:hover,
.theme-site-nav .site-nav__links a.is-active {
    color: var(--play-orange);
    background: #fff2c8;
}
.play-header-signup {
    min-height: 48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 10px 18px;
    border: 2px solid #ffd34e;
    border-radius: 999px;
    background:#fff8d9;
    color:#0b3c83 !important;
    font-weight:900;
}

/* Komponen asas */
body:not(.page-utama) .button,
body:not(.page-utama) .btn {
    min-height: 50px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 900;
}
body:not(.page-utama) .button {
    background: linear-gradient(180deg,#1673df,#0c58bd);
    box-shadow: 0 12px 24px rgba(15,87,183,.19);
}
body:not(.page-utama) .button:hover { background: linear-gradient(180deg,#0f66cf,#08489e); }
body:not(.page-utama) .button--secondary {
    color: var(--play-blue-deep);
    background: #fff;
    border: 2px solid #e8dcc5;
    box-shadow: none;
}
body:not(.page-utama) .button--soft { color:var(--play-blue-deep); background:#e8f4ff; box-shadow:none; }
body:not(.page-utama) .eyebrow {
    width: fit-content;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #0a478f;
    background: #ffe27b;
    letter-spacing: .045em;
    text-transform: uppercase;
    font-weight: 900;
}
body:not(.page-utama) .eyebrow::before { width: 10px; height: 10px; border-radius:50%; background:var(--play-orange); }
body:not(.page-utama) .section-heading h2 { color:var(--play-blue-deep); font-family:"Fredoka",sans-serif; }
body:not(.page-utama) .section-heading p { color:#466487; font-size:17px; }
body:not(.page-utama) .section--soft { background: rgba(255,255,255,.56); }
body:not(.page-utama) .section { position:relative; }

/* Hero dalaman */
body:not(.page-utama) .page-hero,
body:not(.page-utama) .arena-public-hero,
body:not(.page-utama) .innovation-list-hero,
body:not(.page-utama) .innovation-detail-hero {
    position:relative;
    isolation:isolate;
    overflow:hidden;
    color: var(--play-blue-deep);
    background:
        linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px),
        linear-gradient(135deg,#ffbc14 0%,#ffa008 52%,#ff8d08 100%) !important;
    background-size:108px 108px,108px 108px,auto !important;
    border-bottom: 0;
}
body:not(.page-utama) .page-hero::after,
body:not(.page-utama) .arena-public-hero::after,
body:not(.page-utama) .innovation-list-hero::after {
    content:"☆";
    position:absolute;
    right:5%;
    top:9%;
    z-index:-1;
    color:rgba(255,255,255,.78);
    font:700 86px/1 "Fredoka",sans-serif;
    transform:rotate(12deg);
    background:none;
    width:auto;
    height:auto;
    border:0;
}
body:not(.page-utama) .page-hero h1,
body:not(.page-utama) .arena-public-hero h1,
body:not(.page-utama) .innovation-list-hero h1,
body:not(.page-utama) .innovation-detail-hero h1 { color:var(--play-blue-deep) !important; font-family:"Fredoka",sans-serif; }
body:not(.page-utama) .page-hero p,
body:not(.page-utama) .arena-public-hero p,
body:not(.page-utama) .innovation-list-hero p,
body:not(.page-utama) .innovation-detail-hero p { color:#164577 !important; font-size:17px; }
body:not(.page-utama) .innovation-list-hero .breadcrumb,
body:not(.page-utama) .innovation-list-hero .breadcrumb a { color:#12467f !important; }
body:not(.page-utama) .innovation-list-hero .eyebrow { color:#0b4389; background:#fff3b8; }
body:not(.page-utama) .innovation-hero-tags span {
    min-height:38px;
    color:#0b4389;
    background:rgba(255,255,255,.72);
    border:2px solid rgba(255,255,255,.88);
    font-size:16px;
}

/* Kad dan permukaan */
body:not(.page-utama) .story-card,
body:not(.page-utama) .innovation-card,
body:not(.page-utama) .help-card,
body:not(.page-utama) .privacy-card,
body:not(.page-utama) .dashboard-card,
body:not(.page-utama) .form-card,
body:not(.page-utama) .summary-card,
body:not(.page-utama) .access-card,
body:not(.page-utama) .arena-collection-card,
body:not(.page-utama) .arena-benefit-card,
body:not(.page-utama) .detail-section,
body:not(.page-utama) .about-profile,
body:not(.page-utama) .student-section-card,
body:not(.page-utama) .student-game-card,
body:not(.page-utama) .student-action-card,
body:not(.page-utama) .student-profile-panel,
body:not(.page-utama) .teacher-section-card,
body:not(.page-utama) .teacher-dashboard-card,
body:not(.page-utama) .teacher-profile-panel,
body:not(.page-utama) .teacher-tool-card,
body:not(.page-utama) .teacher-access-card {
    border: 2px solid #eee0c4;
    border-radius: 24px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 14px 34px rgba(93,62,9,.07);
}
body:not(.page-utama) .story-card:hover,
body:not(.page-utama) .innovation-card:hover,
body:not(.page-utama) .student-action-card:hover,
body:not(.page-utama) .teacher-action-card:hover,
body:not(.page-utama) .teacher-tool-card:hover {
    border-color:#ffc85a;
    box-shadow:0 18px 38px rgba(110,65,0,.11);
}
body:not(.page-utama) .card-icon,
body:not(.page-utama) .help-card__icon,
body:not(.page-utama) .detail-section__icon,
body:not(.page-utama) .arena-benefit-icon {
    border-radius: 16px;
    background:#fff1b7;
    color:#e86c0b;
}
body:not(.page-utama) .tag,
body:not(.page-utama) .status {
    min-height:32px;
    padding:5px 10px;
    border-radius:999px;
    font-size:16px;
    font-weight:850;
}
body:not(.page-utama) .form-card input,
body:not(.page-utama) .form-card select,
body:not(.page-utama) .form-card textarea,
body:not(.page-utama) .field input,
body:not(.page-utama) .field select,
body:not(.page-utama) .field textarea {
    min-height: 52px;
    border:2px solid #e6dbc4;
    border-radius:15px;
    background:#fffdf8;
    color:#173b6e;
    font-size:16px;
}
body:not(.page-utama) .field textarea { min-height:130px; }
body:not(.page-utama) .field label { color:#143f78; font-weight:900; font-size:16px; }
body:not(.page-utama) .field small,
body:not(.page-utama) .form-hint { color:#64758b; font-size:16px; }
body:not(.page-utama) .data-table th,
body:not(.page-utama) .data-table td { font-size:16px; }
body:not(.page-utama) .data-table th { background:#fff7df; color:#31577f; }

/* Arena / kandungan berwarna */
body:not(.page-utama) .arena-status-strip { background:#0d58b8; }
body:not(.page-utama) .arena-status-strip strong,
body:not(.page-utama) .arena-status-strip__inner small,
body:not(.page-utama) .arena-status-strip__inner a { color:#fff !important; font-size:16px; }
body:not(.page-utama) .arena-principle-card {
    border:0;
    border-radius:26px;
    color:#fff;
    background:linear-gradient(145deg,#0e59bb,#0a408e) !important;
    box-shadow:0 18px 42px rgba(11,74,160,.18);
}
body:not(.page-utama) .arena-principle-card blockquote,
body:not(.page-utama) .arena-principle-card strong { color:#fff; }
body:not(.page-utama) .arena-final-cta,
body:not(.page-utama) .cta-panel {
    border-radius:30px;
    background:linear-gradient(135deg,#0f60c9,#0b4ba4) !important;
    color:#fff;
}
body:not(.page-utama) .arena-final-cta h2,
body:not(.page-utama) .cta-panel h2,
body:not(.page-utama) .arena-final-cta p,
body:not(.page-utama) .cta-panel p { color:#fff !important; }

/* Auth / login / daftar / reset */
.auth-page--simple {
    --auth-orange:#ff9b0b;
    --auth-yellow:#ffc928;
    --auth-blue:#0f57b7;
    background:#fff8e9;
}
.auth-page--simple .auth-shell--account {
    min-height:100vh;
    grid-template-columns:minmax(0,1.12fr) minmax(440px,.88fr);
    background:#fff8e9;
}
.auth-page--simple .auth-brand-panel--arena {
    position:relative;
    min-height:100vh;
    padding:48px clamp(34px,5vw,82px);
    color:#0b3d83;
    background:
        linear-gradient(rgba(255,255,255,.24) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px),
        linear-gradient(145deg,#ffb90c,#ff9708 62%,#ff8507) !important;
    background-size:100px 100px,100px 100px,auto !important;
}
.auth-page--simple .auth-brand-panel--arena::before,
.auth-page--simple .auth-brand-panel--arena::after { display:none; }
.auth-grid { position:absolute; inset:0; pointer-events:none; }
.auth-doodle { position:absolute; z-index:0; color:rgba(255,255,255,.88); font:700 70px/1 "Fredoka",sans-serif; }
.auth-doodle--star { right:8%; top:10%; transform:rotate(15deg); }
.auth-doodle--heart { left:6%; bottom:13%; font-size:62px; transform:rotate(-12deg); }
.auth-page--simple .auth-home-link {
    top:28px;
    left:34px;
    color:#0a438e !important;
    padding:8px 13px;
    border-radius:999px;
    background:rgba(255,255,255,.76);
    font-size:16px;
}
.auth-brand-inner { position:relative; z-index:2; width:min(720px,100%); min-height:calc(100vh - 96px); display:flex; flex-direction:column; justify-content:center; padding-top:64px; }
.play-brand--auth { align-self:flex-start; padding:12px 17px; border-radius:20px; background:rgba(255,253,247,.92); box-shadow:0 12px 26px rgba(112,67,0,.11); }
.play-brand--auth .play-brand__copy strong { font-size:38px; }
.play-brand--auth .play-brand__copy small { color:#0c428a; font-size:16px; }
.auth-page--simple .auth-copy { max-width:620px; margin-top:34px; }
.auth-page--simple .auth-kicker {
    display:inline-flex;
    min-height:35px;
    align-items:center;
    padding:6px 12px;
    border-radius:999px;
    color:#0b428b;
    background:#fff0a8;
    font:900 16px/1 "Fredoka",sans-serif;
    text-transform:uppercase;
}
.auth-page--simple .auth-copy h1 {
    max-width:620px;
    margin:16px 0 14px;
    color:#083e86 !important;
    font:700 clamp(42px,4.6vw,64px)/1.03 "Fredoka",sans-serif;
    letter-spacing:-.04em;
}
.auth-page--simple .auth-copy > p { max-width:580px; color:#174c80 !important; font-size:18px; line-height:1.6; font-weight:700; }
.auth-color-badges { display:flex; flex-wrap:wrap; gap:9px; margin-top:24px; }
.auth-color-badges span { min-height:38px; display:inline-flex; align-items:center; padding:7px 12px; border:3px solid #fff; border-radius:14px; color:#063b81; background:#5bccef; box-shadow:0 6px 0 rgba(255,255,255,.38); font:900 16px/1 "Fredoka",sans-serif; }
.auth-color-badges span:nth-child(1){background:#f64a94;color:#fff}.auth-color-badges span:nth-child(3){background:#58d887}
.auth-teacher-visual { position:absolute; z-index:1; right:-30px; bottom:-12px; width:min(360px,44vw); pointer-events:none; }
.auth-teacher-visual img { display:block; width:100%; filter:drop-shadow(5px 0 0 #fff) drop-shadow(-5px 0 0 #fff) drop-shadow(0 5px 0 #fff) drop-shadow(0 -5px 0 #fff) drop-shadow(0 18px 18px rgba(91,55,0,.15)); }
.auth-teacher-note { position:absolute; right:1%; bottom:9%; max-width:210px; padding:12px 16px; border:4px solid #fff; border-radius:25px; color:#1559b2; background:#fffdf7; box-shadow:0 10px 24px rgba(85,51,0,.12); font:700 16px/1.25 "Fredoka",sans-serif; text-align:center; transform:rotate(-5deg); }
.auth-teacher-note b { color:#ff6d20; }
.auth-page--simple .auth-form-panel {
    padding:48px clamp(28px,4vw,62px);
    background:#fffdf8;
}
.auth-page--simple .auth-card {
    width:min(560px,100%);
    padding:34px;
    border:2px solid #eee1c9;
    border-radius:30px;
    background:#fff;
    box-shadow:0 22px 58px rgba(91,61,12,.10);
}
.auth-page--simple .auth-card__top { margin-bottom:18px; }
.auth-page--simple .auth-card__top a,
.auth-page--simple .auth-card__step { font-size:16px; }
.auth-page--simple .auth-heading h2 { color:#073b83; font:700 38px/1.08 "Fredoka",sans-serif; }
.auth-page--simple .auth-heading p,
.auth-page--simple .auth-register-row,
.auth-page--simple .auth-help-row,
.auth-page--simple .auth-switch,
.auth-page--simple .registration-note,
.auth-page--simple .auth-account-note { font-size:16px; }
.auth-page--simple .registration-tabs { gap:10px; }
.auth-page--simple .registration-tabs a { border:2px solid #e8dcc4; border-radius:18px; background:#fffaf0; }
.auth-page--simple .registration-tabs a.is-active { color:#0b4fa7; border-color:#ffc338; background:#fff1b0; box-shadow:0 8px 20px rgba(255,165,0,.10); }
.auth-page--simple .registration-tabs span,
.auth-page--simple .registration-tabs small { font-size:16px; }
.auth-page--simple .password-toggle { min-width:86px; font-size:16px; }

/* Akaun umum */
.account-shell,
.student-shell,
.teacher-shell {
    background:
      linear-gradient(rgba(255,255,255,.20) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.20) 1px, transparent 1px),
      linear-gradient(180deg,#fff4c9 0,#fffaf0 330px,#fffaf0 100%) !important;
    background-size:110px 110px,110px 110px,auto !important;
}
.account-sidebar,
.student-sidebar,
.teacher-sidebar {
    border:2px solid #eadfc9 !important;
    border-radius:26px !important;
    background:#fffdf8 !important;
    box-shadow:0 16px 38px rgba(90,58,8,.08) !important;
}
.account-user__avatar,
.student-avatar,
.teacher-avatar {
    color:#fff !important;
    background:linear-gradient(145deg,#ff8c11,#f64990) !important;
    border-radius:17px !important;
}
.account-nav a,
.account-nav .account-logout-link,
.student-nav a,
.student-logout,
.teacher-nav a,
.teacher-logout {
    min-height:48px !important;
    border-radius:14px !important;
    font-size:16px !important;
}
.account-nav a span,
.student-nav a span,
.teacher-nav a > span,
.teacher-logout > span {
    min-width:30px;
    min-height:30px;
    border-radius:10px !important;
    font-size:16px !important;
}
.account-nav a:hover,.account-nav a.is-active,
.student-nav a:hover,.student-nav a.is-active,
.teacher-nav a:hover,.teacher-nav a.is-active {
    color:#083f88 !important;
    background:#fff0ad !important;
}
.student-nav a.is-active span,
.teacher-nav a.is-active > span { color:#fff !important; background:#0f5fc8 !important; }
.account-head h1,
.student-page-head h1,
.teacher-page-head h1,
.student-welcome h1,
.teacher-welcome h1 { font-family:"Fredoka",sans-serif; }

.student-welcome,
.student-page-head,
.teacher-welcome,
.teacher-page-head {
    position:relative;
    overflow:hidden;
    border:0 !important;
    border-radius:28px !important;
    color:#083d84 !important;
    background:
      linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px),
      linear-gradient(135deg,#ffbd16,#ff9808) !important;
    background-size:90px 90px,90px 90px,auto !important;
    box-shadow:0 18px 42px rgba(105,65,0,.12) !important;
}
.student-welcome::after,
.student-page-head::after,
.teacher-welcome::after,
.teacher-page-head::after {
    content:"☆";
    position:absolute;
    right:24px;
    top:20px;
    color:rgba(255,255,255,.78);
    font:700 58px/1 "Fredoka",sans-serif;
    transform:rotate(14deg);
}
.student-welcome .eyebrow,
.student-page-head .eyebrow,
.teacher-welcome .eyebrow,
.teacher-page-head .eyebrow { color:#0a458e !important; background:#fff4b9; }
.student-welcome h1,.student-page-head h1,.teacher-welcome h1,.teacher-page-head h1 { color:#073c82 !important; }
.student-welcome p,.student-page-head p,.teacher-welcome p,.teacher-page-head p { color:#174b7e !important; font-size:16px !important; font-weight:700; }
.student-metrics article,
.student-page-summary > div,
.teacher-metrics article,
.teacher-page-summary > div,
.account-summary > article {
    border:2px solid #eadfc8 !important;
    border-radius:20px !important;
    background:#fff !important;
    box-shadow:0 10px 24px rgba(81,55,9,.06) !important;
}
.student-metrics article:nth-child(4n+1),.teacher-metrics article:nth-child(4n+1){border-top:6px solid #f44c92 !important}
.student-metrics article:nth-child(4n+2),.teacher-metrics article:nth-child(4n+2){border-top:6px solid #52cbee !important}
.student-metrics article:nth-child(4n+3),.teacher-metrics article:nth-child(4n+3){border-top:6px solid #ffbf20 !important}
.student-metrics article:nth-child(4n+4),.teacher-metrics article:nth-child(4n+4){border-top:6px solid #51ca78 !important}
.student-metrics span,.student-metrics small,.student-page-summary span,
.teacher-metrics span,.teacher-metrics small,.teacher-page-summary span { font-size:16px !important; }
.student-section-head p,.student-action-card p,.student-game-card p,.student-game-card small,.student-note-card p,.student-privacy-banner p,.student-badge-grid strong,.student-badge-grid small,.student-muted-note,.student-leaderboard-placeholder strong,
.teacher-section-head p,.teacher-profile-panel__head p,.teacher-dashboard-card p,.teacher-action-card p,.teacher-empty-large p,.teacher-category-preview span,.teacher-tool-card p,.teacher-access-card p,.teacher-note-card p,.teacher-account-note p,.teacher-account-note a,.teacher-tool-card__visual small,.teacher-metrics small,.teacher-my-tool-list p,.teacher-project-list p,.teacher-project-list time,.teacher-activity-list strong,.teacher-activity-list small,.teacher-activity-list time,.teacher-my-tool-list__copy>span,.teacher-my-tool-list__copy>small {
    font-size:16px !important;
}
.student-game-card__meta span,
.smarttool-capabilities span,
.tool-card-meta,
.tool-card-meta span { font-size:16px !important; }
.student-action-card__icon,
.teacher-action-card__icon { background:#fff0b0 !important; color:#e86b0b !important; }
.teacher-tool-card__visual { background:linear-gradient(145deg,#fff0b0,#e6f5ff) !important; }

/* Footer seragam */
.theme-global-footer { margin-top:42px; }
.theme-global-footer .play-footer__main { grid-template-columns:1.05fr 1.25fr .9fr; }
.theme-footer-links { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:10px; }
.theme-footer-links a { min-height:40px; display:inline-flex; align-items:center; padding:8px 12px; border:1px solid rgba(255,255,255,.26); border-radius:999px; color:#fff; font-size:16px; font-weight:850; }
.theme-footer-links a:hover { background:rgba(255,255,255,.12); }
.theme-global-footer .play-footer__bottom,
.theme-global-footer .play-footer__bottom a,
.theme-global-footer .footer-version { font-size:16px; }

/* Responsif */
@media(max-width:980px){
    .theme-site-header { width:calc(100% - 24px); border-radius:0 0 28px 28px; }
    .theme-site-header .site-header__inner { min-height:76px; padding:0 16px; }
    .play-brand--inner .play-brand__copy strong { font-size:29px; }
    .theme-site-header .desktop-login { display:none; }
    .theme-site-header .menu-button { display:flex; border:0; background:#0d59bb; }
    .theme-site-header .menu-button span:not(.sr-only){background:#fff}
    .theme-site-header .theme-site-nav { position:fixed; z-index:100; left:12px; right:12px; top:82px; display:none; padding:14px; border-radius:22px; background:#fffdf7; box-shadow:0 22px 50px rgba(70,44,7,.18); }
    .theme-site-header.menu-open .theme-site-nav { display:grid; }
    .theme-site-nav .site-nav__links { display:grid; height:auto; }
    .theme-site-nav .site-nav__links a { min-height:48px; display:flex; align-items:center; padding:0 14px; }
    .theme-site-nav .site-nav__mobile-actions { display:grid; gap:8px; margin-top:8px; }
    .auth-page--simple .auth-shell--account { grid-template-columns:1fr; }
    .auth-page--simple .auth-brand-panel--arena { min-height:670px; }
    .auth-brand-inner { min-height:590px; }
    .auth-teacher-visual { width:min(340px,45vw); }
    .theme-global-footer .play-footer__main { grid-template-columns:1fr; justify-items:center; text-align:center; }
    .theme-footer-links { justify-content:center; }
}
@media(max-width:760px){
    body:not(.page-utama) .page-container { width:min(100% - 28px,1180px); }
    .theme-site-header { width:calc(100% - 14px); }
    .play-brand--inner .play-brand__copy strong { font-size:25px; }
    .play-brand--inner .play-brand__copy small { display:none; }
    .auth-page--simple .auth-brand-panel--arena { min-height:720px; padding:34px 22px; }
    .auth-brand-inner { min-height:650px; padding-top:58px; }
    .play-brand--auth .play-brand__copy strong { font-size:32px; }
    .auth-page--simple .auth-copy { margin-top:28px; }
    .auth-page--simple .auth-copy h1 { font-size:44px; }
    .auth-teacher-visual { width:330px; max-width:70vw; right:-26px; }
    .auth-teacher-note { max-width:190px; }
    .auth-page--simple .auth-form-panel { padding:30px 18px 64px; }
    .auth-page--simple .auth-card { padding:25px 20px; border-radius:24px; }
    .account-layout,.student-layout,.teacher-layout { grid-template-columns:1fr !important; }
    .account-sidebar,.student-sidebar,.teacher-sidebar { position:relative !important; top:auto !important; }
    .student-nav,.teacher-nav { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .student-logout-form,.teacher-logout-form { grid-column:1/-1; }
    .student-welcome,.student-page-head,.teacher-welcome,.teacher-page-head { border-radius:23px !important; }
    .theme-global-footer .play-footer__bottom .page-container { align-items:center; }
}
@media(max-width:520px){
    .auth-page--simple .auth-brand-panel--arena { min-height:700px; }
    .auth-brand-inner { min-height:630px; }
    .auth-page--simple .auth-copy h1 { font-size:38px; }
    .auth-page--simple .auth-copy > p { font-size:16px; }
    .auth-color-badges { display:grid; grid-template-columns:1fr; width:min(280px,100%); }
    .auth-teacher-visual { width:285px; max-width:78vw; right:-22px; }
    .auth-teacher-note { right:2%; bottom:8%; max-width:165px; font-size:16px; }
    .student-nav,.teacher-nav { grid-template-columns:1fr; }
    .theme-global-footer .play-footer__bottom nav { flex-wrap:wrap; justify-content:center; }
}

/* =========================================================
   CikguAnita.my Theme V5 — tukar potret kartun Cikgu Anita
   - Guna aset baharu berlatar transparen
   - Besarkan lagi paparan hero supaya lebih seimbang
   - Selaraskan juga visual pada halaman log masuk/akaun
   ========================================================= */
@media (min-width: 1081px) {
    body.page-utama .play-hero__portrait-wrap {
        height: 640px;
    }

    body.page-utama .play-hero__portrait {
        width: min(620px, 160%);
        left: 50%;
        bottom: -18px;
    }
}

@media (max-width: 1080px) {
    body.page-utama .play-hero__portrait-wrap {
        height: 565px;
    }

    body.page-utama .play-hero__portrait {
        width: min(530px, 138%);
        bottom: -14px;
    }
}

@media (max-width: 820px) {
    body.page-utama .play-hero__portrait-wrap {
        height: 500px;
    }

    body.page-utama .play-hero__portrait {
        width: min(475px, 118%);
        bottom: -10px;
    }
}

@media (max-width: 520px) {
    body.page-utama .play-hero__portrait-wrap {
        height: 438px;
    }

    body.page-utama .play-hero__portrait {
        width: 405px;
        bottom: -8px;
    }
}

.auth-teacher-visual {
    width: min(390px, 48vw);
    right: -18px;
    bottom: -8px;
}

.auth-teacher-note {
    right: 2%;
    bottom: 10%;
}

@media (max-width: 980px) {
    .auth-teacher-visual {
        width: min(360px, 48vw);
        right: -18px;
    }
}

@media (max-width: 760px) {
    .auth-teacher-visual {
        width: 340px;
        max-width: 72vw;
        right: -18px;
    }
}

@media (max-width: 520px) {
    .auth-teacher-visual {
        width: 300px;
        max-width: 82vw;
        right: -14px;
    }
}

/* =========================================================
   CikguAnita.my Theme V6 — imej produk KABIMA baharu
   Tukar ilustrasi kad KABIMA kepada poster promosi sebenar
   yang diberi oleh pengguna, tanpa jana gambar baharu.
   ========================================================= */
body.page-utama .play-product-card--kabima {
    padding-top: 28px;
}

body.page-utama .kabima-poster-frame {
    position: relative;
    margin: 56px 0 16px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 253, 247, 0.62);
    box-shadow: 0 14px 30px rgba(100, 66, 0, 0.14);
}

body.page-utama .kabima-poster-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5.05;
    object-fit: cover;
    object-position: center top;
}

body.page-utama .play-product-card--kabima .product-mini-grid {
    margin-top: 0;
}

@media (max-width: 820px) {
    body.page-utama .kabima-poster-frame {
        margin-top: 54px;
    }

    body.page-utama .kabima-poster-frame img {
        aspect-ratio: 4 / 5.2;
    }
}

@media (max-width: 520px) {
    body.page-utama .kabima-poster-frame {
        border-radius: 20px;
    }

    body.page-utama .kabima-poster-frame img {
        aspect-ratio: 4 / 5.3;
    }
}

/* =========================================================
   CikguAnita.my Theme V8 — hero HD Cikgu Anita
   - Aset hero resolusi tinggi dengan latar transparen
   - Ketinggian imej dikawal agar wajah dan laptop seimbang
   - Kedudukan responsif desktop / tablet / telefon
   ========================================================= */
@media (min-width: 1081px) {
    body.page-utama .play-hero__portrait-wrap {
        height: 640px;
    }

    body.page-utama .play-hero__portrait {
        width: auto;
        height: 655px;
        left: 50%;
        bottom: -15px;
        max-width: none;
    }
}

@media (max-width: 1080px) {
    body.page-utama .play-hero__portrait-wrap {
        height: 565px;
    }

    body.page-utama .play-hero__portrait {
        width: auto;
        height: 580px;
        left: 50%;
        bottom: -14px;
        max-width: none;
    }
}

@media (max-width: 820px) {
    body.page-utama .play-hero__portrait-wrap {
        height: 500px;
    }

    body.page-utama .play-hero__portrait {
        width: auto;
        height: 510px;
        left: 50%;
        bottom: -10px;
        max-width: none;
    }
}

@media (max-width: 520px) {
    body.page-utama .play-hero__portrait-wrap {
        height: 430px;
    }

    body.page-utama .play-hero__portrait {
        width: auto;
        height: 438px;
        left: 50%;
        bottom: -8px;
        max-width: none;
    }
}

/* =========================================================
   CikguAnita.my Theme V10 — satu header untuk semua halaman awam
   Visual dan struktur mengikuti header landing page:
   CikguAnita.my | Bahan PdP | Hubungi | Log Masuk / Ruang Akaun
   ========================================================= */
body:not(.page-utama) .public-unified-header {
    position: sticky;
    top: 0;
    left: auto;
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
    transform: none;
    z-index: 70;
    border: 0;
    border-radius: 0 0 42px 42px;
    background: rgba(255,253,246,.98);
    box-shadow: 0 12px 34px rgba(122,70,0,.10);
    backdrop-filter: blur(8px);
}

body:not(.page-utama) .public-unified-header .site-header__inner {
    width: 100%;
    min-height: 92px;
    padding: 0 28px;
    gap: 28px;
}

body:not(.page-utama) .public-unified-header .playful-site-nav {
    align-self: center;
    gap: 6px;
}

body:not(.page-utama) .public-unified-header .playful-site-nav .site-nav__links {
    display: flex;
    align-items: center;
}

body:not(.page-utama) .public-unified-header .playful-site-nav a {
    min-height: 44px;
    padding: 0 18px;
    color: #0d3477;
    font-size: 16px;
    font-weight: 900;
}

body:not(.page-utama) .public-unified-header .playful-site-nav a::after {
    display: none;
}

body:not(.page-utama) .public-unified-header .playful-site-nav a:hover {
    color: var(--play-orange);
}

body:not(.page-utama) .public-unified-header .play-brand__copy small {
    font-size: 16px;
}

body:not(.page-utama) .public-unified-header .play-header-login {
    font-size: 16px;
}

@media (max-width: 980px) {
    body:not(.page-utama) .public-unified-header {
        width: calc(100% - 20px);
        border-radius: 0 0 28px 28px;
    }

    body:not(.page-utama) .public-unified-header .site-header__inner {
        min-height: 74px;
        padding: 0 14px;
    }

    body:not(.page-utama) .public-unified-header .desktop-login {
        display: none;
    }

    body:not(.page-utama) .public-unified-header .menu-button {
        display: flex;
        border: 0;
        background: #0d59bb;
    }

    body:not(.page-utama) .public-unified-header .menu-button span:not(.sr-only) {
        background: #fff;
    }

    body:not(.page-utama) .public-unified-header .playful-site-nav {
        position: fixed;
        z-index: 100;
        left: 10px;
        right: 10px;
        top: 78px;
        display: none;
        padding: 14px;
        border-radius: 20px;
        background: #fffdf7;
        box-shadow: 0 20px 45px rgba(66,44,14,.18);
    }

    body:not(.page-utama) .public-unified-header.menu-open .playful-site-nav {
        display: grid;
    }

    body:not(.page-utama) .public-unified-header .playful-site-nav .site-nav__links {
        display: grid;
    }

    body:not(.page-utama) .public-unified-header .playful-site-nav a {
        min-height: 48px;
        padding: 0 14px;
        border-radius: 12px;
    }
}

@media (max-width: 520px) {
    body:not(.page-utama) .public-unified-header {
        width: calc(100% - 14px);
    }

    body:not(.page-utama) .public-unified-header .site-header__inner {
        min-height: 70px;
    }

    body:not(.page-utama) .public-unified-header .play-brand__copy strong {
        font-size: 25px;
    }

    body:not(.page-utama) .public-unified-header .play-brand__copy small {
        display: none;
    }
}
