:root {
    --bg: #f4f7fb;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --surface-soft: #f7f9fc;
    --text: #111827;
    --muted: #667085;
    --line: rgba(15, 23, 42, 0.08);
    --brand: #1463ff;
    --brand-dark: #0f4fd1;
    --accent: #00c2a8;
    --accent-soft: rgba(20, 99, 255, 0.10);
    --warning-soft: rgba(0, 194, 168, 0.12);
    --shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
    --shadow-soft: 0 10px 30px rgba(17, 24, 39, 0.05);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --emoji-font: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Noto Emoji", emoji;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family:
        "Noto Sans KR",
        "Apple SD Gothic Neo",
        "Malgun Gothic",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Noto Color Emoji",
        "Noto Emoji",
        emoji,
        sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(20, 99, 255, 0.10), transparent 26%),
        radial-gradient(circle at top right, rgba(0, 194, 168, 0.08), transparent 24%),
        linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
    font-size: 15px;
    line-height: 1.58;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.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;
}

.wrap {
    width: min(1280px, calc(100% - 28px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(244, 247, 251, 0.76);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: 20px;
}

.logo a {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-decoration: none;
    color: var(--text);
    text-shadow: 2px 2px 0 rgba(15, 23, 42, 0.18), 10px 12px 22px rgba(15, 23, 42, 0.22);
}

.gnb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gnb a {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    transition: 0.2s ease;
}

.gnb a:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
}

.global-search-bar {
    padding: 10px 0 0;
}

.global-search-form {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.global-search-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
}

.global-search-label span[aria-hidden="true"],
.global-search-icon,
.global-search-field button span[aria-hidden="true"],
.global-loading-title span[aria-hidden="true"] {
    font-family: var(--emoji-font);
    font-variant-emoji: emoji;
}

.global-search-copy p {
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
}

.global-search-field {
    display: flex;
    gap: 10px;
    align-items: stretch;
    flex-wrap: nowrap;
}

.global-search-select,
.global-search-input {
    position: relative;
    width: 100%;
    min-width: 0;
}

.global-search-select {
    flex: 0 0 170px;
    max-width: 170px;
}

.global-search-input {
    flex: 1 1 auto;
}

.global-search-icon {
    position: absolute;
    left: 14px;
    top: 0;
    width: 20px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    overflow: hidden;
    pointer-events: none;
}

.global-search-field select,
.global-search-field input {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    font-size: 13px;
    color: var(--text);
    outline: none;
}

.global-search-select select,
.global-search-input input {
    padding-left: 42px;
}

.global-search-field select:focus,
.global-search-field input:focus {
    border-color: rgba(20, 99, 255, 0.34);
    box-shadow: 0 0 0 4px rgba(20, 99, 255, 0.12);
}

.global-search-field select,
.hero-search select,
.inline-search select {
    flex: 0 0 170px;
    width: 170px;
    cursor: pointer;
}

.global-search-field button {
    flex: 0 0 auto;
    min-width: 104px;
    height: 50px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand) 0%, #3b82f6 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.global-search-field button span[aria-hidden="true"] {
    font-size: 14px;
    line-height: 1;
    transform: translateY(-1px);
}

.page-content {
    padding: 14px 0 44px;
}

.global-loading {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background:
        radial-gradient(circle at 30% 20%, rgba(20, 99, 255, 0.12), transparent 44%),
        rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(6px);
    z-index: 9999;
}

.global-loading.is-active {
    display: flex;
}

.global-loading-card {
    width: min(420px, 100%);
    border-radius: 22px;
    padding: 18px 18px 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.22);
    color: var(--text);
}

.global-loading-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.global-loading-sub {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
}

.global-loading-bar {
    margin-top: 14px;
    height: 10px;
    border-radius: 999px;
    background: rgba(20, 99, 255, 0.12);
    overflow: hidden;
    border: 1px solid rgba(20, 99, 255, 0.18);
}

.global-loading-bar span {
    display: block;
    height: 100%;
    width: 42%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(20, 99, 255, 0.40), rgba(20, 99, 255, 0.95), rgba(59, 130, 246, 0.60));
    animation: globalLoadingBar 0.9s ease-in-out infinite alternate;
}

@keyframes globalLoadingBar {
    0% { transform: translateX(-20%); }
    100% { transform: translateX(140%); }
}

