/* ============================================
   KR INSIGHT — Sunset Coral Editorial Fintech
   Palette: #FF6B6B / #FFB6B9 / #2C3E50
   Type   : Nanum Gothic + Nanum Myeongjo
   ============================================ */

:root {
    --coral: #FF6B6B;
    --coral-dark: #E94F4F;
    --coral-soft: #FFB6B9;
    --coral-bg: #FFF1F1;
    --ink: #2C3E50;
    --ink-deep: #1A2535;
    --cream: #FAF6F1;
    --paper: #FFFFFF;
    --line: rgba(44, 62, 80, 0.10);
    --mute: rgba(44, 62, 80, 0.62);

    --font-sans: 'Nanum Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    --font-serif: 'Nanum Myeongjo', 'Times New Roman', serif;

    --radius: 22px;
    --radius-sm: 14px;
    --shadow-card: 0 24px 60px -28px rgba(44, 62, 80, 0.28);
    --shadow-pop: 0 30px 80px -30px rgba(255, 107, 107, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 110px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   TICKER BAR
   ============================================ */
.ticker-bar {
    background: var(--ink-deep);
    color: #fff;
    overflow: hidden;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 107, 107, 0.18);
    position: relative;
    z-index: 5;
}
.ticker-track {
    display: inline-flex;
    gap: 48px;
    white-space: nowrap;
    animation: tickerRoll 40s linear infinite;
    padding-left: 100%;
}
.ticker-item {
    font-size: 13px;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}
.ticker-item i { color: var(--coral-soft); }
.ticker-item strong { font-weight: 800; opacity: 0.92; }
.ticker-item em.up { color: #4ADE80; font-style: normal; font-weight: 700; }
.ticker-item em.down { color: var(--coral); font-style: normal; font-weight: 700; }
@keyframes tickerRoll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   LOGO (used in footer)
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-soft) 100%);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 8px 20px -6px rgba(255, 107, 107, 0.65);
}
.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--ink);
}
.logo-text em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    color: var(--coral);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.18); }
    50%      { box-shadow: 0 0 0 8px rgba(255, 107, 107, 0.05); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    background:
        radial-gradient(circle at 85% 30%, rgba(255, 182, 185, 0.45) 0%, transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(255, 107, 107, 0.20) 0%, transparent 50%),
        var(--cream);
    padding: 80px 40px 100px;
    overflow: hidden;
}
.hero-grain {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(44, 62, 80, 0.06) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.7;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: blobFloat 14s ease-in-out infinite;
}
.blob-1 {
    width: 380px; height: 380px;
    background: var(--coral-soft);
    top: -120px; right: -80px;
    opacity: 0.55;
}
.blob-2 {
    width: 280px; height: 280px;
    background: var(--coral);
    bottom: -120px; left: 10%;
    opacity: 0.25;
    animation-delay: -7s;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(30px, -20px) scale(1.08); }
}

.hero-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border: 1.5px solid rgba(255, 107, 107, 0.35);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.03em;
    backdrop-filter: blur(6px);
    margin-bottom: 32px;
}
.live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.20);
    animation: pulse 1.6s infinite;
}
.live-dot.small {
    width: 6px; height: 6px;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.20);
}

.hero-title {
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 32px;
}
.hero-title .line {
    display: block;
    overflow: hidden;
}
.hero-title .line em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    color: var(--coral);
    position: relative;
}
.hero-title .accent {
    color: var(--coral);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 800;
}

.hero-sub {
    font-size: 17px;
    color: var(--mute);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 40px;
}
.hero-sub strong {
    color: var(--ink);
    font-weight: 800;
    background: linear-gradient(transparent 62%, rgba(255, 107, 107, 0.22) 62%);
    padding: 0 3px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.02em;
    transition: all 0.28s ease;
    white-space: nowrap;
}
.btn-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    object-fit: contain;
}
.btn-arrow {
    transition: transform 0.28s ease;
    font-size: 13px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: #fff;
    box-shadow: 0 18px 40px -18px rgba(255, 107, 107, 0.85),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--coral-dark), var(--coral));
    opacity: 0;
    transition: opacity 0.28s ease;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px -16px rgba(255, 107, 107, 0.95);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-primary.lg {
    padding: 22px 38px;
    font-size: 16px;
    margin-top: 8px;
}
.btn-primary.xl {
    padding: 24px 48px;
    font-size: 17px;
    margin-top: 12px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 100px;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    font-weight: 800;
    font-size: 14px;
    transition: all 0.28s ease;
}
.btn-ghost i {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: grid; place-items: center;
    font-size: 9px;
}
.btn-ghost:hover {
    background: var(--ink);
    color: #fff;
}
.btn-ghost:hover i { background: var(--coral); }

