﻿:root {
    --deep-green: #124734;
    --deep-green-strong: #0d3628;
    --mint-ash: #f1f5f2;
    --warm-cream: #f8f6f1;
    --line: #d9e1db;
    --text: #18201c;
    --muted: #4c5b54;
    --white: #ffffff;
    --focus: #2a7d62;
    --max-width: 1240px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --space-1: 0.5rem;
    --space-2: 0.75rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-7: 4rem;
    --space-8: 6rem;
    --header-height: 80px;
    --easing: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
    line-height: 1.6;
    background:
        radial-gradient(1200px 600px at 90% -10%, #e4f0e9 0%, transparent 55%),
        linear-gradient(180deg, #f9fbfa 0%, #ffffff 35%);
}

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

img {
    display: block;
    max-width: 100%;
}

.ir-page h1,
.ir-page h2,
.ir-page h3,
.ir-page h4,
.ir-page p,
.ir-page li,
.ir-page dt,
.ir-page dd,
.ir-page th,
.ir-page td,
.ir-page summary,
.ir-page blockquote {
    word-break: keep-all;
    overflow-wrap: break-word;
}

.ir-page h1,
.ir-page h2,
.ir-page h3,
.ir-page h4 {
    text-wrap: balance;
}

.ir-page p,
.ir-page li,
.ir-page blockquote {
    text-wrap: pretty;
}

.skip-link {
    position: absolute;
    left: 0;
    top: -48px;
    background: var(--deep-green);
    color: var(--white);
    padding: 10px 14px;
    z-index: 2000;
}

.skip-link:focus {
    top: 0;
}

.wrap {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-height);
    transition: background-color 0.35s var(--easing), border-color 0.35s var(--easing), backdrop-filter 0.35s var(--easing);
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: var(--line);
    backdrop-filter: saturate(150%) blur(8px);
}

.header-shell {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
    height: 100%;
    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: var(--space-3);
}

.site-header .brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    width: fit-content;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-horizontal {
    width: fit-content;
    height: auto;
}

.main-logo-frame {
    display: block;
    width: 100%;
}

.main-logo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.main-logo-header {
    width: auto;
    height: 52px;
    margin: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
}

.main-logo-header .main-logo-image {
    width: auto;
    height: 52px;
    max-width: none;
    object-fit: contain;
    object-position: left center;
}

.main-logo-hero {
    width: min(520px, 100%);
    aspect-ratio: 3 / 1;
    margin-bottom: 1.25rem;
}

.main-logo-company {
    width: min(520px, 100%);
    aspect-ratio: 3 / 1;
}

.main-logo-ir {
    width: min(400px, 100%);
    aspect-ratio: 1024 / 420;
}

.main-logo-footer {
    width: 210px;
    height: 70px;
}

.header-logo {
    width: auto;
    height: 46px;
    object-fit: contain;
    display: block;
}

.company-logo-wrap {
    grid-column: 1 / -1;
    width: min(520px, 100%);
    margin: 0 0 0.5rem;
}

.company-logo {
    width: min(100%, 360px);
    height: 72px;
    object-fit: contain;
    display: block;
}

.brand-text-header {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--deep-green);
    line-height: 1;
    white-space: nowrap;
}

.logo-horizontal {
    object-position: left center;
}

.page-slogan {
    width: min(1280px, calc(100% - 64px));
    margin: 1.25rem auto 0;
    color: #214236;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.global-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    font-size: 0.95rem;
    color: #21332c;
}

.global-nav a {
    position: relative;
    padding: 6px 2px;
}

.global-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: var(--deep-green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s var(--easing);
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--deep-green-strong);
    transition: transform 0.25s var(--easing), opacity 0.25s var(--easing);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    min-height: 46px;
    padding: 0 1.15rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.25s var(--easing), background-color 0.25s var(--easing), border-color 0.25s var(--easing), color 0.25s var(--easing);
}

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

.btn-primary {
    background: var(--deep-green);
    color: var(--white);
}

.btn-primary:hover {
    background: #16553f;
}

.btn-ghost {
    background: transparent;
    border-color: #9cb3a8;
    color: var(--deep-green-strong);
}

.btn-ghost:hover {
    border-color: var(--deep-green);
    background: rgba(18, 71, 52, 0.05);
}

.header-cta {
    white-space: nowrap;
}

main {
    padding-top: var(--header-height);
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 2.5rem) 0 10rem;
    background:
        radial-gradient(900px 520px at 96% 8%, rgba(18, 71, 52, 0.08) 0%, transparent 58%),
        linear-gradient(180deg, #fbfaf6 0%, #f7f5ef 100%);
}

.hero-grid {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
}

.eyebrow {
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #2b4d40;
    margin: 0 0 var(--space-3);
}

.hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4.7vw, 4.15rem);
    line-height: 1.14;
}

.hero-line {
    display: inline-block;
    white-space: nowrap;
}

.hero-description {
    margin: var(--space-4) 0 0;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: var(--muted);
}

.hero-actions {
    margin-top: var(--space-5);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.trust-badges {
    margin: var(--space-5) 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
    font-size: 0.94rem;
    color: #234136;
}

.trust-badges li {
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    text-align: center;
    background: rgba(255, 255, 255, 0.72);
}

.hero-visual {
    display: grid;
    justify-items: end;
}

.hero-copy {
    max-width: 640px;
}

.booking-ui {
    width: min(520px, 100%);
    border: 1px solid rgba(132, 160, 147, 0.35);
    border-radius: 30px;
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 246, 239, 0.98) 100%);
    box-shadow: 0 18px 44px rgba(17, 45, 36, 0.08);
}

.booking-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.booking-top p,
.booking-top strong {
    margin: 0;
    color: #173529;
}

.booking-top p {
    font-weight: 700;
    font-size: 1.08rem;
}

.booking-top span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: #335448;
    background: #ecf4ef;
    border: 1px solid #cddbd4;
    border-radius: 999px;
    padding: 0.34rem 0.7rem;
}

.booking-top-meta {
    display: grid;
    justify-items: end;
    gap: 4px;
    color: #335448;
}

.booking-top-meta span {
    font-size: 0.76rem;
    letter-spacing: 0.04em;
}

.booking-top-meta strong {
    font-size: 1rem;
    font-weight: 700;
}

.booking-field {
    margin-top: 18px;
}

.booking-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #33574a;
    margin-bottom: 8px;
}

.booking-pill {
    min-height: 44px;
    padding: 0.6rem 0.9rem;
    border-radius: 14px;
    border: 1px solid #d4ddd7;
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #1f372f;
    font-weight: 600;
}