.page-content .wrap {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
}

.footer {
    --footer-bg: #111827;
    --footer-text: #94a3b8;
    --footer-soft: #cbd5e1;
    --footer-border: #334155;
    --footer-dark: #0f172a;
    --footer-hover: #475569;
    --footer-primary: #3b82f6;

    margin-top: 48px;
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 3.25rem 0 2rem;
    line-height: 1.6;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.footer-logo {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--footer-soft);
}

.footer-links h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s;
}

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

.cc-main-name {
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.biz-info-list,
.cs-info-list {
    font-size: 0.85rem;
}

.work-time {
    font-size: 0.85rem;
}

.cc-note {
    margin-top: 1.4rem;
    padding-top: 0.9rem;
    border-top: 1px dashed var(--footer-border);
}

.cc-note p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--footer-soft);
}

.cc-toggle-btn {
    background: var(--footer-border);
    color: #fff;
    border: 0;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.cc-toggle-btn:hover {
    background: var(--footer-hover);
}

.cc-slide-area {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--footer-dark);
    border-radius: 8px;
    margin-top: 10px;
}

.cc-form-box {
    padding: 15px;
    font-size: 0.8rem;
}

.cc-form-text {
    background: #1e293b;
    border: 1px solid var(--footer-border);
    padding: 10px;
    border-radius: 6px;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.cc-copy-btn {
    width: 100%;
    padding: 8px;
    background: var(--footer-primary);
    color: #fff;
    border: 0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.cc-copy-btn:hover {
    opacity: 0.92;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--footer-border);
    font-size: 0.8rem;
    color: #64748b;
}

.copyright strong {
    color: #94a3b8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, var(--brand) 0%, #3b82f6 100%);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.01em;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(20, 99, 255, 0.22);
}

.btn:hover {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2563eb 100%);
}

.btn-secondary {
    background: #eef3ff;
    color: var(--brand);
    box-shadow: none;
}

.section-kicker,
.hero-kicker,
.editorial-note-label,
.card-index,
.summary-card span,
.metric-label,
.detail-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: var(--brand);
    letter-spacing: 0.08em;
}

.content-section + .content-section {
    margin-top: 18px;
}

.hero-section,
.list-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 28px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.16), transparent 18%),
        linear-gradient(135deg, #0f172a 0%, #13254d 52%, #1463ff 100%);
    color: #f8fbff;
}

.hero-copy {
    width: 100%;
    max-width: 760px;
}

.hero-section::after,
.list-hero::after,
.detail-hero::after {
    content: "";
    position: absolute;
    inset: auto -80px -110px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 168, 0.28), transparent 70%);
    pointer-events: none;
}