.hero-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 13px;
    color: var(--mute);
    font-weight: 700;
}
.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.meta-item i { color: var(--coral); }
.meta-divider {
    width: 1px; height: 16px;
    background: var(--line);
}

/* ============================================
   HERO VISUAL
   ============================================ */
.hero-right { position: relative; }
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 560px;
    margin-left: auto;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatMain 6s ease-in-out infinite;
    filter: drop-shadow(0 40px 60px rgba(44, 62, 80, 0.12));
}
@keyframes floatMain {
    0%, 100% { transform: translateY(0) rotate(0); }
    50%      { transform: translateY(-14px) rotate(-1deg); }
}

.float-card {
    position: absolute;
    background: var(--paper);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
.card-price {
    top: 8%;
    left: -6%;
    animation: floatA 7s ease-in-out infinite;
    min-width: 200px;
}
.fc-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--mute);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.fc-value {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 800;
    color: var(--coral);
    letter-spacing: -0.01em;
    line-height: 1;
    margin-bottom: 8px;
}
.fc-foot {
    font-size: 11px;
    color: var(--mute);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
@keyframes floatA {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.card-mini {
    bottom: 20%;
    left: -10%;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatB 8s ease-in-out infinite;
}
.card-mini i {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255, 107, 107, 0.12);
    color: var(--coral);
    display: grid; place-items: center;
    font-size: 14px;
}
.fc-mini-label {
    font-size: 10px;
    color: var(--mute);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.fc-mini-val {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
}
@keyframes floatB {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
}

.card-badge {
    top: 14%;
    right: -8%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px 14px 14px;
    animation: floatC 9s ease-in-out infinite;
}
.badge-ring {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    display: grid;
    place-items: center;
    color: #fff;
    position: relative;
    box-shadow: 0 8px 20px -4px rgba(255, 107, 107, 0.55);
}
.badge-num {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}
.badge-plus {
    position: absolute;
    top: 8px; right: 10px;
    font-size: 11px;
    font-weight: 800;
}
.badge-text {
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
}
@keyframes floatC {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-16px); }
}

.float-spark {
    position: absolute;
    bottom: 5%;
    right: -4%;
    width: 220px;
    height: 80px;
    background: var(--paper);
    border-radius: var(--radius-sm);
    padding: 12px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line);
    animation: floatB 7s ease-in-out infinite;
}

.float-tag {
    position: absolute;
    background: var(--ink);
    color: #fff;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.float-tag i { color: var(--coral-soft); }
.tag-1 { top: 48%; right: -2%; animation: floatA 6s ease-in-out infinite; }
.tag-2 { bottom: 38%; left: 4%; animation: floatC 7s ease-in-out infinite; background: var(--coral); }

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--mute);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}
.hero-scroll i { animation: bounceY 1.8s ease-in-out infinite; }
@keyframes bounceY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* ============================================
   FEATURE STRIP
   ============================================ */
.strip {
    background: var(--ink);
    padding: 24px 40px;
    overflow: hidden;
}
.strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.strip-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.strip-item i {
    color: var(--coral-soft);
    font-size: 14px;
}
.strip-item.highlight {
    background: var(--coral);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
}
.strip-item.highlight i { color: #fff; }

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
    padding: 120px 40px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}
.section-head {
    display: inline-flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}
.section-head.center {
    display: flex;
    justify-content: center;
    width: 100%;
}
.section-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 56px;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
    letter-spacing: -0.02em;
}
.section-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--ink);
    text-transform: uppercase;
}
.section-head.light .section-label { color: rgba(255, 255, 255, 0.85); }

.section-title {
    font-size: clamp(36px, 4.4vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 28px;
}
.section-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 800;
    color: var(--coral);
}
.section-title.light { color: #fff; }
.section-title.center { text-align: center; }

.section-lead {
    font-size: 17px;
    color: var(--mute);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 36px;
}
.section-lead.light { color: rgba(255, 255, 255, 0.75); }
.section-lead.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============================================
   SECTION 01 — COMMUNITY (LEFT VISUAL + 2x2 GRID)
   ============================================ */
.community .section-title { max-width: 800px; }

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    margin-top: 56px;
    align-items: stretch;
}