.booking-pill.is-strong {
    background: linear-gradient(145deg, #eef5f0 0%, #ffffff 100%);
    border-color: rgba(47, 104, 82, 0.28);
}

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

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

.slot-btn {
    border: 1px solid #ced9d3;
    background: #ffffff;
    border-radius: 12px;
    min-height: 44px;
    padding: 0 0.75rem;
    font-size: 0.88rem;
    color: #1f372f;
    transition: transform 0.2s var(--easing), border-color 0.2s var(--easing), background-color 0.2s var(--easing), color 0.2s var(--easing), box-shadow 0.2s var(--easing);
}

.slot-btn:hover {
    border-color: #9fb5aa;
    background: #f8fcfa;
    transform: translateY(-1px);
}

.slot-btn.is-active {
    border-color: rgba(47, 104, 82, 0.72);
    color: #1f4d3b;
    font-weight: 700;
    background: linear-gradient(180deg, #edf5f0 0%, #e6f0eb 100%);
    box-shadow: inset 0 0 0 1px rgba(47, 104, 82, 0.08);
}

.booking-summary {
    margin-top: 18px;
    border: 1px solid #d5e1db;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
}

.summary-item {
    display: grid;
    gap: 2px;
}

.summary-item span {
    font-size: 0.76rem;
    color: #4f675d;
}

.summary-item strong {
    font-size: 0.95rem;
    color: #1e3d31;
}

.booking-submit {
    width: 100%;
    margin-top: 16px;
    min-height: 48px;
    border: 0;
    border-radius: 14px;
    background: var(--deep-green);
    color: #f4faf7;
    font-weight: 700;
    font-size: 0.94rem;
    transition: background-color 0.25s var(--easing);
}

.booking-submit:hover {
    background: #16553f;
}

.booking-submit:focus-visible,
.slot-btn:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 1px;
}

.booking-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.booking-submit span {
    margin: 0;
}

.section-label {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: #366252;
    font-weight: 700;
}

.section-head {
    display: grid;
    gap: var(--space-3);
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3.4vw, 3rem);
    line-height: 1.22;
}

.problem {
    padding: var(--space-8) 0;
    background: linear-gradient(180deg, #f6faf7, #ffffff);
}

.problem h2 {
    margin: var(--space-4) 0 0;
    font-size: clamp(2.15rem, 5vw, 4rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.story {
    padding: var(--space-8) 0;
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    gap: 1px;
    background: #d8e3dd;
}

.story-step {
    background: #ffffff;
    padding: min(7vw, 88px) min(6vw, 72px);
}

.story-name {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: #2f5a4a;
    font-weight: 700;
}

.story-step h3 {
    margin: var(--space-3) 0 0;
    font-size: clamp(1.45rem, 3.25vw, 2.4rem);
    line-height: 1.28;
    font-weight: 600;
}

.story-keyword {
    margin: var(--space-3) 0 0;
    color: var(--muted);
}

.story-step-focus {
    background: linear-gradient(120deg, #f2f8f4 0%, #ffffff 60%);
}

.story-declaration {
    background: #132e24;
    color: #e9f2ee;
    padding: min(7vw, 88px) min(6vw, 72px);
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    line-height: 1.45;
}

.story-declaration p {
    margin: 0;
    color: inherit;
}

.how,
.services,
.manager,
.patent,
.brand,
.faq,
.final-cta {
    padding: var(--space-8) 0;
}

.services {
    padding-top: 0;
}

.how {
    background: #fcfdfc;
}

.how .wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: var(--space-6);
    align-items: start;
}

.how-copy h2 {
    margin: var(--space-3) 0 0;
    font-size: clamp(1.85rem, 3.7vw, 3rem);
    line-height: 1.23;
}

.how-ui {
    border: 1px solid #c5d5cd;
    border-radius: 20px;
    padding: 22px;
    background: #ffffff;
}

.how-ui ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.how-ui li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.how-ui li span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e9f2ed;
    color: var(--deep-green-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
}

.how-panel {
    margin-top: 18px;
    border-top: 1px solid #e0e8e3;
    padding-top: 12px;
    display: grid;
    gap: 8px;
}

.line {
    display: grid;
    grid-template-columns: 124px 1fr;
    gap: 10px;
    font-size: 0.92rem;
}

.line strong {
    color: #27463a;
}

.editorial-grid {
    margin-top: var(--space-5);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    background: transparent;
}

.editorial {
    min-height: 240px;
    padding: clamp(1.5rem, 3.2vw, 2.4rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 240, 229, 0.96) 100%);
    border: 1px solid rgba(106, 134, 123, 0.26);
    border-radius: 24px;
    box-shadow: 0 10px 22px rgba(17, 45, 36, 0.04);
}

.editorial-kicker {
    margin: 0;
    font-weight: 700;
    color: #2f5f4d;
}

.editorial h3 {
    margin: var(--space-3) 0 0;
    font-size: clamp(1.2rem, 2.1vw, 1.7rem);
    line-height: 1.35;
}

.editorial p {
    margin: var(--space-3) 0 0;
    color: var(--muted);
}

.manager {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.manager h2 {
    margin: var(--space-3) 0;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    line-height: 1.28;
}

.manager p {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
}

.manager .btn {
    margin-top: var(--space-4);
}

.philosophy {
    padding: calc(var(--space-8) + 10px) 0;
    background: var(--deep-green);
    color: #e7f1ec;
}

.philosophy .section-label,
.philosophy p,
.philosophy h2 {
    color: inherit;
}

.philosophy h2 {
    margin: var(--space-3) 0;
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    line-height: 1.24;
}

.patent-flow {
    margin-top: var(--space-5);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.patent-flow span {
    position: relative;
    border: 1px solid #c7d5cd;
    border-radius: 999px;
    padding: 0.85rem 1.05rem;
    text-align: center;
    font-size: 0.88rem;
    background: #fff;
}

.patent-flow span:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
    color: #618072;
}

.brand {
    background: #f7faf8;
}

.brand-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-6);
    align-items: center;
}

.brand-media {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #cfddd5;
    background: #fff;
}

.brand-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy h2 {
    margin: var(--space-3) 0;
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
    line-height: 1.32;
}

.brand-copy p {
    margin: 0;
    color: var(--muted);
}

.brand-copy .btn {
    margin-top: var(--space-4);
}

.faq-list {
    margin-top: var(--space-5);
    border-top: 1px solid #cfdad4;
}

.faq-item {
    border-bottom: 1px solid #d7e1dc;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    font-size: 1.02rem;
    font-weight: 600;
    padding: 20px 0;
    color: #20352d;
    cursor: pointer;
}

.faq-question::after {
    content: "+";
    float: right;
    color: #406354;
}

.faq-question[aria-expanded="true"]::after {
    content: "−";
}

.faq-answer p {
    margin: 0;
    padding: 0 0 20px;
    color: var(--muted);
}

.final-cta {
    background: linear-gradient(150deg, #113326 0%, #18503b 100%);
    color: #f1f8f4;
}

.final-cta h2 {
    margin: 0;
    font-size: clamp(2rem, 4.1vw, 3.4rem);
    line-height: 1.25;
}

.final-cta .btn-primary {
    background: #eff8f2;
    color: #0f3a2b;
}

.final-cta .btn-ghost {
    color: #f1f8f4;
    border-color: rgba(241, 248, 244, 0.5);
}

.site-footer {
    padding: var(--space-6) 0;
    background: #0e251d;
    color: #d8e7de;
}

.footer-grid {
    display: grid;
    grid-template-columns: 170px 1fr auto;
    align-items: center;
    gap: var(--space-4);
}

.brand-vertical {
    width: 210px;
    height: 60px;
}

.logo-vertical {
    object-position: center;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.92rem;
    color: #d8e7de;
}

.copyright {
    margin: 0;
    color: #aac1b5;
    font-size: 0.85rem;
}

body.ir-page {
    overflow-x: hidden;
    background:
        radial-gradient(900px 520px at 88% 0%, rgba(18, 71, 52, 0.08) 0%, transparent 58%),
        radial-gradient(900px 520px at 8% 18%, rgba(18, 71, 52, 0.05) 0%, transparent 62%),
        linear-gradient(180deg, #fbfaf6 0%, #f6f2e9 100%);
}

.ir-page main {
    padding-top: 0;
}

.ir-page .site-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(150%) blur(10px);
}

.ir-page .header-shell {
    width: min(1280px, calc(100% - 48px));
    grid-template-columns: auto 1fr auto;
}

.ir-brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
}

.ir-brand-logo {
    width: auto;
    height: 46px;
    object-fit: contain;
    display: block;
}

.ir-hero-logo-wrap {
    margin: 0 0 24px;
}

.ir-hero-logo {
    width: auto;
    height: 34px;
    object-fit: contain;
    display: block;
}

.ir-brand .brand-text {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--deep-green);
}