.hero-copy h2,
.list-hero h2,
.detail-hero h2 {
    max-width: 100%;
    font-size: clamp(18px, 2.1vw, 26px);
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.hero-copy p,
.list-hero p,
.detail-hero p {
    margin-top: 14px;
    max-width: 560px;
    font-size: 12px;
    color: rgba(248, 251, 255, 0.76);
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(248, 251, 255, 0.64);
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: rgba(248, 251, 255, 0.84);
    margin-bottom: 8px;
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f8fbff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.hero-search,
.inline-search {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.hero-search select,
.inline-search select,
.hero-search input,
.inline-search input {
    width: 100%;
    min-width: 0;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0 16px;
    font-size: 14px;
    color: var(--text);
    outline: none;
}

.hero-search button,
.inline-search button {
    flex: 0 0 auto;
    min-width: 104px;
    height: 52px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #00c2a8 0%, #3dd9c3 100%);
    color: #062d27;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.hero-links a {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #f8fbff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.hero-panel,
.list-summary {
    display: grid;
    gap: 14px;
    align-content: start;
}

.editorial-note,
.detail-aside-note,
.metric-card,
.search-panel,
.feature-card,
.biz-card,
.summary-card,
.detail-table-card,
.side-card,
.empty-state {
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.editorial-note,
.detail-aside-note {
    padding: 20px;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.16);
    color: #f8fbff;
    box-shadow: none;
}

.editorial-note-label {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(248, 251, 255, 0.62);
}

.editorial-note p {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(248, 251, 255, 0.84);
}

.hero-facts {
    display: grid;
    gap: 14px;
}

.metric-card {
    padding: 18px;
}

.metric-card.accent {
    background:
        linear-gradient(180deg, rgba(20, 99, 255, 0.06) 0%, rgba(255,255,255,1) 100%);
}

.metric-label {
    color: var(--muted);
}

.metric-value {
    margin-top: 8px;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.metric-desc,
.metric-list span,
.side-copy,
.empty-state p,
.biz-card p,
.feature-card p {
    color: var(--muted);
    font-size: 13px;
}

.metric-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.search-panel {
    padding: 14px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.section-head h3 {
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-link {
    font-size: 12px;
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
}

.biz-card-grid,
.feature-grid,
.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.biz-card,
.feature-card,
.summary-card,
.detail-table-card,
.side-card,
.empty-state {
    padding: 18px;
}

.biz-card {
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.biz-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.10);
    border-color: rgba(20, 99, 255, 0.16);
}

.biz-card strong,
.feature-card strong,
.summary-card strong {
    display: block;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.biz-card p {
    margin: 10px 0 14px;
    line-height: 1.6;
}

.editorial-card {
    min-height: 214px;
}

.card-index {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--muted);
}

.card-meta-line {
    display: grid;
    gap: 4px;
    padding-top: 12px;
    margin-bottom: 14px;
    border-top: 1px solid #eef2f7;
}

.card-meta-line span,
.card-meta-line em {
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
}

.card-meta-line em {
    color: var(--muted);
}

.feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.feature-card p {
    margin-top: 10px;
}

.summary-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.summary-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

.home-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 22px;
    padding: 36px;
    border-radius: 32px;
    box-shadow: 0 28px 60px rgba(20, 99, 255, 0.12);
    color: #f8fbff;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(7, 13, 28, 0.78) 0%, rgba(12, 29, 66, 0.62) 52%, rgba(20, 99, 255, 0.28) 100%),
        linear-gradient(180deg, rgba(8, 15, 32, 0.06) 0%, rgba(8, 15, 32, 0.22) 100%);
}

.home-hero::after {
    content: "";
    position: absolute;
    right: -56px;
    bottom: -72px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    pointer-events: none;
}

.home-hero-copy,
.home-hero-panel,
.home-hero-facts {
    position: relative;
    z-index: 1;
}

.home-hero-copy {
    max-width: 640px;
    padding-top: 8px;
}

.home-hero-kicker,
.hero-showcase-label,
.home-feature-step,
.home-panel-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: rgba(255, 248, 251, 0.74);
}

.home-hero-kicker-icon {
    font-size: 12px;
    line-height: 1;
    letter-spacing: normal;
    transform: translateY(-1px);
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 700;
}

.home-hero-badge-icon {
    font-size: 14px;
    line-height: 1;
    transform: translateY(-1px);
}

.home-hero h2 {
    margin-top: 16px;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.05em;
}

.home-hero p {
    margin-top: 16px;
    max-width: 560px;
    color: rgba(255, 248, 251, 0.84);
    font-size: 15px;
    line-height: 1.75;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.home-hero-primary {
    background: linear-gradient(135deg, #ffffff 0%, #edf3ff 100%);
    color: #0f4fd1;
    box-shadow: 0 16px 30px rgba(15, 79, 209, 0.16);
}

.home-hero-primary:hover {
    background: linear-gradient(135deg, #f8fbff 0%, #dbe8ff 100%);
}

.home-hero-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #f8fbff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.home-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.home-hero-trust > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 11px;
    font-weight: 700;
}

.home-hero-trust {
    margin-top: 26px;
}

.home-hero-trust > span > span[aria-hidden="true"] {
    font-size: 13px;
    line-height: 1;
    transform: translateY(-1px);
}

.hero-showcase-label {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(248, 251, 255, 0.70);
}

.hero-showcase-label span[aria-hidden="true"],
.home-panel-label span[aria-hidden="true"] {
    letter-spacing: normal;
}

.home-hero-panel {
    align-self: start;
    padding: 24px;
    border-radius: 26px;
    background: rgba(248, 251, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
    color: var(--text);
}

.home-panel-label {
    display: block;
    color: var(--brand);
}

.home-panel-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.home-panel-item {
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f6fd 100%);
    border: 1px solid #e3ebf8;
}

.home-panel-item strong,
.home-panel-note strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.home-panel-item-icon,
.home-panel-note-icon {
    font-size: 16px;
    line-height: 1;
    transform: translateY(-1px);
}

.home-panel-item p,
.home-panel-note p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.home-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.home-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(20, 99, 255, 0.10);
    border: 1px solid rgba(20, 99, 255, 0.18);
    font-size: 16px;
    line-height: 1;
}

.home-feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.home-feature-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(20, 99, 255, 0.08);
    border: 1px solid rgba(20, 99, 255, 0.14);
    font-size: 12px;
    font-weight: 700;
    color: rgba(15, 79, 209, 0.92);
}

.home-feature-meta > span > span[aria-hidden="true"] {
    font-size: 13px;
    line-height: 1;
    transform: translateY(-1px);
}

.home-panel-note {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e7edf6;
}

.hero-showcase-label {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(248, 251, 255, 0.70);
}

.home-hero-facts {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-hero-fact {
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.home-hero-fact strong {
    display: block;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.05em;
}

.home-hero-fact p {
    margin-top: 8px;
    color: rgba(248, 251, 255, 0.76);
    font-size: 12px;
    line-height: 1.65;
}

.home-section {
    margin-top: 20px;
}

.guide-hero {
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(20, 99, 255, 0.10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
    border: 1px solid rgba(20, 99, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

.guide-hero-copy {
    max-width: 760px;
}

.guide-hero-copy h2 {
    margin-top: 8px;
    font-size: clamp(22px, 2.8vw, 30px);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.guide-hero-copy p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.guide-page {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.guide-hero {
    position: relative;
    overflow: hidden;
}

.guide-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    align-items: center;
    gap: 22px;
}

.guide-hero::before {
    content: "";
    position: absolute;
    inset: -40% -20% auto auto;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at center, rgba(20, 99, 255, 0.18), transparent 62%);
    pointer-events: none;
}

.guide-hero::after {
    content: "";
    position: absolute;
    inset: auto auto -42% -18%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at center, rgba(46, 175, 255, 0.12), transparent 62%);
    pointer-events: none;
}

.guide-hero-copy {
    position: relative;
    z-index: 1;
}

.guide-hero-toys {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    justify-self: end;
    width: min(100%, 320px);
}

.guide-toy-card {
    display: grid;
    place-items: center;
    height: 64px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(20, 99, 255, 0.16);
    box-shadow: 0 18px 32px rgba(17, 24, 39, 0.07);
    backdrop-filter: blur(8px);
}

.guide-toy-card span {
    font-size: 22px;
    line-height: 1;
}

.guide-section {
    padding: 22px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(20, 99, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(20, 99, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

.guide-section-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.guide-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 18px;
    background: rgba(20, 99, 255, 0.10);
    border: 1px solid rgba(20, 99, 255, 0.18);
    font-size: 20px;
    line-height: 1;
    flex: 0 0 auto;
}

.guide-section h3 {
    margin-top: 6px;
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.guide-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.guide-step-card {
    min-width: 0;
    padding: 20px 20px 18px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(20, 99, 255, 0.10), transparent 46%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(20, 99, 255, 0.12);
    box-shadow: 0 18px 32px rgba(17, 24, 39, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.guide-step-card:hover {
    transform: translateY(-2px);
    border-color: rgba(20, 99, 255, 0.22);
    box-shadow: 0 22px 44px rgba(17, 24, 39, 0.09);
}

.guide-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.guide-page .home-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(20, 99, 255, 0.10);
    border: 1px solid rgba(20, 99, 255, 0.18);
    font-size: 18px;
}

.guide-page .home-feature-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(20, 99, 255, 0.10);
    border: 1px solid rgba(20, 99, 255, 0.16);
    color: rgba(15, 79, 209, 0.95);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.guide-step-card strong {
    display: block;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.guide-step-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.guide-page .home-feature-meta > span {
    background: rgba(20, 99, 255, 0.07);
    border: 1px solid rgba(20, 99, 255, 0.14);
}

.home-section-head {
    margin-bottom: 14px;
}

.home-section-head h3 {
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.home-biz-grid,
.home-feature-grid,
.home-trust-grid {
    gap: 16px;
}

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

.home-feature-grid,
.home-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-feature-card,
.home-summary-card,
.home-trust-card,
.home-biz-card {
    border-radius: 24px;
    border-color: rgba(20, 99, 255, 0.10);
}

.home-feature-card,
.home-summary-card,
.home-trust-card {
    min-height: 176px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.home-feature-step {
    display: inline-block;
    color: var(--brand);
}

.home-feature-card strong,
.home-summary-card strong,
.home-trust-card strong {
    font-size: 18px;
}

.home-feature-card p,
.home-summary-card p,
.home-trust-card p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.7;
}

.home-biz-card {
    min-height: 220px;
    background: #ffffff;
}

.home-biz-card:hover {
    border-color: rgba(20, 99, 255, 0.24);
    box-shadow: 0 18px 32px rgba(17, 24, 39, 0.09);
}

.home-biz-card .card-index {
    color: #1463ff;
}

.home-card-identifiers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 0;
}

.home-card-identifiers > span,
.home-card-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: #2957a4;
    font-size: 11px;
    font-weight: 800;
}

.home-card-identifiers span > span[aria-hidden="true"],
.home-card-meta span > span[aria-hidden="true"],
.home-card-meta em > span[aria-hidden="true"] {
    font-size: 12px;
    line-height: 1;
    transform: translateY(-1px);
}

.home-card-meta span,
.home-card-meta em {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-biz-card .card-meta-line,
.home-card-meta {
    border-top-color: #dce7fb;
}

.home-card-meta {
    margin-top: 14px;
    margin-bottom: 0;
}

.home-card-meta span {
    color: var(--text);
}

.home-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.home-card-cta {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #1f2430;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.home-empty-state {
    grid-column: 1 / -1;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
    border-color: rgba(20, 99, 255, 0.14);
}

.mini-badge.pink {
    background: #eaf1ff;
    color: #0f4fd1;
}

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

.list-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.mini-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.mini-badge.gray {
    background: #eff4fa;
    color: #475467;
}

.mini-badge.blue {
    background: #eaf1ff;
    color: var(--brand);
}

.mini-badge.green {
    background: #e8fbf7;
    color: #0b8d7c;
}

.mini-badge.navy {
    background: #dbe8ff;
    color: #0f4fd1;
}

.mini-badge.orange {
    background: #ecfffb;
    color: #0b8d7c;
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.pagination a {
    min-width: 40px;
    padding: 9px 12px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
}

.pagination a.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    gap: 16px;
}

.detail-table {
    display: grid;
}

.detail-row {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #eef2f7;
}

.detail-row:last-child {
    border-bottom: 0;
}

.detail-label {
    color: var(--muted);
}

.detail-value {
    font-size: 14px;
    word-break: break-all;
}

.detail-value a {
    color: var(--brand);
}

.status-box,
.status-error {
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    background: #f8fafc;
    color: var(--muted);
    font-size: 13px;
}

.status-result {
    margin-top: 14px;
}

.empty-page {
    padding: 56px 20px;
    text-align: center;
}

.empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #eef3ff;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
}

.empty-page h2 {
    margin-top: 16px;
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.empty-page p {
    max-width: 640px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 14px;
}

.empty-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.muted {
    color: #98a2b3;
}

.biz-detail-page {
    display: grid;
    gap: 16px;
}

.detail-stage,
.detail-section-card {
    border-radius: 26px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.detail-stage {
    display: block;
    padding: 26px;
    background:
        radial-gradient(circle at top right, rgba(20, 99, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.biz-detail-title-area h2 {
    margin-top: 6px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-stage-copy {
    margin-top: 12px;
    font-size: 14px;
    color: var(--muted);
    max-width: 880px;
}

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

.detail-top-card {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e7edf5;
}

.detail-top-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
}

.detail-top-card strong {
    display: block;
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.detail-badge-wrap {
    margin-top: 8px;
}

.biz-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-summary-card {
    height: 100%;
    padding: 18px;
    border-radius: 22px;
    background: #0f172a;
    color: #f8fbff;
}

.detail-summary-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(248, 251, 255, 0.62);
}

.detail-summary-list {
    display: grid;
    gap: 14px;
    margin-top: 16px;
    list-style: none;
}

.detail-summary-list li {
    display: grid;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.detail-summary-list li:first-child {
    padding-top: 0;
    border-top: 0;
}

.detail-summary-list span {
    font-size: 12px;
    color: rgba(248, 251, 255, 0.62);
}

.detail-summary-list strong {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    word-break: break-word;
}

.detail-fact-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.detail-fact-card {
    padding: 18px;
    border-radius: 22px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.detail-fact-card span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
}

.detail-fact-card strong {
    display: block;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.detail-section-tabs {
    position: sticky;
    top: 126px;
    z-index: 24;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
}

.detail-section-tab {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #d8e4f2;
    background: #fff;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.detail-section-tab:hover {
    border-color: rgba(20, 99, 255, 0.34);
    color: var(--brand);
}

.detail-section-tab.is-active {
    border-color: var(--brand);
    background: rgba(20, 99, 255, 0.1);
    color: var(--brand);
}

.detail-anchor-target {
    scroll-margin-top: 150px;
}

.detail-section-card {
    padding: 22px;
}

.detail-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.detail-section-head h3 {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin: 0;
}

.biz-info-table-wrap {
    overflow: hidden;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    background: #fff;
}

.biz-info-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.biz-info-table th,
.biz-info-table td {
    padding: 15px 16px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #eef2f7;
    border-right: 1px solid #eef2f7;
    font-size: 13px;
    line-height: 1.55;
}

.biz-info-table tr:last-child th,
.biz-info-table tr:last-child td {
    border-bottom: 0;
}

.biz-info-table th:last-child,
.biz-info-table td:last-child {
    border-right: 0;
}

.biz-info-table th {
    width: 13%;
    background: #f8fbff;
    color: var(--muted);
    font-weight: 800;
    white-space: nowrap;
}

.biz-info-table td {
    width: 37%;
    color: var(--text);
    font-weight: 600;
    word-break: break-word;
    background: #fff;
}

.biz-info-table td a {
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
}

.biz-info-table td.cell-address {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.biz-info-table td.cell-address-full {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
}

.biz-info-table.biz-info-table--two-col th {
    width: 220px;
}

.biz-info-table.biz-info-table--two-col td {
    width: auto;
}

.biz-status-panel {
    padding: 4px 0 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.finance-chart-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.finance-chart-card,
.finance-table-wrap {
    border: 1px solid #e7edf5;
    border-radius: 18px;
    background: #fff;
}

.finance-chart-card {
    padding: 18px;
}

.finance-chart-head {
    display: grid;
    gap: 4px;
    margin-bottom: 14px;
}

.finance-chart-head strong {
    font-size: 18px;
    letter-spacing: -0.03em;
}

.finance-chart-head span,
.finance-year {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}

.finance-chart-body,
.finance-table-block {
    display: grid;
    gap: 12px;
}

.finance-chart-row {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 128px;
    gap: 10px;
    align-items: center;
}

.finance-bar-track {
    position: relative;
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf3fb;
}

.finance-bar {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #1d4ed8 0%, #60a5fa 100%);
}

.finance-bar.negative {
    background: linear-gradient(90deg, #b91c1c 0%, #f87171 100%);
}

.finance-chart-row strong {
    text-align: right;
    font-size: 12px;
    letter-spacing: -0.01em;
}

.finance-table-block + .finance-table-block {
    margin-top: 18px;
}

.finance-table-head {
    display: grid;
    gap: 4px;
}

.finance-table-head h4 {
    font-size: 18px;
    letter-spacing: -0.03em;
}

.finance-table-wrap {
    overflow: hidden;
}

.finance-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.finance-table th,
.finance-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #eef2f7;
    border-right: 1px solid #eef2f7;
    text-align: left;
    font-size: 13px;
    line-height: 1.5;
}

.finance-table th:last-child,
.finance-table td:last-child {
    border-right: 0;
}

.finance-table tbody tr:last-child th,
.finance-table tbody tr:last-child td {
    border-bottom: 0;
}

.finance-table thead th {
    background: #f8fbff;
    color: var(--muted);
    font-weight: 800;
}

.finance-table tbody th {
    background: #fcfdff;
    color: var(--text);
    font-weight: 700;
}

.finance-table td {
    background: #fff;
    font-weight: 600;
}

.finance-note-mark {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    vertical-align: super;
}

.stockholder-summary-value {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.stockholder-summary-value.stockholder-summary-value--date {
    font-size: 18px;
    letter-spacing: -0.02em;
}

.stockholder-table-wrap {
    overflow-x: auto;
}

.stockholder-table {
    min-width: 760px;
}

.subsidiary-table-wrap {
    overflow-x: auto;
}

.subsidiary-table {
    min-width: 1200px;
}

.dividend-table-wrap {
    overflow-x: auto;
}

.dividend-table {
    min-width: 1400px;
}

#subsidiary-content .finance-table-wrap,
#dividend-content .finance-table-wrap,
#stock-issuance-content .finance-table-wrap {
    border: 0;
    box-shadow: none;
    background: transparent;
}

#subsidiary-table.dataTable,
#dividend-table.dataTable {
    border: 0 !important;
}

#subsidiary-table.dataTable th,
#subsidiary-table.dataTable td,
#dividend-table.dataTable th,
#dividend-table.dataTable td,
#stock-issuance-content .dataTable th,
#stock-issuance-content .dataTable td {
    border-right: 0 !important;
}

.stock-issuance-table-wrap {
    overflow-x: auto;
}

.stock-issuance-table {
    min-width: 1200px;
}

.stock-issuance-table--stat {
    min-width: 900px;
}

#subsidiary-content .dt-container .dt-layout-row,
#dividend-content .dt-container .dt-layout-row,
#stock-issuance-content .dt-container .dt-layout-row {
    margin: 0 0 10px;
}

#subsidiary-content .dt-container .dt-layout-row:last-child,
#dividend-content .dt-container .dt-layout-row:last-child,
#stock-issuance-content .dt-container .dt-layout-row:last-child {
    margin: 12px 0 0;
}

#subsidiary-content .dt-container .dt-search,
#dividend-content .dt-container .dt-search,
#stock-issuance-content .dt-container .dt-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}

#subsidiary-content .dt-container .dt-length,
#dividend-content .dt-container .dt-length,
#stock-issuance-content .dt-container .dt-length {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}

#subsidiary-content .dt-container .dt-input,
#subsidiary-content .dt-container .dt-length select,
#dividend-content .dt-container .dt-input,
#dividend-content .dt-container .dt-length select,
#stock-issuance-content .dt-container .dt-input,
#stock-issuance-content .dt-container .dt-length select {
    height: 36px;
    border-radius: 12px;
    border: 1px solid #d8e4f2;
    background: #fff;
    padding: 0 12px;
    font-size: 13px;
    color: var(--text);
    outline: none;
}

#subsidiary-content .dt-container .dt-input:focus,
#subsidiary-content .dt-container .dt-length select:focus,
#dividend-content .dt-container .dt-input:focus,
#dividend-content .dt-container .dt-length select:focus,
#stock-issuance-content .dt-container .dt-input:focus,
#stock-issuance-content .dt-container .dt-length select:focus {
    border-color: rgba(20, 99, 255, 0.36);
    box-shadow: 0 0 0 4px rgba(20, 99, 255, 0.12);
}

#subsidiary-content .dt-container .dt-info,
#dividend-content .dt-container .dt-info,
#stock-issuance-content .dt-container .dt-info {
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}

#subsidiary-content .dt-container .dt-paging .dt-paging-button,
#dividend-content .dt-container .dt-paging .dt-paging-button,
#stock-issuance-content .dt-container .dt-paging .dt-paging-button {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid #d8e4f2;
    background: #fff;
    color: var(--text) !important;
    font-size: 12px;
    font-weight: 700;
}

#subsidiary-content .dt-container .dt-paging .dt-paging-button.current,
#dividend-content .dt-container .dt-paging .dt-paging-button.current,
#stock-issuance-content .dt-container .dt-paging .dt-paging-button.current {
    border-color: var(--brand) !important;
    background: rgba(20, 99, 255, 0.1) !important;
    color: var(--brand) !important;
}

#subsidiary-content .dt-container .dt-paging .dt-paging-button:hover,
#dividend-content .dt-container .dt-paging .dt-paging-button:hover,
#stock-issuance-content .dt-container .dt-paging .dt-paging-button:hover {
    border-color: rgba(20, 99, 255, 0.3);
    background: #f4f8ff;
}

.biz-status-head h3 {
    margin: 4px 0 0;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.map-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.map-box {
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.map-title {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.map-frame {
    width: 100%;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e7edf5;
}

.map-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
    background: #f8fbff;
}

@media (max-width: 980px) {
    .home-hero,
    .hero-section,
    .list-hero,
    .detail-hero,
    .detail-layout,
    .biz-card-grid,
    .feature-grid,
    .summary-grid,
    .list-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h2,
    .list-hero h2,
    .detail-hero h2 {
        max-width: none;
    }

    .home-hero-facts,
    .home-feature-grid {
        grid-template-columns: 1fr;
    }

    .guide-hero-inner {
        grid-template-columns: 1fr;
    }

    .guide-hero-toys {
        justify-self: start;
        width: min(100%, 420px);
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .guide-toy-card {
        height: 56px;
    }

    .guide-step-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .global-search-form,
    .detail-fact-strip,
    .detail-top-cards,
    .map-two-col,
    .finance-chart-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .wrap {
        width: min(100%, calc(100% - 20px));
    }

    .site-header .wrap {
        min-height: 66px;
    }

    .page-content {
        padding: 12px 0 36px;
    }

    .home-hero,
    .hero-section,
    .list-hero,
    .detail-hero {
        padding: 20px;
    }

    .guide-hero,
    .guide-section {
        padding: 18px;
    }

    .guide-hero-toys {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(100%, 320px);
    }

    .guide-step-card {
        padding: 18px 18px 16px;
    }

    .guide-step-card strong {
        font-size: 15px;
    }

    .global-search-form,
    .detail-stage,
    .detail-section-card {
        padding: 18px;
    }

    .detail-section-tabs {
        top: 118px;
        margin: -2px 0;
        padding: 8px;
    }

    .global-search-form {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .home-hero-actions,
    .hero-search,
    .inline-search,
    .global-search-field,
    .empty-actions,
    .section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .global-search-field {
        gap: 6px;
    }

    .global-search-select {
        flex: 1 1 auto;
        max-width: none;
    }

    .home-hero h2 {
        font-size: 20px;
    }

    .home-hero-badge,
    .home-hero-trust > span,
    .home-card-cta {
        width: 100%;
        justify-content: center;
    }

    .home-card-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .home-card-status {
        justify-content: center;
    }

    .home-hero,
    .home-biz-card,
    .home-feature-card {
        min-height: auto;
    }

    .hero-search button,
    .inline-search button,
    .global-search-field button,
    .btn {
        width: 100%;
    }

    .global-search-field select,
    .hero-search select,
    .inline-search select {
        width: 100%;
        flex-basis: auto;
    }

    #subsidiary-content .dt-container .dt-layout-row,
    #dividend-content .dt-container .dt-layout-row,
    #stock-issuance-content .dt-container .dt-layout-row {
        display: grid;
        gap: 8px;
    }

    #subsidiary-content .dt-container .dt-search,
    #subsidiary-content .dt-container .dt-length,
    #dividend-content .dt-container .dt-search,
    #dividend-content .dt-container .dt-length,
    #stock-issuance-content .dt-container .dt-search,
    #stock-issuance-content .dt-container .dt-length {
        width: 100%;
    }

    #subsidiary-content .dt-container .dt-input,
    #subsidiary-content .dt-container .dt-length select,
    #dividend-content .dt-container .dt-input,
    #dividend-content .dt-container .dt-length select,
    #stock-issuance-content .dt-container .dt-input,
    #stock-issuance-content .dt-container .dt-length select {
        width: 100%;
    }

    .section-head h3 {
        font-size: 20px;
    }

    .home-section-head h3 {
        font-size: 18px;
    }

    .biz-detail-title-area h2 {
        font-size: 24px;
    }

    .biz-card strong,
    .feature-card strong,
    .summary-card strong {
        font-size: 15px;
    }

    .metric-value {
        font-size: 30px;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .home-biz-grid {
        grid-template-columns: 1fr;
    }

    .map-frame {
        height: 280px;
    }

    .biz-info-table,
    .biz-info-table tbody,
    .biz-info-table tr,
    .biz-info-table th,
    .biz-info-table td {
        display: block;
        width: 100%;
    }

    .biz-info-table th,
    .biz-info-table td {
        border-right: 0;
    }

    .biz-info-table th {
        padding-bottom: 6px;
        border-bottom: 0;
    }

    .biz-info-table td {
        padding-top: 0;
    }

    .biz-info-table td.cell-address {
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
    }
}