.community-visual { position: relative; }

.cv-frame {
    position: relative;
    height: 100%;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 107, 107, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 10% 95%, rgba(255, 182, 185, 0.18) 0%, transparent 50%),
        linear-gradient(160deg, var(--ink) 0%, var(--ink-deep) 100%);
    overflow: hidden;
    display: grid;
    place-items: center;
}
.cv-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 26px 26px;
    pointer-events: none;
}

.cv-img {
    position: relative;
    width: 86%;
    max-width: 460px;
    z-index: 2;
    animation: floatMain 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.35));
}

.cv-card {
    position: absolute;
    z-index: 3;
    background: var(--paper);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    box-shadow: 0 24px 50px -16px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.cv-stat {
    top: 32px;
    left: 24px;
    min-width: 180px;
    animation: floatA 7s ease-in-out infinite;
}
.fc-unit {
    font-size: 18px;
    margin-left: 2px;
    color: var(--ink);
    font-family: var(--font-sans);
    font-style: normal;
}
.cv-stat .fc-value { font-size: 28px; }

.cv-mini {
    bottom: 32px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatB 8s ease-in-out infinite;
}
.cv-mini i {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255, 107, 107, 0.12);
    color: var(--coral);
    display: grid; place-items: center;
    font-size: 14px;
}

.cv-orbit {
    position: absolute;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--paper);
    box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.45);
    display: grid; place-items: center;
    color: var(--coral);
    font-size: 16px;
    z-index: 3;
}
.orbit-a { top: 36%; right: 28px; animation: floatA 5s ease-in-out infinite; }
.orbit-b {
    bottom: 30%; right: 48px;
    animation: floatB 6s ease-in-out infinite;
    background: var(--coral);
    color: #fff;
    width: 56px; height: 56px;
    font-size: 18px;
}
.orbit-c { top: 62%; left: 26px; animation: floatC 7s ease-in-out infinite; }

.cv-tag {
    position: absolute;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.4);
    z-index: 3;
    letter-spacing: 0.02em;
}
.cv-tag-1 {
    top: 28px;
    right: 24px;
    background: var(--paper);
    color: var(--ink);
    animation: floatA 6s ease-in-out infinite;
}
.cv-tag-1 i { color: var(--coral); }
.cv-tag-2 {
    bottom: 24%;
    right: 24px;
    background: var(--coral);
    color: #fff;
    animation: floatC 7s ease-in-out infinite;
}
.cv-tag-2 i { color: #fff; }

/* Feature grid — 2x2 */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.feature-card {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 30px 28px;
    border: 1px solid var(--line);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 107, 107, 0.35);
}
.card-idx {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 15px;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}
.card-icon {
    width: 48px; height: 48px;
    border-radius: 13px;
    background: rgba(255, 107, 107, 0.10);
    color: var(--coral);
    display: grid;
    place-items: center;
    font-size: 18px;
    margin-bottom: 18px;
    transition: all 0.4s ease;
}
.feature-card:hover .card-icon {
    background: var(--coral);
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
}
.feature-card h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1.3;
}
.feature-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--mute);
}

/* ============================================
   SPLIT SECTIONS
   ============================================ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split.dark {
    background: var(--ink);
    max-width: none;
    margin: 0;
    padding: 140px 60px;
}
.split.dark .split-text,
.split.dark .split-visual {
    max-width: 600px;
}
.split.dark > .split-visual { justify-self: end; }
.split.dark > .split-text { justify-self: start; }

.bullet-list {
    list-style: none;
    margin-bottom: 36px;
}
.bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 1px dashed var(--line);
}
.bullet-list li i {
    color: var(--coral);
    font-size: 18px;
}
.bullet-list li:last-child { border-bottom: none; }

.schedule-card {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: #fff;
    padding: 22px 28px;
    border-radius: var(--radius-sm);
    margin-bottom: 36px;
    box-shadow: var(--shadow-pop);
    display: inline-flex;
    align-items: center;
    gap: 22px;
}
.sc-day {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    font-weight: 800;
}
.sc-time {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 14px;
    font-weight: 700;
}
.sc-time strong { font-size: 18px; }

.row-list { margin-bottom: 36px; }
.row-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.row-item:last-child { border-bottom: none; }
.row-ico {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255, 107, 107, 0.15);
    color: var(--coral-soft);
    display: grid; place-items: center;
    font-size: 15px;
    flex-shrink: 0;
}
.row-item h4 {
    font-size: 17px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 4px;
}
.row-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

/* ============================================
   SPLIT VISUAL — FLOATING IMG + ORBITS
   ============================================ */