.ir-page .ir-nav {
    justify-content: flex-start;
    gap: 20px;
}

.ir-main {
    overflow: hidden;
    padding-top: var(--header-height);
}

.ir-shell {
    width: min(1280px, calc(100% - 64px));
    margin: 0 auto;
}

.ir-hero {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 56px 0 4.5rem;
}

.ir-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    transform: translateY(28px);
}

.ir-copy,
.ir-hero .ir-panel {
    align-self: center;
}

.ir-copy h1 {
    margin: 0;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.ir-description,
.ir-contact-copy,
.ir-overview p {
    margin: 1.35rem 0 0;
    font-size: clamp(1rem, 1.55vw, 1.15rem);
    line-height: 1.8;
    color: var(--muted);
}

.ir-description {
    margin-top: 24px;
}

.ir-actions {
    margin-top: 32px;
}

.ir-truths {
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.ir-truths li {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(101, 126, 116, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: #214236;
    text-align: center;
    font-size: 0.95rem;
}

.ir-panel,
.strategy-item,
.market-panel,
.contact-panel {
    border: 1px solid rgba(101, 126, 116, 0.22);
    background: rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    box-shadow: 0 10px 22px rgba(17, 45, 36, 0.04);
}

.ir-panel {
    padding: 1.5rem;
}

.ir-panel-kicker {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #355b4a;
}

.ir-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.ir-panel-grid div {
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(246, 250, 247, 0.98) 0%, rgba(236, 243, 238, 0.98) 100%);
    display: grid;
    gap: 0.35rem;
}

.ir-panel-grid span,
.market-panel span,
.contact-panel span,
.strategy-index,
.ir-footer-meta {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: #5b7168;
    text-transform: uppercase;
}

.ir-panel-grid strong,
.market-panel strong,
.contact-panel strong {
    color: #173529;
    font-size: 1rem;
    line-height: 1.4;
}

.ir-section {
    padding: 5rem 0;
    scroll-margin-top: 140px;
}

#overview {
    padding-top: 140px;
}

#strategy,
#market,
#contact {
    scroll-margin-top: 140px;
}

.section-head {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3.6vw, 3.1rem);
    line-height: 1.22;
    letter-spacing: -0.03em;
}

.ir-overview {
    max-width: 860px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #d8e3dd;
    border-radius: 28px;
    overflow: hidden;
}

.strategy-item {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    min-height: 220px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.strategy-item-wide {
    grid-column: 1 / -1;
}

.strategy-item h3 {
    margin: 0.9rem 0 0;
    font-size: clamp(1.15rem, 1.9vw, 1.55rem);
    line-height: 1.5;
    font-weight: 600;
    color: #18201c;
}

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

.market-panel {
    padding: 1.4rem;
    display: grid;
    gap: 0.45rem;
}

.manager-membership {
    position: relative;
    overflow: hidden;
    color: #f7fbf8;
    background:
        radial-gradient(720px 360px at 90% 4%, rgba(123, 186, 154, 0.2) 0%, transparent 68%),
        linear-gradient(145deg, #0d3628 0%, #124734 58%, #173f31 100%);
    border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.manager-membership::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -240px;
    bottom: -260px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.manager-membership .ir-shell {
    position: relative;
    z-index: 1;
}

.membership-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: end;
}

.manager-membership .section-label {
    color: #9fd0b8;
}

.manager-membership .section-head {
    margin-bottom: 0;
}

.manager-membership .section-head h2 {
    color: #fff;
}

.membership-lead {
    margin: 0 0 0.3rem;
    color: #c9dcd2;
    font-size: clamp(1rem, 1.45vw, 1.12rem);
    line-height: 1.9;
}

.membership-principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.membership-principles article {
    min-height: 176px;
    padding: clamp(1.3rem, 2.5vw, 1.8rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    border: 1px solid rgba(220, 239, 229, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.07);
}

.membership-principles span {
    color: #9fd0b8;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.membership-principles strong {
    color: #fff;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.45;
}

.membership-table-wrap {
    margin-top: 1.25rem;
    overflow-x: auto;
    border: 1px solid rgba(220, 239, 229, 0.18);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    box-shadow: 0 22px 50px rgba(4, 23, 16, 0.2);
}

.membership-table-head {
    min-width: 800px;
    padding: 1.5rem 1.6rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    border-bottom: 1px solid #dde7e0;
}

.membership-table-head .section-label {
    margin-bottom: 0.35rem;
    color: #41725f;
}

.membership-table-head h3 {
    margin: 0;
    color: #173529;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.membership-table-head > p {
    margin: 0;
    color: #6a7c73;
    font-size: 0.82rem;
    white-space: nowrap;
}

.membership-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.membership-table th,
.membership-table td {
    padding: 1.2rem 1.6rem;
    border-bottom: 1px solid #e2e9e4;
    text-align: left;
    vertical-align: middle;
}

.membership-table thead th {
    color: #63756c;
    background: #f2f7f4;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
}

.membership-table tbody th {
    color: #173529;
    white-space: nowrap;
}

.membership-table tbody td {
    color: #4c5b54;
}

.membership-table tbody td strong {
    color: #124734;
    font-size: 1.06rem;
    white-space: nowrap;
}

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

.membership-table tbody tr:hover {
    background: #f7faf8;
}

.tier-mark {
    display: inline-grid;
    min-width: 42px;
    height: 28px;
    margin-right: 0.55rem;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #6a7c73;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
}

.tier-dasom {
    background: #5f9177;
}

.tier-gaon {
    background: #32725a;
}

.tier-raon {
    background: #1d5943;
}

.tier-supia {
    background: #b18a35;
}

.membership-faq {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
    gap: clamp(2rem, 5vw, 5rem);
}

.membership-faq-head h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.membership-faq-list {
    border-top: 1px solid rgba(220, 239, 229, 0.22);
}

.membership-faq-list details {
    border-bottom: 1px solid rgba(220, 239, 229, 0.22);
}

.membership-faq-list summary {
    position: relative;
    padding: 1.25rem 2.5rem 1.25rem 0;
    color: #fff;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.membership-faq-list summary::-webkit-details-marker {
    display: none;
}

.membership-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    color: #9fd0b8;
    font-size: 1.35rem;
    transform: translateY(-50%);
}

.membership-faq-list details[open] summary::after {
    content: "−";
}

.membership-faq-list details p {
    margin: -0.25rem 0 1.35rem;
    padding-right: 2.5rem;
    color: #c9dcd2;
}

.roadmap-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.roadmap-flow span {
    position: relative;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(101, 126, 116, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    text-align: center;
    color: #20352d;
    font-size: 0.92rem;
}

.roadmap-flow span:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
    color: #618072;
}

.ir-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.5rem;
    align-items: start;
}

.contact-panel {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.contact-panel-title,
.ir-footer-name {
    margin: 0;
    color: #173529;
    font-size: 1.05rem;
    font-weight: 700;
}

.contact-panel div {
    display: grid;
    gap: 0.25rem;
}

.ir-footer {
    padding: 2.5rem 0;
}

.ir-footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.ir-footer-brand,
.ir-footer-note {
    display: grid;
    gap: 0.35rem;
}

.ir-footer-meta,
.ir-footer-note p {
    margin: 0;
    color: #aac1b5;
    font-size: 0.9rem;
}

.ir-footer-links {
    align-self: center;
    justify-content: center;
}

.ir-footer-note {
    justify-items: end;
    text-align: right;
}

.care-gap-market {
    background: linear-gradient(180deg, rgba(239, 245, 241, 0.72) 0%, rgba(248, 246, 241, 0.86) 100%);
    border-block: 1px solid rgba(101, 126, 116, 0.18);
}

.care-gap-head {
    max-width: 900px;
}

.care-gap-intro {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.55vw, 1.15rem);
    line-height: 1.85;
}

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

.care-stat-card,
.care-evidence-card,
.care-chart-panel,
.care-comparison-panel {
    border: 1px solid rgba(101, 126, 116, 0.22);
    background: rgba(255, 255, 255, 0.82);
}

.care-stat-card {
    min-height: 300px;
    padding: clamp(1.35rem, 2.4vw, 1.8rem);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.data-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.data-badge-official {
    color: #244c3d;
    background: #e8f1ec;
    border: 1px solid #cbded4;
}

.data-badge-strategy {
    color: #67562d;
    background: #f5eedc;
    border: 1px solid #e3d5b0;
}

.care-stat-value {
    margin-top: 1.25rem;
    color: var(--deep-green);
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.care-stat-card > p {
    margin: 1rem 0 0;
    color: #24362f;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 650;
}

.care-stat-detail {
    margin-top: 0.45rem;
    color: #60736a;
    font-size: 0.84rem;
}

.care-source,
.care-evidence-card a {
    margin-top: auto;
    padding-top: 1.2rem;
    color: #62736b;
    font-size: 0.75rem;
    line-height: 1.55;
    text-decoration: underline;
    text-decoration-color: rgba(98, 115, 107, 0.42);
    text-underline-offset: 3px;
}

.care-source:hover,
.care-evidence-card a:hover {
    color: var(--deep-green);
}

.care-evidence-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(101, 126, 116, 0.2);
    border-radius: 24px;
    background: rgba(101, 126, 116, 0.2);
}

.care-evidence-card {
    min-height: 190px;
    padding: 1.25rem;
    border: 0;
    display: flex;
    flex-direction: column;
}

.care-evidence-card > span {
    color: #587066;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.care-evidence-card > strong {
    margin-top: 0.7rem;
    color: #173d2f;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.care-evidence-card > p {
    margin: 0.55rem 0 0;
    color: #34483f;
    line-height: 1.55;
}

.care-evidence-card a {
    padding-top: 0.8rem;
}

.care-visual-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1rem;
    align-items: stretch;
}

.care-chart-panel,
.care-comparison-panel {
    padding: clamp(1.4rem, 2.6vw, 2rem);
    border-radius: 24px;
}

.care-chart-panel {
    display: flex;
    flex-direction: column;
}

.care-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.care-panel-head h3 {
    margin: 0.75rem 0 0;
    color: #1c342a;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.35;
}

.care-unit {
    color: #71827a;
    font-size: 0.75rem;
}

.care-bar-chart {
    margin-top: 2rem;
    display: grid;
    gap: 1.1rem;
}

.care-bar-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 0.75rem;
    align-items: center;
    color: #40554c;
    font-size: 0.85rem;
}

