@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Sinhala:wght@400;700;900&family=Noto+Sans+Thai:wght@400;700;900&family=Noto+Sans+SC:wght@400;700;900&family=Noto+Sans+Arabic:wght@400;700;900&display=swap');

:root {
      --ink: #172033;
      --ink-2: #283449;
      --muted: #667085;
      --bg: #f5f7fc;
      --panel: #ffffff;
      --line: #e3e8f2;
      --orange: #ff751b;
      --orange-2: #ff9a4a;
      --orange-soft: #fff1e6;
      --blue-soft: #ebf1ff;
      --blue: #4169e1;
      --green: #1c9b6a;
      --shadow: 0 24px 70px rgba(31, 43, 70, .11);
      --shadow-soft: 0 12px 34px rgba(31, 43, 70, .08);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-width: 320px;
      color: var(--ink);
      background:
        radial-gradient(circle at 15% 4%, rgba(255,117,27,.08), transparent 23rem),
        radial-gradient(circle at 90% 22%, rgba(65,105,225,.07), transparent 26rem),
        var(--bg);
      font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.55;
    }
    html[lang="si"] body { font-family: "Noto Sans Sinhala", "Noto Sans", sans-serif; }
    html[lang="th"] body { font-family: "Noto Sans Thai", "Noto Sans", sans-serif; }
    html[lang="zh"] body { font-family: "Noto Sans SC", "Noto Sans", sans-serif; }
    html[lang="ur"] body { font-family: "Noto Sans Arabic", "Noto Sans", sans-serif; }
    html[lang="fil"] body, html[lang="en"] body, html[lang="uz"] body, html[lang="ky"] body { font-family: "Noto Sans", system-ui, sans-serif; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }
    .wrap { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
    .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; }

    .site-header {
      position: sticky; top: 0; z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(245,247,252,.78);
      border-bottom: 1px solid rgba(227,232,242,.8);
    }
    .header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.045em; font-size: 1.08rem; }
    .nav { display: flex; align-items: center; gap: 20px; font-size: .93rem; color: var(--ink-2); font-weight: 700; }
    .nav a { position: relative; padding: 8px 0; }
    .nav a::after { content: ""; position: absolute; left: 0; bottom: 3px; width: 0; height: 2px; background: var(--orange); transition: width .2s ease; }
    .nav a:hover::after { width: 100%; }
    .header-cta { border: 0; border-radius: 999px; padding: 12px 17px; color: white; background: var(--ink); font-weight: 800; box-shadow: 0 9px 18px rgba(23,32,51,.15); }
    .lang-switcher { position: relative; }
    .lang-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--ink-2); font-weight: 800; font-size: .82rem; box-shadow: var(--shadow-soft); }
    .lang-btn__flag { font-size: 1rem; line-height: 1; }
    .lang-btn__caret { color: var(--muted); font-size: .7rem; }
    .lang-menu { position: absolute; right: 0; top: calc(100% + 8px); z-index: 60; min-width: 220px; margin: 0; padding: 8px; list-style: none; border-radius: 16px; border: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
    .lang-menu[hidden] { display: none; }
    .lang-option { display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 12px; border: 0; border-radius: 12px; background: transparent; text-align: left; }
    .lang-option:hover, .lang-option.is-active { background: var(--orange-soft); }
    .lang-option__flag { font-size: 1.1rem; }
    .lang-option__label { display: grid; gap: 2px; }
    .lang-option__label b { font-size: .88rem; letter-spacing: -.02em; }
    .lang-option__label small { color: var(--muted); font-size: .72rem; font-weight: 700; }
    .lang-support { margin-top: 18px; padding: 16px 18px; border-radius: var(--radius-md); background: white; border: 1px solid rgba(227,232,242,.85); box-shadow: var(--shadow-soft); }
    .lang-support__title { margin-bottom: 10px; font-size: .88rem; font-weight: 900; color: var(--ink-2); letter-spacing: -.02em; }
    .lang-support__chips { font-size: .92rem; font-weight: 800; color: var(--orange); line-height: 1.6; }
    body.is-rtl { direction: rtl; }
    body.is-rtl .header-inner, body.is-rtl .nav, body.is-rtl .hero-actions, body.is-rtl .stat-strip, body.is-rtl .feature-row { direction: rtl; }
    body.is-rtl .lang-menu { left: 0; right: auto; }
    .menu-btn { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 14px; background: white; align-items: center; justify-content: center; }

    .hero { padding: 70px 0 54px; position: relative; overflow: clip; }
    .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 64px; min-height: 570px; }
    .eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: var(--orange-soft); color: #d45c12; font-size: .78rem; font-weight: 900; letter-spacing: .06em; }
    .eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,117,27,.12); }
    h1, h2, h3, p { margin-top: 0; }
    h1 { margin: 17px 0 20px; max-width: 770px; font-size: clamp(2.85rem, 5.2vw, 5.35rem); letter-spacing: -.085em; line-height: .99; }
    h1 strong { color: var(--orange); font-weight: 900; }
    .hero-copy { max-width: 650px; font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--muted); line-height: 1.72; }
    .hero-actions { display: flex; gap: 11px; flex-wrap: wrap; margin-top: 31px; }
    .btn { border: 0; border-radius: 999px; padding: 15px 20px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
    .btn:hover { transform: translateY(-3px); }
    .btn-primary { color: white; background: var(--orange); box-shadow: 0 14px 28px rgba(255,117,27,.27); }
    .btn-dark { color: white; background: var(--ink); box-shadow: 0 14px 28px rgba(23,32,51,.16); }
    .btn-light { color: var(--ink); background: white; border: 1px solid var(--line); }
    .hero-note { margin-top: 18px; color: #7a8596; font-size: .87rem; }

    .hero-orbit { position: relative; min-height: 510px; }
    .hero-orbit::before { content: ""; position: absolute; width: 430px; height: 430px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px dashed rgba(255,117,27,.38); border-radius: 50%; }
    .hero-orbit::after { content: ""; position: absolute; width: 330px; height: 330px; left: 53%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.75), rgba(255,240,226,.72) 60%, transparent 61%); }
    .phone { position: absolute; z-index: 2; width: 252px; height: 490px; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(5deg); border: 10px solid #1e2430; border-radius: 39px; background: #f9fbff; box-shadow: 0 36px 70px rgba(20,29,46,.28); overflow: hidden; }
    .phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 106px; height: 22px; background: #1e2430; border-radius: 0 0 12px 12px; z-index: 4; }
    .phone-screen { padding: 36px 15px 16px; height: 100%; background: linear-gradient(180deg,#fff5ef 0%, #f5f8ff 52%, #fff 100%); }
    .phone-brand { display: flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 900; }
    .phone-dot { width: 15px; height: 15px; border-radius: 6px; background: var(--orange); }
    .phone-title { margin: 19px 0 12px; font-size: 18px; line-height: 1.15; letter-spacing: -.07em; font-weight: 900; }
    .phone-user { display: flex; align-items: center; justify-content: space-between; gap: 8px; border-radius: 15px; background: #fff; padding: 11px; box-shadow: 0 10px 18px rgba(41,50,69,.08); font-size: 10px; }
    .phone-avatar { width: 28px; height: 28px; border-radius: 11px; background: linear-gradient(135deg,#ffd1a7,#ff7a20); }
    .phone-list { display: grid; gap: 9px; margin-top: 12px; }
    .phone-row { display: flex; align-items: center; gap: 8px; padding: 10px; border-radius: 14px; background: rgba(255,255,255,.88); box-shadow: 0 8px 14px rgba(41,50,69,.05); font-size: 10px; font-weight: 800; }
    .phone-icon { width: 25px; height: 25px; border-radius: 9px; display: grid; place-items: center; background: var(--orange-soft); color: var(--orange); font-size: 12px; }
    .phone-badge { margin-left: auto; color: var(--green); font-size: 9px; }
    .float-card { position: absolute; z-index: 3; width: 178px; padding: 15px; border-radius: 20px; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.85); box-shadow: var(--shadow); }
    .float-card b { display: block; font-size: .88rem; letter-spacing: -.03em; }
    .float-card span { display: block; margin-top: 4px; color: var(--muted); font-size: .72rem; line-height: 1.45; }
    .fc-1 { left: 0; top: 54px; animation: drift 4.5s ease-in-out infinite; }
    .fc-2 { right: -10px; top: 115px; animation: drift 5.4s ease-in-out .7s infinite; }
    .fc-3 { right: 6px; bottom: 57px; animation: drift 4.9s ease-in-out 1.3s infinite; }
    .float-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 5px; background: var(--orange); }
    .fc-2 .float-dot { background: var(--blue); }
    .fc-3 .float-dot { background: var(--green); }
    @keyframes drift { 50% { transform: translateY(-9px); } }

    .stats { padding: 16px 0 74px; }
    .stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
    .stat { min-height: 130px; padding: 22px 24px; background: rgba(255,255,255,.92); }
    .stat strong { display: block; margin-bottom: 6px; font-size: 1.1rem; letter-spacing: -.04em; }
    .stat span { color: var(--muted); font-size: .86rem; line-height: 1.5; }

    section { padding: 100px 0; }
    .section-head { max-width: 720px; margin-bottom: 42px; }
    .section-kicker { margin-bottom: 11px; color: var(--orange); font-size: .8rem; font-weight: 900; letter-spacing: .07em; }
    h2 { margin-bottom: 16px; font-size: clamp(2.05rem, 3.6vw, 3.75rem); line-height: 1.06; letter-spacing: -.072em; }
    .section-head p { margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.72; }

    .mandate { padding-top: 74px; }
    .mandate-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .mandate-card { min-height: 362px; position: relative; overflow: hidden; padding: 29px; border-radius: var(--radius-xl); background: var(--panel); box-shadow: var(--shadow-soft); border: 1px solid rgba(227,232,242,.8); transition: transform .25s ease, box-shadow .25s ease; }
    a.mandate-card { display: block; text-decoration: none; color: inherit; cursor: pointer; }
    a.mandate-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
    .mandate-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
    .mandate-no { display: block; margin-bottom: 30px; color: var(--orange); font-weight: 900; letter-spacing: -.02em; }
    .mandate-card h3 { margin-bottom: 12px; font-size: 1.56rem; letter-spacing: -.06em; line-height: 1.16; }
    .mandate-card p { color: var(--muted); font-size: .94rem; line-height: 1.7; padding-bottom: 42px; }
    .mandate-icon { position: absolute; right: 20px; bottom: 21px; width: 104px; height: 104px; border-radius: 32px; display: grid; place-items: center; font-size: 39px; background: var(--orange-soft); transform: rotate(-8deg); }
    .mandate-more { position: absolute; left: 29px; bottom: 28px; font-style: normal; font-size: .78rem; font-weight: 900; color: var(--orange); }
    .mandate-card:nth-child(2) .mandate-icon { background: var(--blue-soft); }
    .mandate-card:nth-child(3) .mandate-icon { background: #e9f8f0; }

    .cycle-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.75), transparent); }
    .cycle { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
    .cycle::before { content: ""; position: absolute; top: 63px; left: 8%; right: 8%; border-top: 2px dashed rgba(255,117,27,.4); }
    .cycle-step { position: relative; z-index: 1; min-height: 236px; padding: 21px; border-radius: 24px; border: 1px solid var(--line); background: white; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
    a.cycle-step { display: flex; flex-direction: column; text-decoration: none; color: inherit; cursor: pointer; }
    a.cycle-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
    a.cycle-step:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
    .cycle-step span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 14px; color: white; background: var(--orange); box-shadow: 0 10px 18px rgba(255,117,27,.25); font-size: .84rem; font-weight: 900; }
    .cycle-step h3 { margin-bottom: 7px; font-size: 1.08rem; letter-spacing: -.045em; }
    .cycle-step p { margin: 0; color: var(--muted); font-size: .87rem; line-height: 1.6; flex: 1; }
    .cycle-more { margin-top: 14px; font-style: normal; font-size: .78rem; font-weight: 900; color: var(--orange); }

    .education-layout { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 50px; }
    .feature-list { display: grid; gap: 12px; margin-top: 27px; }
    .feature-row { display: grid; grid-template-columns: 43px 1fr; gap: 12px; align-items: start; padding: 14px; border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-soft); border: 1px solid rgba(227,232,242,.8); transition: transform .22s ease, box-shadow .22s ease; }
    a.feature-row { text-decoration: none; color: inherit; cursor: pointer; }
    a.feature-row:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
    a.feature-row:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
    .feature-row i { width: 43px; height: 43px; border-radius: 14px; display: grid; place-items: center; color: var(--orange); background: var(--orange-soft); font-style: normal; font-size: 19px; }
    .feature-row b { display: block; margin-bottom: 2px; letter-spacing: -.03em; }
    .feature-row span { color: var(--muted); font-size: .86rem; line-height: 1.55; }
    .feature-more { display: block; margin-top: 8px; font-style: normal; font-size: .76rem; font-weight: 900; color: var(--orange); }
    .app-window { position: relative; padding: 20px; min-height: 500px; border-radius: 34px; background: linear-gradient(145deg, #ff7a1e, #ffad70); box-shadow: 0 30px 60px rgba(255,117,27,.22); overflow: hidden; }
    .app-window::before { content: ""; position: absolute; width: 450px; height: 450px; top: -280px; right: -200px; border-radius: 50%; border: 50px solid rgba(255,255,255,.1); }
    .app-shell { position: relative; z-index: 1; height: 100%; min-height: 460px; padding: 24px; border-radius: 25px; background: rgba(255,255,255,.96); box-shadow: 0 22px 44px rgba(105,44,8,.18); }
    .app-topline { display: flex; align-items: center; justify-content: space-between; color: #4a5363; font-size: .78rem; font-weight: 800; }
    .lang-pill { padding: 7px 10px; border-radius: 999px; color: #d35a0d; background: var(--orange-soft); }
    .app-title { margin: 23px 0 18px; font-size: 1.5rem; line-height: 1.16; letter-spacing: -.06em; }
    .task-card { padding: 17px; border-radius: 19px; background: #f7f9fe; border: 1px solid #eaf0fb; }
    .task-card b { display: block; margin-bottom: 6px; font-size: 1rem; }
    .task-card p { margin: 0; color: var(--muted); font-size: .83rem; }
    .checklist { display: grid; gap: 10px; margin-top: 15px; }
    .check { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 13px; background: white; font-size: .85rem; font-weight: 700; box-shadow: 0 6px 12px rgba(42,53,74,.05); }
    .check::before { content: "✓"; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green); font-size: .75rem; }
    .app-cta { width: 100%; margin-top: 18px; padding: 13px; border: 0; border-radius: 14px; color: white; background: var(--orange); font-weight: 900; }

    .support { padding-top: 80px; }
    .support-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 18px; }
    .worker-card { padding: 34px; min-height: 437px; border-radius: var(--radius-xl); background: white; box-shadow: var(--shadow-soft); }
    .profile-top { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
    .profile-info { display: flex; align-items: center; gap: 12px; }
    .profile-avatar { width: 54px; height: 54px; border-radius: 18px; background: linear-gradient(135deg,#6f8cff,#ffbd83); }
    .profile-name b { display: block; font-size: 1.06rem; }
    .profile-name span { color: var(--muted); font-size: .84rem; }
    .status-pill { padding: 7px 10px; border-radius: 999px; color: #087449; background: #e5f8ef; font-size: .78rem; font-weight: 900; white-space: nowrap; }
    .timeline { margin-top: 23px; display: grid; gap: 13px; }
    .timeline-item { display: grid; grid-template-columns: 23px 1fr auto; gap: 10px; align-items: center; padding: 11px 0; }
    .timeline-dot { width: 12px; height: 12px; margin-left: 4px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft); }
    .timeline-item:nth-child(2) .timeline-dot { background: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
    .timeline-item:nth-child(3) .timeline-dot { background: var(--green); box-shadow: 0 0 0 4px #e5f8ef; }
    .timeline-copy b { display: block; font-size: .89rem; }
    .timeline-copy span { color: var(--muted); font-size: .79rem; }
    .timeline-date { color: #7b8494; font-size: .76rem; }
    .legal-card { position: relative; overflow: hidden; padding: 34px; border-radius: var(--radius-xl); color: white; background: linear-gradient(145deg, #222e48, #3b4d78); box-shadow: var(--shadow-soft); }
    .legal-card::before { content: ""; position: absolute; right: -65px; top: -65px; width: 220px; height: 220px; border-radius: 50%; border: 30px solid rgba(255,255,255,.08); }
    .legal-card .section-kicker { color: #ffb77d; }
    .legal-card h3 { margin: 8px 0 15px; font-size: 2rem; letter-spacing: -.07em; line-height: 1.05; }
    .legal-card p { color: rgba(255,255,255,.72); font-size: .94rem; }
    .legal-list { display: grid; gap: 9px; margin: 24px 0; }
    .legal-list div { padding: 12px; border-radius: 14px; background: rgba(255,255,255,.1); font-size: .85rem; }
    .analysis-guide { margin: 16px 0; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); }
    .analysis-guide b { display: block; margin-bottom: 8px; font-size: .9rem; }
    .analysis-guide p { margin: 6px 0 0; font-size: .82rem; line-height: 1.55; opacity: .92; }
    .legal-card .btn { color: var(--ink); background: white; }

    .dash-section { background: #ebeff8; }
    .dashboard-shell { overflow: hidden; border: 1px solid #dfe5ef; border-radius: 30px; background: white; box-shadow: var(--shadow); }
    .dash-tabs { display: flex; gap: 4px; padding: 13px; border-bottom: 1px solid var(--line); background: #f7f9fd; }
    .dash-tab { border: 0; padding: 10px 14px; border-radius: 12px; color: var(--muted); background: transparent; font-weight: 900; font-size: .88rem; }
    .dash-tab.active { color: var(--ink); background: white; box-shadow: 0 4px 12px rgba(40,52,73,.08); }
    .dash-content { display: none; padding: 28px; }
    .dash-content.active { display: block; }
    .dash-title { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 23px; }
    .dash-title h3 { margin: 0; font-size: 1.32rem; letter-spacing: -.055em; }
    .dash-title span { color: var(--muted); font-size: .84rem; }
    .metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
    .metric { padding: 18px; border-radius: 18px; background: #f8faff; border: 1px solid #edf1f8; }
    .metric .label { display: block; margin-bottom: 8px; color: var(--muted); font-size: .77rem; font-weight: 800; }
    .metric strong { display: block; font-size: 1.56rem; letter-spacing: -.06em; }
    .metric em { font-style: normal; color: var(--green); font-size: .75rem; font-weight: 800; }
    .dash-lower { display: grid; grid-template-columns: 1.06fr .94fr; gap: 12px; margin-top: 12px; }
    .dash-panel { min-height: 192px; padding: 20px; border: 1px solid #edf1f8; border-radius: 19px; background: white; }
    .dash-panel h4 { margin: 0 0 15px; font-size: .95rem; letter-spacing: -.035em; }
    .bar-list { display: grid; gap: 13px; }
    .bar-row { display: grid; grid-template-columns: 112px 1fr 40px; gap: 10px; align-items: center; font-size: .78rem; font-weight: 700; }
    .bar { height: 9px; overflow: hidden; border-radius: 999px; background: #eef2f8; }
    .bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--orange), var(--orange-2)); }
    .notice-list { display: grid; gap: 10px; }
    .notice { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid #eff2f6; font-size: .82rem; }
    .notice:last-child { border-bottom: 0; }
    .notice b { font-weight: 800; }
    .notice span { color: var(--orange); font-size: .74rem; font-weight: 900; white-space: nowrap; }

    .report-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 54px; }
    .report-points { display: grid; gap: 12px; margin-top: 26px; }
    .report-point { display: flex; gap: 12px; align-items: flex-start; }
    .report-point i { flex: 0 0 auto; width: 31px; height: 31px; display: grid; place-items: center; border-radius: 11px; color: var(--orange); background: var(--orange-soft); font-style: normal; font-size: .9rem; }
    .report-point b { display: block; margin-bottom: 2px; font-size: .94rem; letter-spacing: -.03em; }
    .report-point span { color: var(--muted); font-size: .84rem; }
    .mail-preview { position: relative; padding: 26px; border-radius: 28px; border: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
    .mail-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
    .mail-head b { font-size: 1rem; }
    .mail-head span { padding: 6px 8px; border-radius: 999px; color: #087449; background: #e5f8ef; font-size: .72rem; font-weight: 900; }
    .mail-meta { display: grid; gap: 7px; padding: 17px 0; color: #70798a; font-size: .82rem; }
    .mail-body { padding: 17px; border-radius: 17px; background: #f7f9fd; color: #404a5b; font-size: .87rem; }
    .mail-body ul { margin: 13px 0 0; padding-left: 17px; }
    .mail-body li + li { margin-top: 6px; }
    .mail-action { margin-top: 16px; padding: 12px; border: 0; border-radius: 14px; color: white; background: var(--ink); font-weight: 900; width: 100%; }

    .cta-band { padding: 0 0 104px; }
    .cta-card { position: relative; overflow: hidden; padding: 56px; border-radius: 38px; color: white; background: linear-gradient(135deg,#ff751b,#ff9e54); box-shadow: 0 28px 60px rgba(255,117,27,.24); }
    .cta-card::before, .cta-card::after { content: ""; position: absolute; border-radius: 50%; border: 42px solid rgba(255,255,255,.11); }
    .cta-card::before { width: 370px; height: 370px; right: -140px; top: -200px; }
    .cta-card::after { width: 260px; height: 260px; left: -120px; bottom: -160px; }
    .cta-card > * { position: relative; z-index: 1; }
    .cta-card h2 { max-width: 770px; margin-bottom: 16px; font-size: clamp(2rem, 3.7vw, 3.8rem); }
    .cta-card p { max-width: 620px; color: rgba(255,255,255,.8); font-size: 1.03rem; }
    .cta-card .hero-actions { margin-top: 27px; }
    .cta-card .btn-primary { color: var(--ink); background: white; box-shadow: 0 12px 24px rgba(154,62,0,.18); }
    .cta-card .btn-light { color: white; border-color: rgba(255,255,255,.4); background: transparent; }

    .site-footer { padding: 59px 0 31px; color: #c9d2df; background: #171f31; }
    .footer-grid { display: grid; grid-template-columns: 1.45fr .7fr .8fr; gap: 35px; padding-bottom: 36px; }
    .footer-brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 0; color: white; font-weight: 900; letter-spacing: -.045em; }
    .footer-copy { max-width: 440px; margin: 16px 0 0; color: #aeb8c7; font-size: .86rem; line-height: 1.68; }
    .footer-title { margin: 4px 0 13px; color: white; font-size: .88rem; font-weight: 900; }
    .footer-links { display: grid; gap: 8px; color: #aeb8c7; font-size: .84rem; }
    .footer-links a:hover { color: white; }
    .footer-contact { color: #aeb8c7; font-size: .84rem; line-height: 1.8; }
    .footer-bottom { padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); color: #7f8ba1; font-size: .78rem; }

    .modal-backdrop { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 20px; background: rgba(14,20,33,.52); backdrop-filter: blur(5px); }
    .modal-backdrop.open { display: grid; }
    .modal { width: min(530px,100%); max-height: min(780px,calc(100vh - 40px)); overflow: auto; padding: 28px; border-radius: 25px; background: white; box-shadow: 0 28px 80px rgba(8,13,24,.28); }
    .modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
    .modal h3 { margin: 0; font-size: 1.45rem; letter-spacing: -.055em; }
    .modal-close { width: 35px; height: 35px; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--muted); }
    .modal p { margin: 10px 0 19px; color: var(--muted); font-size: .9rem; }
    .form-grid { display: grid; gap: 12px; }
    .field label { display: block; margin-bottom: 6px; color: #4c5668; font-size: .8rem; font-weight: 900; }
    .field input, .field select, .field textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--line); outline: 0; border-radius: 12px; color: var(--ink); background: #fbfcff; }
    .field textarea { min-height: 100px; resize: vertical; }
    .form-note { margin-top: 10px; color: #8a94a3; font-size: .76rem; }
    .submit-note { display: none; margin-top: 11px; padding: 10px 12px; border-radius: 12px; color: #087449; background: #e5f8ef; font-size: .83rem; font-weight: 800; }
    .submit-note.show { display: block; }

    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 1040px) {
      .nav { gap: 13px; font-size: .85rem; }
      .hero-grid { gap: 25px; }
      .hero-orbit { transform: scale(.9); transform-origin: center; }
      .cycle { grid-template-columns: repeat(2,1fr); }
      .cycle::before { display: none; }
      .metric-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 820px) {
      .nav, .header-cta { display: none; }
      .lang-switcher { margin-left: auto; }
      .menu-btn { display: inline-flex; }
      .nav.open { position: absolute; top: 70px; left: 22px; right: 22px; display: grid; gap: 3px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow); }
      .nav.open a { padding: 11px; }
      .hero { padding-top: 46px; }
      .hero-grid, .education-layout, .support-grid, .report-grid { grid-template-columns: 1fr; }
      .hero-orbit { width: min(530px,100%); margin: 0 auto; transform: none; }
      .mandate-grid { grid-template-columns: 1fr; }
      .mandate-card { min-height: 280px; }
      .stat-strip { grid-template-columns: repeat(2,1fr); }
      .dash-lower { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid > :first-child { grid-column: 1 / -1; }
    }
    @media (max-width: 560px) {
      .wrap { width: min(100% - 30px, var(--max)); }
      .header-inner { height: 66px; }
      .brand { font-size: .99rem; }
      h1 { font-size: clamp(2.48rem, 13vw, 3.62rem); }
      section { padding: 72px 0; }
      .hero-grid { min-height: auto; }
      .hero-orbit { min-height: 450px; transform: scale(.85); transform-origin: top center; margin-bottom: -55px; }
      .float-card { width: 151px; padding: 12px; }
      .fc-1 { left: -8px; top: 34px; }
      .fc-2 { right: -12px; top: 98px; }
      .fc-3 { right: -2px; bottom: 60px; }
      .stats { padding-bottom: 56px; }
      .stat-strip { grid-template-columns: 1fr; }
      .stat, .stat-btn { min-height: 92px; }
      .cycle { grid-template-columns: 1fr; }
      .app-window { min-height: 460px; padding: 13px; }
      .app-shell { min-height: 434px; padding: 17px; }
      .worker-card, .legal-card { padding: 25px; }
      .metric-grid { grid-template-columns: 1fr 1fr; }
      .dash-content { padding: 17px; }
      .bar-row { grid-template-columns: 86px 1fr 32px; font-size: .72rem; }
      .cta-card { padding: 37px 24px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-grid > :first-child { grid-column: auto; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    }

    .stat-btn {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      width: 100%;
      min-height: 130px;
      padding: 22px 24px;
      border: 0;
      background: rgba(255,255,255,.92);
      color: inherit;
      cursor: pointer;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    }
    .stat-btn:hover { transform: translateY(-4px); background: #fff; box-shadow: var(--shadow-soft); }
    .stat-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
    .stat-btn strong { display: block; margin-bottom: 6px; font-size: 1.1rem; letter-spacing: -.04em; }
    .stat-btn span { color: var(--muted); font-size: .86rem; line-height: 1.5; }
    .stat-btn em { margin-top: auto; padding-top: 12px; font-style: normal; font-size: .78rem; font-weight: 900; color: var(--orange); }

    .detail-hero { padding: 54px 0 36px; }
    .detail-back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 18px; color: var(--muted); font-size: .88rem; font-weight: 800; }
    .detail-back:hover { color: var(--orange); }
    .detail-body { padding: 36px 0 100px; }
    .detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
    .detail-card { padding: 24px; border-radius: var(--radius-lg); background: white; border: 1px solid rgba(227,232,242,.85); box-shadow: var(--shadow-soft); }
    .detail-card h3 { margin-bottom: 10px; font-size: 1.15rem; letter-spacing: -.04em; }
    .detail-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }
    .detail-list { display: grid; gap: 12px; margin-top: 28px; }
    .detail-list li { padding: 14px 16px; border-radius: var(--radius-md); background: white; border: 1px solid var(--line); box-shadow: var(--shadow-soft); font-size: .9rem; font-weight: 700; }

    @media (max-width: 820px) { .detail-grid { grid-template-columns: 1fr; } }

    /* ── Korean typography: space-first line breaks (PC + mobile) ── */
    html[lang="ko"] {
      word-break: keep-all;
      overflow-wrap: break-word;
      line-break: strict;
      -webkit-line-break: after-white-space;
      hyphens: none;
    }
    html[lang="ko"] h1,
    html[lang="ko"] h2,
    html[lang="ko"] h3,
    html[lang="ko"] .section-title,
    html[lang="ko"] .detail-hero h1 {
      text-wrap: balance;
      word-break: keep-all;
      overflow-wrap: break-word;
    }
    html[lang="ko"] p,
    html[lang="ko"] li,
    html[lang="ko"] .hero-copy,
    html[lang="ko"] .stat-btn span,
    html[lang="ko"] .mandate-card p,
    html[lang="ko"] .cycle-step p,
    html[lang="ko"] .feature-row p,
    html[lang="ko"] .detail-card p,
    html[lang="ko"] .detail-list li,
    html[lang="ko"] .worker-card p,
    html[lang="ko"] .legal-card p,
    html[lang="ko"] .cta-card p {
      text-wrap: pretty;
      word-break: keep-all;
      overflow-wrap: break-word;
    }
    html[lang="ko"] .stat-btn strong,
    html[lang="ko"] .mandate-card h3,
    html[lang="ko"] .cycle-step h3,
    html[lang="ko"] .feature-row h3,
    html[lang="ko"] .detail-card h3,
    html[lang="ko"] button,
    html[lang="ko"] .btn {
      word-break: keep-all;
      overflow-wrap: break-word;
    }
    html:not([lang="ko"]) {
      word-break: normal;
      overflow-wrap: anywhere;
      hyphens: auto;
    }
    [data-lang-fixed="ko"],
    [data-i18n-scope="admin"] {
      word-break: keep-all;
      overflow-wrap: break-word;
      line-break: strict;
      hyphens: none;
    }
    @media (max-width: 820px) {
      html[lang="ko"] h1 { letter-spacing: -.06em; line-height: 1.2; }
      html[lang="ko"] h2,
      html[lang="ko"] .section-title { line-height: 1.15; }
      html[lang="ko"] p,
      html[lang="ko"] .hero-copy { line-height: 1.75; }
      html[lang="ko"] .stat-btn,
      html[lang="ko"] .mandate-card,
      html[lang="ko"] .cycle-step,
      html[lang="ko"] .detail-card { padding-left: 18px; padding-right: 18px; }
      html[lang="ko"] .stat-btn span,
      html[lang="ko"] .mandate-card p,
      html[lang="ko"] .cycle-step p,
      html[lang="ko"] .detail-card p,
      html[lang="ko"] .detail-list li { line-height: 1.72; font-size: .88rem; }
      html[lang="ko"] .detail-hero h1 { line-height: 1.22; }
    }