.visual-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 540px;
    margin: 0 auto;
}
.split-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 40px 60px rgba(44, 62, 80, 0.18));
}
.float-y {
    animation: floatMain 6s ease-in-out infinite;
}
.float-y.delay { animation-delay: -3s; }

.orbit {
    position: absolute;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--paper);
    box-shadow: 0 12px 30px -8px rgba(44, 62, 80, 0.18);
    display: grid; place-items: center;
    color: var(--coral);
    font-size: 18px;
    border: 1px solid var(--line);
}
.orbit-1 { top: 6%; right: 8%; animation: floatA 5s ease-in-out infinite; }
.orbit-2 { bottom: 18%; left: 2%; animation: floatB 6s ease-in-out infinite; }
.orbit-3 { top: 50%; right: -2%; animation: floatC 7s ease-in-out infinite; background: var(--ink); color: var(--coral-soft); }

.pop-card { animation: floatA 7s ease-in-out infinite; }
.pop-a {
    top: 12%;
    left: -8%;
    min-width: 220px;
}
.pop-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 800;
    color: var(--coral);
    letter-spacing: 0.1em;
}
.pop-lbl {
    padding: 3px 8px;
    background: var(--coral);
    color: #fff;
    border-radius: 4px;
}
.pop-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px;
}
.pop-meta {
    font-size: 11px;
    color: var(--mute);
    font-weight: 700;
}
.pop-b {
    bottom: 14%;
    right: -6%;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: -3s;
}
.pop-ico {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255, 107, 107, 0.12);
    color: var(--coral);
    display: grid; place-items: center;
    font-size: 14px;
}
.pop-mini-lbl {
    font-size: 10px;
    color: var(--mute);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.pop-mini-val {
    font-size: 17px;
    color: var(--ink);
    font-weight: 800;
}

/* ============================================
   SPLIT-B (DARK)
   ============================================ */
.pulse-card {
    top: 10%;
    left: -10%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    animation: floatA 7s ease-in-out infinite;
    min-width: 260px;
}
.pulse-card > i {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    display: grid; place-items: center;
    font-size: 16px;
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.55);
    animation: ringPulse 1.6s infinite;
}
@keyframes ringPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.55); }
    100% { box-shadow: 0 0 0 16px rgba(255, 107, 107, 0); }
}
.pulse-lbl {
    font-size: 10px;
    color: var(--coral);
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 4px;
}
.pulse-msg {
    font-size: 15px;
    color: var(--ink);
    font-weight: 800;
}

.stat-card {
    padding: 22px 26px;
    text-align: left;
    animation: floatB 8s ease-in-out infinite;
}
.stat-a { bottom: 14%; left: -4%; }
.stat-b { top: 28%; right: -8%; animation-delay: -4s; }
.stat-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 48px;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat-unit {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    font-style: normal;
    margin-left: 4px;
    font-family: var(--font-sans);
}
.stat-lbl {
    font-size: 11px;
    color: var(--mute);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px;
}

.wave-deco {
    position: absolute;
    bottom: 4%;
    right: 4%;
    width: 220px;
    height: 70px;
    opacity: 0.9;
}

/* ============================================
   SECTION 04 — ARCHIVE
   ============================================ */
.archive {
    text-align: center;
    padding-top: 140px;
    padding-bottom: 140px;
}
.archive-bg {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}
.bg-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 520px;
    font-weight: 800;
    color: var(--coral);
    line-height: 0.8;
    letter-spacing: -0.04em;
}
.bg-num em {
    font-style: italic;
    font-size: 280px;
}
.archive-inner { position: relative; z-index: 2; }

.archive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 80px;
    text-align: left;
}

.ar-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin: 0 auto;
}
.ar-img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 40px 50px rgba(44, 62, 80, 0.15));
}
.ar-chip {
    position: absolute;
    background: var(--paper);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--ink);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ar-chip i { color: var(--coral); font-size: 14px; }