.care-bar-row strong {
    color: #243d33;
    font-size: 0.85rem;
    text-align: right;
}

.care-bar-track {
    height: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: #e6ece8;
}

.care-bar-track i {
    display: block;
    width: var(--bar-value);
    height: 100%;
    border-radius: inherit;
    background: #7c9e8f;
}

.care-bar-row-gap .care-bar-track i {
    background: var(--deep-green);
}

.care-market-compare {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.2fr);
    gap: 1rem;
    align-items: stretch;
}

.care-market-column {
    padding: 1.2rem;
    border-radius: 18px;
}

.care-market-existing {
    background: #f1f2ef;
    border: 1px solid #dde2de;
}

.care-market-maeumit {
    color: #f6fbf8;
    background: var(--deep-green);
}

.care-market-column h4 {
    margin: 0;
    font-size: 1rem;
}

.care-market-column ul {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.care-market-column li {
    position: relative;
    padding-left: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.45;
}

.care-market-column li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.65;
}

.care-market-arrow {
    align-self: center;
    color: #658073;
    font-size: 1.3rem;
}

.care-market-thesis {
    margin-top: 1.5rem;
    padding: clamp(1.75rem, 3.5vw, 2.75rem);
    border-radius: 24px;
    text-align: center;
    color: #f6fbf8;
    background: #123d2e;
}

.care-market-thesis .data-badge-strategy {
    color: #f3e6bf;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
}

.care-market-thesis p {
    margin: 1rem 0 0;
    font-size: clamp(1.35rem, 2.8vw, 2.2rem);
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.care-market-thesis small {
    display: block;
    margin-top: 1rem;
    color: #b9cdc4;
    font-size: 0.75rem;
    line-height: 1.6;
}

.growth-roadmap {
    position: relative;
    overflow: hidden;
    color: #f5f1e7;
    background:
        radial-gradient(circle at 88% 10%, rgba(143, 190, 165, 0.14) 0%, transparent 28%),
        radial-gradient(circle at 8% 92%, rgba(217, 234, 223, 0.08) 0%, transparent 32%),
        linear-gradient(150deg, #0d3a2b 0%, #123f30 48%, #0a3024 100%);
    border-block: 1px solid rgba(210, 229, 218, 0.16);
}

.growth-roadmap::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
}

.growth-roadmap .ir-shell {
    position: relative;
    z-index: 1;
}

.growth-roadmap-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: start;
}

.growth-roadmap .section-head {
    margin-bottom: 0;
}

.growth-roadmap .section-label,
.growth-visual figcaption > span,
.growth-flywheel-head > span {
    color: #a9cbb9;
}