.chip-1 { top: 8%; left: -4%; animation: floatA 6s ease-in-out infinite; }
.chip-2 { bottom: 22%; left: -8%; animation: floatB 7s ease-in-out infinite; background: var(--ink); color: #fff; }
.chip-2 i { color: var(--coral-soft); }
.chip-3 { top: 38%; right: -6%; animation: floatC 8s ease-in-out infinite; }

.ar-list { padding-right: 20px; }
.ar-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.ar-row:last-of-type { border-bottom: none; }
.ar-row > i {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(255, 107, 107, 0.10);
    color: var(--coral);
    display: grid; place-items: center;
    font-size: 18px;
    flex-shrink: 0;
}
.ar-row h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--ink);
}
.ar-row p {
    font-size: 13px;
    color: var(--mute);
    font-weight: 700;
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta-final {
    position: relative;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 182, 185, 0.30) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.25) 0%, transparent 50%),
        var(--ink);
    padding: 140px 40px;
    overflow: hidden;
}
.cta-grain {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}
.cta-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border: 1.5px solid rgba(255, 182, 185, 0.4);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 32px;
    backdrop-filter: blur(6px);
}
.cta-tag i { color: var(--coral-soft); }
.cta-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.cta-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 800;
    color: var(--coral-soft);
}
.cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--ink-deep);
    padding: 40px 40px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.footer .logo-text { color: rgba(255, 255, 255, 0.92); font-size: 18px; }

/* ============================================
   FIXED BOTTOM CTA
   ============================================ */
.fixed-cta {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    pointer-events: none;
    padding: 0 20px;
}
.fixed-btn {
    pointer-events: auto;
    padding: 18px 38px;
    font-size: 15px;
    box-shadow: 0 24px 50px -14px rgba(255, 107, 107, 0.85),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
    animation: floatBtn 3s ease-in-out infinite;
}
@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .split { grid-template-columns: 1fr; gap: 60px; }
    .split.dark { padding: 100px 40px; }
    .split.dark > .split-visual,
    .split.dark > .split-text { justify-self: stretch; max-width: none; }
    .community-grid { grid-template-columns: 1fr; gap: 36px; }
    .cv-frame { min-height: 380px; height: auto; }
    .archive-grid { grid-template-columns: 1fr; gap: 60px; }
    .ar-list { padding-right: 0; }
    .bg-num { font-size: 320px; }
    .bg-num em { font-size: 180px; }
}

@media (max-width: 720px) {
    body { padding-bottom: 88px; }

    .ticker-bar { padding: 8px 0; }
    .ticker-item { font-size: 12px; }

    .hero { padding: 36px 18px 56px; }
    .hero-tag { margin-bottom: 20px; padding: 7px 14px; font-size: 12px; }
    .hero-title { font-size: clamp(38px, 11vw, 52px); margin-bottom: 18px; line-height: 1.02; }
    .hero-sub { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
    .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 24px; }
    .btn, .btn-ghost { justify-content: center; padding: 15px 22px; font-size: 14px; }
    .btn-primary.lg { padding: 17px 24px; font-size: 14px; }
    .btn-primary.xl { padding: 18px 28px; font-size: 15px; }
    .hero-meta { flex-wrap: wrap; gap: 10px 16px; font-size: 12px; }
    .hero-visual { max-width: 320px; margin-top: 12px; }
    .float-card { transform: scale(0.72); transform-origin: center; }
    .card-price { left: -4%; top: 4%; }
    .card-mini { left: -6%; bottom: 18%; }
    .card-badge { right: -6%; top: 8%; }
    .float-spark { width: 140px; height: 54px; right: -2%; bottom: 4%; }
    .float-tag { font-size: 11px; padding: 6px 11px; }
    .hero-scroll { display: none; }
    .hero-blob { filter: blur(60px); }
    .blob-1 { width: 220px; height: 220px; }
    .blob-2 { width: 180px; height: 180px; }

    .strip { padding: 14px 18px; }
    .strip-inner { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; gap: 18px; }
    .strip-inner::-webkit-scrollbar { display: none; }
    .strip-item { flex-shrink: 0; font-size: 12px; }
    .strip-item.highlight { padding: 5px 12px; }

    .section { padding: 60px 18px; }
    .section-head { gap: 12px; margin-bottom: 16px; }
    .section-num { font-size: 36px; }
    .section-label { font-size: 11px; letter-spacing: 0.22em; }
    .section-title { font-size: clamp(28px, 8vw, 36px); margin-bottom: 18px; }
    .section-lead { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }

    .community-grid { gap: 28px; margin-top: 36px; }
    .cv-frame { min-height: 380px; border-radius: 18px; }
    .cv-img { width: 70%; max-width: 260px; }
    .cv-stat { top: 18px; left: 14px; min-width: 140px; padding: 12px 14px; }
    .cv-stat .fc-value { font-size: 22px; }
    .cv-mini { bottom: 18px; left: 16px; padding: 10px 14px; gap: 10px; }
    .cv-mini i { width: 30px; height: 30px; font-size: 12px; }
    .cv-orbit { width: 40px; height: 40px; font-size: 13px; }
    .orbit-b { width: 44px; height: 44px; font-size: 15px; }
    .orbit-a { right: 14px; }
    .orbit-b { right: 24px; }
    .orbit-c { left: 14px; }
    .cv-tag { font-size: 10px; padding: 6px 11px; }
    .cv-tag-1 { top: 14px; right: 14px; }
    .cv-tag-2 { right: 14px; }

    .feature-grid { grid-template-columns: 1fr; gap: 12px; }
    .feature-card { padding: 22px 20px; border-radius: 16px; }
    .card-idx { margin-bottom: 12px; font-size: 13px; }
    .card-icon { width: 42px; height: 42px; font-size: 16px; margin-bottom: 14px; border-radius: 11px; }
    .feature-card h3 { font-size: 16px; margin-bottom: 8px; }
    .feature-card p { font-size: 13px; line-height: 1.65; }

    .split { gap: 36px; }
    .split.dark { padding: 60px 18px; }
    .split.dark .row-item h4 { font-size: 15px; }
    .visual-wrap { max-width: 300px; }
    .orbit { width: 42px; height: 42px; font-size: 14px; }

    /* Split sections — center text & controls on mobile */
    .split .split-text { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .split .section-head { justify-content: center; }
    .split .section-lead { margin-left: auto; margin-right: auto; }
    .split .split-text > .btn { align-self: center; }

    .bullet-list { margin: 0 auto 22px; display: inline-block; }
    .bullet-list li { padding: 9px 0; font-size: 14px; justify-content: center; gap: 10px; }
    .bullet-list li i { font-size: 16px; }

    /* Schedule card — compact horizontal pill, centered */
    .schedule-card {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 14px;
        padding: 14px 22px;
        margin: 0 auto 22px;
        border-radius: 16px;
    }
    .sc-day { font-size: 16px; }
    .sc-time {
        padding-left: 14px;
        border-left: 1px solid rgba(255,255,255,0.4);
        padding-top: 0;
        border-top: none;
        width: auto;
        font-size: 12px;
        gap: 8px;
    }
    .sc-time strong { font-size: 15px; }

    /* Real-time row list — center the whole block but keep icon+text rows left */
    .row-list { margin: 0 auto 24px; text-align: left; display: inline-block; }
    .row-item { gap: 12px; padding: 12px 0; }
    .row-ico { width: 36px; height: 36px; font-size: 13px; border-radius: 10px; }
    .row-item h4 { font-size: 15px; }
    .row-item p { font-size: 12px; }

    .archive { padding: 60px 18px; }
    .bg-num { font-size: 160px; opacity: 0.035; }
    .bg-num em { font-size: 80px; }
    .archive-grid { gap: 36px; margin-top: 40px; text-align: center; }
    .ar-visual { max-width: 260px; }
    .ar-chip { font-size: 10px; padding: 7px 12px; }
    .ar-list { display: flex; flex-direction: column; align-items: center; }
    .ar-list > .btn { align-self: center; margin-top: 12px; }
    .ar-row {
        padding: 16px 0;
        gap: 14px;
        width: 100%;
        max-width: 320px;
        text-align: left;
    }
    .ar-row > i { width: 38px; height: 38px; font-size: 14px; border-radius: 11px; }
    .ar-row h4 { font-size: 15px; }
    .ar-row p { font-size: 12px; }

    .cta-final { padding: 70px 18px; }
    .cta-tag { font-size: 12px; padding: 7px 14px; margin-bottom: 20px; }
    .cta-title { font-size: clamp(26px, 8vw, 36px); margin-bottom: 14px; }
    .cta-sub { font-size: 14px; margin-bottom: 8px; }

    .footer { padding: 24px 18px; }
    .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
    .footer p { font-size: 11px; }

    .fixed-cta { bottom: 16px; padding: 0 14px; }
    .fixed-btn { padding: 14px 22px; font-size: 13px; width: 100%; max-width: 360px; justify-content: center; }
    .fixed-btn .btn-icon { width: 20px; height: 20px; }
}

/* ============================================
   SCROLL REVEAL — handled by JS adding .in-view
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