.growth-roadmap .section-head h2 {
    max-width: 960px;
    color: #fffdf7;
    font-size: clamp(2.15rem, 3.7vw, 4rem);
    line-height: 1.14;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.growth-roadmap-copy {
    margin: 0;
    padding-bottom: 0.35rem;
    max-width: 70ch;
    color: #c7d8cf;
    font-size: clamp(1rem, 1.4vw, 1.13rem);
    line-height: 1.85;
}

.growth-scenario-note {
    margin-top: 2.5rem;
    padding: 1.15rem 0;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
    border-block: 1px solid rgba(216, 234, 223, 0.2);
}

.growth-scenario-note strong {
    color: #f4d894;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
}

.growth-scenario-note p {
    margin: 0;
    max-width: 92ch;
    color: #bfd0c7;
    font-size: 0.88rem;
    line-height: 1.75;
}

.growth-scenario-note b {
    color: #f7f2e8;
}

.growth-timeline {
    position: relative;
    margin: clamp(3.75rem, 7vw, 6.5rem) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    list-style: none;
}

.growth-timeline::before {
    content: "";
    position: absolute;
    top: 97px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #d8bf74 0%, #9ec3af 38%, #8eb69f 70%, #f3d88f 100%);
}

.growth-stage {
    position: relative;
    min-width: 0;
    padding: 0 clamp(1rem, 2vw, 1.75rem);
}

.growth-stage:first-child {
    padding-left: 0;
}

.growth-stage:last-child {
    padding-right: 0;
}

.growth-stage:not(:first-child) {
    border-left: 1px solid rgba(222, 237, 228, 0.12);
}

.growth-stage::before {
    content: "";
    position: absolute;
    top: 90px;
    left: clamp(1rem, 2vw, 1.75rem);
    width: 15px;
    height: 15px;
    border: 4px solid #123f30;
    border-radius: 50%;
    background: #f1d487;
    box-shadow: 0 0 0 1px rgba(241, 212, 135, 0.75);
}

.growth-stage:first-child::before {
    left: 0;
}

.growth-stage-head {
    min-height: 114px;
}

.growth-stage-head time {
    display: block;
    color: #fffdf8;
    font-size: clamp(2.4rem, 4vw, 4.1rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.055em;
    font-variant-numeric: tabular-nums;
}

.growth-stage-head time span {
    font-size: 0.5em;
    letter-spacing: 0;
}

.growth-stage-head p {
    margin: 0.65rem 0 0;
    color: #a9c9b8;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.08em;
}

.growth-stage-body {
    padding-top: 1.75rem;
}

.growth-stage-body h3 {
    min-height: 3.8em;
    margin: 0;
    color: #f6f2e8;
    font-size: clamp(1.03rem, 1.35vw, 1.22rem);
    line-height: 1.55;
}

.growth-stage-body > ul {
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.72rem;
    list-style: none;
}

.growth-stage-body > ul li {
    position: relative;
    padding-left: 0.9rem;
    color: #becfc6;
    font-size: 0.88rem;
    line-height: 1.55;
}

.growth-stage-body > ul li::before {
    content: "";
    position: absolute;
    top: 0.66em;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d8bd70;
}

.growth-stage-thesis {
    margin: 1.5rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(222, 237, 228, 0.16);
    color: #f0d68f;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.65;
}

.growth-goals {
    margin: 1.5rem 0 0;
    padding-top: 1rem;
    display: grid;
    gap: 0.58rem;
    border-top: 1px solid rgba(222, 237, 228, 0.16);
}

.growth-goals > div {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: baseline;
}

.growth-goals dt {
    color: #8fae9e;
    font-size: 0.74rem;
    line-height: 1.4;
}

.growth-goals dd {
    margin: 0;
    color: #f5f0e6;
    text-align: right;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
    font-variant-numeric: tabular-nums;
}

.growth-goals > div:last-child dd {
    color: #f0d68f;
}

.growth-visuals {
    margin-top: clamp(4.5rem, 9vw, 8rem);
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
    gap: clamp(2rem, 5vw, 5rem);
}

.growth-visual {
    min-width: 0;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(216, 234, 223, 0.22);
}

.growth-visual figcaption,
.growth-flywheel-head {
    display: grid;
    gap: 0.45rem;
}

.growth-visual figcaption > span,
.growth-flywheel-head > span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.growth-visual figcaption > strong,
.growth-flywheel-head h3 {
    margin: 0;
    color: #fffdf7;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.35;
}

.growth-visual figcaption > small {
    color: #91aa9d;
    font-size: 0.76rem;
    line-height: 1.5;
}

.growth-line-chart,
.growth-region-map {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 1.5rem;
}

.growth-chart-grid line {
    stroke: rgba(224, 237, 229, 0.14);
    stroke-width: 1;
}

.growth-chart-axis text {
    fill: #96afa2;
    font-size: 12px;
    font-family: inherit;
    font-variant-numeric: tabular-nums;
}

.growth-chart-area {
    fill: rgba(142, 190, 164, 0.12);
}

.growth-chart-line {
    fill: none;
    stroke: #f0d68f;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.growth-chart-points circle {
    fill: #f7f2e8;
    stroke: #d8b95f;
    stroke-width: 4;
    vector-effect: non-scaling-stroke;
}

.growth-chart-values text {
    fill: #fffdf7;
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.growth-map-land,
.growth-map-island {
    fill: url(#growth-map-fill);
    stroke: rgba(247, 242, 232, 0.7);
    stroke-width: 1.5;
}

.growth-map-hubs circle {
    fill: #f6d77f;
    stroke: #0d392b;
    stroke-width: 2;
}

.growth-map-wave {
    fill: none;
    stroke: #f0d68f;
    transform-box: fill-box;
    transform-origin: center;
}

.growth-map-wave-1 {
    stroke-width: 3;
}

.growth-map-wave-2 {
    stroke-width: 2;
    opacity: 0.65;
}

.growth-map-wave-3 {
    stroke-width: 1;
    opacity: 0.35;
}

.growth-map-labels path {
    fill: none;
    stroke: rgba(238, 244, 240, 0.48);
    stroke-width: 1;
}

.growth-map-labels text {
    fill: #f7f2e8;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
}

.growth-map-labels text:nth-of-type(even) {
    fill: #94ad9f;
    font-size: 11px;
    font-weight: 500;
}

.growth-region-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    color: #d5e2da;
    font-size: 0.82rem;
    font-weight: 700;
}

.growth-region-steps i {
    color: #d8bd70;
    font-style: normal;
}

.growth-flywheel {
    grid-column: 1 / -1;
}

.growth-flywheel-layout {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.flywheel-diagram {
    position: relative;
    width: min(100%, 620px);
    aspect-ratio: 1;
    margin: 0 auto;
}

.flywheel-orbit {
    position: absolute;
    inset: 7%;
    width: 86%;
    height: 86%;
}

.flywheel-orbit path {
    fill: none;
    stroke: rgba(223, 236, 228, 0.4);
    stroke-width: 2;
}

.flywheel-orbit marker path {
    fill: #d8bd70;
    stroke: none;
}

.flywheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34%;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    gap: 0.25rem;
    border: 1px solid rgba(240, 214, 143, 0.6);
    border-radius: 50%;
    background: rgba(8, 42, 31, 0.92);
    text-align: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 48px rgba(144, 190, 166, 0.13);
}

.flywheel-center strong {
    color: #f0d68f;
    font-size: clamp(0.7rem, 1.3vw, 1rem);
    letter-spacing: 0.08em;
}

.flywheel-center span {
    color: #aac0b4;
    font-size: clamp(0.55rem, 0.9vw, 0.7rem);
    letter-spacing: 0.05em;
}

.flywheel-node {
    position: absolute;
    width: 30%;
    min-height: 68px;
    padding: 0.65rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.45rem;
    align-items: center;
    border: 1px solid rgba(213, 230, 220, 0.24);
    border-radius: 18px;
    background: rgba(248, 246, 239, 0.94);
    color: #173f31;
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 26px rgba(2, 25, 17, 0.18);
}

.flywheel-node b {
    color: #9b741f;
    font-size: 0.7rem;
    font-variant-numeric: tabular-nums;
}

.flywheel-node span {
    font-size: clamp(0.7rem, 1.15vw, 0.9rem);
    font-weight: 700;
    line-height: 1.35;
}

.flywheel-node-1 {
    top: 9%;
    left: 50%;
}

.flywheel-node-2 {
    top: 27%;
    left: 84%;
}

.flywheel-node-3 {
    top: 72%;
    left: 84%;
}

.flywheel-node-4 {
    top: 91%;
    left: 50%;
}

.flywheel-node-5 {
    top: 72%;
    left: 16%;
}

.flywheel-node-6 {
    top: 27%;
    left: 16%;
}

.growth-flywheel-copy > p {
    margin: 0;
    color: #f2d68e;
    font-size: clamp(1.25rem, 2.4vw, 2.05rem);
    font-weight: 700;
    line-height: 1.48;
    letter-spacing: -0.025em;
}

.growth-flywheel-copy ol {
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    gap: 0;
    list-style: none;
    border-top: 1px solid rgba(216, 234, 223, 0.18);
}

.growth-flywheel-copy li {
    padding: 0.78rem 0;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(216, 234, 223, 0.12);
    color: #c3d3ca;
    font-size: 0.86rem;
}

.growth-flywheel-copy li span {
    color: #d9bd70;
    font-size: 0.72rem;
    font-weight: 700;
}

.growth-footnote {
    margin: 3.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(216, 234, 223, 0.16);
    color: #91aa9d;
    font-size: 0.76rem;
    line-height: 1.7;
}

@media (max-width: 1080px) {
    .growth-roadmap-intro,
    .growth-flywheel-layout {
        grid-template-columns: 1fr;
    }

    .growth-roadmap-copy br {
        display: none;
    }

    .growth-visuals {
        grid-template-columns: 1fr;
    }

    .growth-flywheel {
        grid-column: auto;
    }

    .growth-flywheel-copy {
        max-width: 680px;
    }
}

@media (max-width: 900px) {
    .growth-timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 3.5rem;
        padding-left: 2.75rem;
    }

    .growth-timeline::before {
        top: 8px;
        right: auto;
        bottom: 8px;
        left: 7px;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, #d8bf74 0%, #9ec3af 50%, #f3d88f 100%);
    }

    .growth-stage,
    .growth-stage:first-child,
    .growth-stage:last-child {
        padding: 0;
        border-left: 0;
    }

    .growth-stage::before,
    .growth-stage:first-child::before {
        top: 7px;
        left: -44px;
    }

    .growth-stage-head {
        min-height: 0;
    }

    .growth-stage-body {
        padding-top: 1.4rem;
    }

    .growth-stage-body h3 {
        min-height: 0;
    }

    .growth-stage-body > ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .growth-goals {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 2rem;
    }
}

@media (max-width: 760px) {
    .ir-page .section-head h2 br,
    .ir-page .section-head h3 br,
    .ir-page .care-gap-intro br,
    .ir-page .care-market-thesis br,
    .ir-page blockquote br {
        display: none;
    }

    .growth-roadmap .section-head h2 {
        font-size: clamp(1.95rem, 8.4vw, 2.45rem);
        line-height: 1.22;
        letter-spacing: -0.045em;
    }

    .growth-roadmap-copy {
        line-height: 1.75;
    }

    .growth-scenario-note {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .growth-stage-body > ul,
    .growth-goals {
        grid-template-columns: 1fr;
    }

    .growth-visuals {
        gap: 3.5rem;
    }

    .growth-chart-axis text {
        font-size: 10px;
    }

    .growth-chart-values text {
        font-size: 14px;
    }

    .growth-region-steps {
        gap: 0.4rem;
        font-size: 0.72rem;
    }

    .flywheel-diagram {
        width: calc(100% + 18px);
        margin-left: -9px;
    }

    .flywheel-node {
        width: 32%;
        min-height: 54px;
        padding: 0.45rem;
        gap: 0.25rem;
        border-radius: 13px;
    }

    .flywheel-node span {
        font-size: clamp(0.58rem, 2.7vw, 0.72rem);
    }

    .flywheel-node b {
        font-size: 0.58rem;
    }

    .growth-flywheel-copy > p br {
        display: none;
    }
}

.patent-trust-row {
    display: flex;
    justify-content: flex-start;
}

.patent-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 42px;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(52, 100, 81, 0.28);
    border-radius: 999px;
    color: #244c3c;
    background: rgba(239, 246, 242, 0.9);
}

.patent-trust-badge span {
    font-size: 0.78rem;
    font-weight: 700;
}

.patent-trust-badge strong {
    padding-left: 0.75rem;
    border-left: 1px solid rgba(52, 100, 81, 0.24);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.patent-evidence {
    background:
        radial-gradient(700px 420px at 92% 8%, rgba(18, 71, 52, 0.07) 0%, transparent 62%),
        linear-gradient(180deg, #fbfaf6 0%, #f3f0e7 100%);
    border-bottom: 1px solid rgba(101, 126, 116, 0.18);
    scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.patent-evidence-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.patent-evidence-head {
    margin-bottom: 0;
}

.patent-evidence-head h3 {
    margin: 0;
    color: #214438;
    font-size: clamp(1.25rem, 2.1vw, 1.65rem);
    line-height: 1.55;
    letter-spacing: -0.025em;
}

.patent-evidence-head > p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: clamp(0.98rem, 1.35vw, 1.08rem);
    line-height: 1.85;
}

.patent-facts {
    margin: 2rem 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(101, 126, 116, 0.22);
    border-radius: 20px;
    background: rgba(101, 126, 116, 0.2);
}

.patent-fact {
    min-height: 96px;
    padding: 1rem 1.1rem;
    display: grid;
    align-content: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.84);
}

.patent-fact-status {
    grid-column: 1 / -1;
}

.patent-fact dt {
    color: #64776e;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.patent-fact dd {
    margin: 0;
    color: #233a31;
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 650;
}

.patent-fact-emphasis dd {
    color: var(--deep-green);
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    letter-spacing: -0.02em;
}

.patent-fact-status dd {
    color: var(--deep-green);
}

.patent-elements {
    margin-top: 1.5rem;
}

.patent-elements-title {
    margin: 0 0 0.85rem;
    color: #2f5144;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.patent-elements ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.patent-elements li {
    min-height: 48px;
    padding: 0.65rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(101, 126, 116, 0.2);
    border-radius: 14px;
    color: #334c42;
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.patent-elements li span {
    color: #6f867b;
    font-size: 0.7rem;
    font-weight: 700;
}

.patent-thesis {
    margin: 1.5rem 0 0;
    padding: 1.4rem 1.5rem;
    border-left: 4px solid #4e806c;
    border-radius: 0 16px 16px 0;
    color: #f5faf7;
    background: var(--deep-green);
    font-size: clamp(1.05rem, 1.65vw, 1.3rem);
    line-height: 1.65;
    font-weight: 700;
}

.patent-document-card {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    overflow: hidden;
    border: 1px solid rgba(101, 126, 116, 0.25);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
}

.patent-document-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: #ecebe6;
}

.document-viewer-link {
    cursor: zoom-in;
}

.document-viewer-link img {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.document-viewer-link:hover img {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(17, 54, 43, 0.16);
}

.document-viewer-link:focus-visible {
    outline: 3px solid #d4b66f;
    outline-offset: -3px;
}

.patent-document-preview img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
    border: 1px solid #d8d8d4;
    background: #fff;
}

.patent-document-meta {
    padding: 1.25rem;
    display: grid;
    justify-items: start;
    gap: 0.45rem;
}

.patent-document-meta > span {
    color: #687a72;
    font-size: 0.75rem;
}

.patent-document-meta > strong {
    color: var(--deep-green);
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

.patent-document-meta > p {
    margin: 0;
    color: #687a72;
    font-size: 0.82rem;
}

.patent-document-meta .btn {
    margin-top: 0.75rem;
}

.mou-evidence {
    color: #f7faf8;
    background:
        radial-gradient(720px 440px at 86% 18%, rgba(191, 158, 88, 0.14), transparent 64%),
        linear-gradient(145deg, #0d3027 0%, #123d31 58%, #0b2b23 100%);
    scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.mou-evidence-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.mou-evidence .section-label {
    color: #d4b66f;
}

.mou-evidence-head {
    margin-bottom: 0;
}

.mou-evidence-head h2 {
    color: #fff;
}

.mou-evidence-head > p:last-child {
    margin: 0;
    color: #c9d8d2;
    font-size: clamp(0.98rem, 1.35vw, 1.08rem);
    line-height: 1.9;
}

.mou-facts {
    margin: 2rem 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(226, 210, 171, 0.24);
    border-radius: 20px;
    background: rgba(226, 210, 171, 0.2);
}

.mou-facts > div {
    min-height: 100px;
    padding: 1rem 1.1rem;
    display: grid;
    align-content: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.06);
}

.mou-facts dt {
    color: #d4b66f;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.mou-facts dd {
    margin: 0;
    color: #f5f8f6;
    font-size: 0.92rem;
    line-height: 1.5;
    font-weight: 650;
}

.mou-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 0.5rem;
    border-radius: 50%;
    background: #d4b66f;
    box-shadow: 0 0 0 4px rgba(212, 182, 111, 0.13);
}

.mou-thesis {
    margin: 1.5rem 0 0;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(226, 210, 171, 0.25);
    border-left: 4px solid #d4b66f;
    border-radius: 0 18px 18px 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    font-size: clamp(1.05rem, 1.65vw, 1.3rem);
    line-height: 1.65;
    font-weight: 700;
}

.mou-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.mou-evidence .mou-actions .btn-primary {
    color: #10372d;
    background: #d7ba73;
    border-color: #d7ba73;
}

.mou-evidence .mou-actions .btn-ghost {
    color: #f5faf7;
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.04);
}

.mou-document-card {
    overflow: hidden;
    border: 1px solid rgba(226, 210, 171, 0.32);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.mou-document-card > a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem;
    background: #e7e5de;
}

.mou-document-card img {
    display: block;
    width: 100%;
    max-height: 570px;
    object-fit: contain;
    border: 1px solid #d5d3cb;
    background: #fff;
}

.mou-document-caption {
    padding: 1.2rem 1.3rem 1.35rem;
    display: grid;
    gap: 0.4rem;
}

.mou-document-caption span {
    color: #d4b66f;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.mou-document-caption strong {
    color: #fff;
    font-size: 1.05rem;
}

.mou-document-caption p {
    margin: 0;
    color: #bfcfc8;
    font-size: 0.78rem;
    line-height: 1.55;
}

@media (max-width: 1080px) {
    .ir-page .header-shell {
        grid-template-columns: auto 1fr;
    }

    .ir-page .menu-toggle {
        display: block;
        justify-self: end;
        grid-column: 2;
        grid-row: 1;
    }

    .ir-page .ir-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        border-radius: 14px;
    }

    .ir-page .ir-nav.open {
        display: flex;
    }

    .ir-page .header-cta {
        display: none;
    }

    .ir-brand-logo {
        height: 34px;
    }

    .ir-hero-grid,
    .ir-contact-grid {
        grid-template-columns: 1fr;
    }

    .ir-main {
        padding-top: var(--header-height);
    }

    .strategy-grid,
    .market-grid,
    .roadmap-flow,
    .ir-panel-grid,
    .ir-truths {
        grid-template-columns: 1fr;
    }

    .membership-intro,
    .membership-faq {
        grid-template-columns: 1fr;
    }

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

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

    .care-visual-grid {
        grid-template-columns: 1fr;
    }

    .patent-evidence-grid {
        grid-template-columns: 1fr;
    }

    .mou-evidence-grid {
        grid-template-columns: 1fr;
    }

    .mou-document-card {
        width: min(560px, 100%);
    }

    .patent-document-card {
        position: static;
        width: min(560px, 100%);
    }

    .patent-document-preview img {
        max-height: 560px;
    }

    .roadmap-flow span:not(:last-child)::after {
        content: "↓";
        right: 50%;
        top: auto;
        bottom: -18px;
        transform: translateX(50%);
    }

    .ir-footer-grid {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .ir-footer-links,
    .ir-footer-note {
        justify-content: flex-start;
        justify-items: start;
        text-align: left;
    }
}

@media (max-width: 760px) {
    .ir-shell,
    .ir-page .header-shell,
    .ir-footer-grid {
        width: min(1280px, calc(100% - 28px));
    }

    .ir-hero {
        padding: 40px 0 3.5rem;
    }

    .care-gap-intro br {
        display: none;
    }

    .membership-intro h2 br {
        display: none;
    }

    .membership-principles {
        grid-template-columns: 1fr;
    }

    .membership-principles article {
        min-height: 150px;
    }

    .membership-table-wrap {
        overflow: hidden;
        border-radius: 22px;
    }

    .membership-table-head {
        min-width: 0;
        padding: 1.25rem 1.15rem;
        align-items: flex-start;
    }

    .membership-table {
        display: block;
        min-width: 0;
        padding: 0.8rem;
    }

    .membership-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
        border: 0;
    }

    .membership-table tbody {
        display: grid;
        gap: 0.8rem;
    }

    .membership-table tbody tr {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: hidden;
        border: 1px solid #dce6df;
        border-radius: 16px;
        background: #fff;
    }

    .membership-table tbody tr:hover {
        background: #fff;
    }

    .membership-table tbody th,
    .membership-table tbody td {
        display: grid;
        min-width: 0;
        padding: 0.9rem;
        border-bottom: 1px solid #e2e9e4;
    }

    .membership-table tbody th {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        background: #f2f7f4;
        white-space: normal;
    }

    .membership-table tbody td {
        align-content: start;
        gap: 0.25rem;
        font-size: 0.88rem;
    }

    .membership-table tbody td:nth-of-type(3) {
        grid-column: 1 / -1;
        border-bottom: 0;
    }

    .membership-table tbody td::before {
        color: #73847b;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    .membership-table tbody td:nth-of-type(1)::before {
        content: "분기 활동매출";
    }

    .membership-table tbody td:nth-of-type(2)::before {
        content: "월 이용료";
    }

    .membership-table tbody td:nth-of-type(3)::before {
        content: "적용 안내";
    }

    .membership-table tbody td strong {
        white-space: normal;
    }

    .membership-faq {
        margin-top: 2.5rem;
    }

    .care-stat-grid,
    .care-evidence-grid,
    .care-market-compare {
        grid-template-columns: 1fr;
    }

    .care-stat-card {
        min-height: 270px;
    }

    .care-evidence-card {
        min-height: 175px;
    }

    .care-market-arrow {
        justify-self: center;
        transform: rotate(90deg);
    }

    .patent-trust-badge {
        gap: 0.55rem;
        padding-inline: 0.75rem;
    }

    .patent-trust-badge strong {
        padding-left: 0.55rem;
        font-size: 0.75rem;
    }

    .patent-facts,
    .patent-elements ol {
        grid-template-columns: 1fr;
    }

    .patent-fact-status {
        grid-column: auto;
    }

    .patent-document-card {
        width: 100%;
    }

    .patent-document-preview {
        padding: 1rem;
    }

    .patent-document-preview img {
        max-height: 460px;
    }

    .mou-facts {
        grid-template-columns: 1fr;
    }

    .mou-document-card {
        width: 100%;
    }

    .mou-document-card img {
        max-height: 500px;
    }

    .mou-actions {
        display: grid;
    }

    .mou-actions .btn {
        width: 100%;
    }

    .company-logo-wrap {
        width: min(100%, 280px);
    }

    .company-logo {
        width: min(100%, 280px);
        height: 64px;
    }

    .ir-hero-logo {
        height: 30px;
    }

    .ir-section {
        padding: 4rem 0;
    }

    .ir-panel,
    .strategy-item,
    .market-panel,
    .contact-panel {
        border-radius: 24px;
    }

    .ir-truths {
        gap: 0.65rem;
    }

    .ir-truths li {
        text-align: left;
        border-radius: 16px;
    }
}

body.signup-page {
    overflow-x: hidden;
    background:
        radial-gradient(900px 520px at 12% 0%, rgba(18, 71, 52, 0.08) 0%, transparent 58%),
        radial-gradient(900px 520px at 88% 18%, rgba(18, 71, 52, 0.06) 0%, transparent 62%),
        linear-gradient(180deg, #fbfaf5 0%, #f6f2e9 100%);
}

.signup-main {
    overflow: hidden;
}

.signup-hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 6.5rem 0 4.5rem;
}

.signup-shell {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

.signup-intro {
    max-width: 760px;
}

.signup-page .page-slogan {
    margin: 0;
}

.signup-intro h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.signup-description {
    margin: 1.25rem 0 0;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.8;
    color: var(--muted);
}

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

.role-panel {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(106, 134, 123, 0.28);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 240, 229, 0.92) 100%);
    box-shadow: 0 14px 30px rgba(23, 44, 36, 0.04);
    transition: transform 0.25s var(--easing), border-color 0.25s var(--easing), background-color 0.25s var(--easing), box-shadow 0.25s var(--easing);
}

.role-panel:hover,
.role-panel:focus-within {
    transform: translateY(-4px);
    border-color: rgba(47, 104, 82, 0.46);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 246, 241, 0.98) 100%);
    box-shadow: 0 18px 34px rgba(23, 44, 36, 0.08);
}

.role-panel.is-selected {
    border-color: rgba(47, 104, 82, 0.68);
    background: linear-gradient(180deg, rgba(245, 250, 247, 0.98) 0%, rgba(232, 241, 235, 0.98) 100%);
    box-shadow: 0 20px 36px rgba(19, 54, 40, 0.1);
}

.role-panel-head {
    display: grid;
    gap: 0.85rem;
}

.role-kicker {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #355b4a;
}

.role-panel h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.role-copy {
    margin: 1.5rem 0 2.25rem;
    font-size: clamp(1rem, 1.45vw, 1.08rem);
    line-height: 1.8;
    color: var(--muted);
}

.role-cta {
    align-self: flex-start;
    min-width: 220px;
    padding-inline: 1.4rem;
    box-shadow: 0 8px 16px rgba(18, 71, 52, 0.06);
}

.role-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(18, 71, 52, 0.12);
}

.signup-footer {
    padding: 2.5rem 0;
}

.signup-footer-grid {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.signup-footer-brand,
.signup-footer-meta {
    display: grid;
    gap: 0.35rem;
}

.signup-footer-name {
    margin: 0;
    color: #f4faf7;
    font-size: 1.05rem;
    font-weight: 700;
}

.signup-footer-tagline,
.signup-footer-meta p {
    margin: 0;
    color: #aac1b5;
    font-size: 0.9rem;
}

.signup-footer-links {
    align-self: center;
    justify-content: center;
}

.signup-footer-meta {
    justify-items: end;
    text-align: right;
}

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

    .role-panel {
        min-height: 360px;
    }

    .signup-footer-grid {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .signup-footer-links,
    .signup-footer-meta {
        justify-content: flex-start;
        justify-items: start;
        text-align: left;
    }
}

@media (max-width: 760px) {
    .signup-shell,
    .signup-footer-grid {
        width: min(1280px, calc(100% - 28px));
    }

    .signup-hero {
        padding: 5.5rem 0 3.5rem;
    }

    .header-logo {
        height: 34px;
    }

    .page-slogan {
        width: min(1280px, calc(100% - 28px));
    }

    .role-panel {
        min-height: 340px;
        border-radius: 24px;
    }

    .role-cta {
        width: 100%;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .signup-page *,
    .signup-page *::before,
    .signup-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
    .growth-roadmap .reveal,
    .growth-roadmap .reveal.in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
    border-radius: 8px;
}

@media (max-width: 1080px) {
    .main-logo-hero,
    .main-logo-company {
        width: min(480px, 100%);
    }

    .main-logo-ir {
        width: min(360px, 100%);
    }

    .header-shell {
        grid-template-columns: 220px 1fr;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
        grid-column: 2;
        grid-row: 1;
    }

    .global-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid var(--line);
        border-radius: 14px;
    }

    .global-nav.open {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .hero-grid,
    .how .wrap,
    .brand-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        justify-items: start;
    }

    .patent-flow {
        grid-template-columns: 1fr;
    }

    .patent-flow span:not(:last-child)::after {
        content: "↓";
        top: auto;
        bottom: -18px;
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 760px) {
    .wrap,
    .header-shell,
    .hero-grid,
    .story {
        width: min(var(--max-width), calc(100% - 28px));
    }

    .hero {
        padding: calc(var(--header-height) + 1.5rem) 0 7rem;
    }

    .brand-horizontal {
        width: fit-content;
        height: auto;
    }

    .main-logo-header {
        width: auto;
        height: 48px;
    }

    .main-logo-header .main-logo-image {
        width: auto;
        height: 48px;
    }

    .main-logo-hero,
    .main-logo-company {
        width: 100%;
    }

    .main-logo-ir {
        width: min(320px, 100%);
    }

    .booking-ui {
        padding: 18px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-badges,
    .editorial-grid,
    .booking-summary,
    .slot-strip,
    .slot-strip-time {
        grid-template-columns: 1fr;
    }

    .hero-line {
        white-space: normal;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .brand-vertical {
        width: 180px;
        height: 51px;
    }

    .main-logo-footer {
        width: 180px;
        height: 60px;
    }
}
