@charset "utf-8";

/* ============================================
   텔레그램 메시지 반응 가이드
   접두사: tg-rxn- (기존 사이트 오염 방지)
   CSS 변수 접두사: --tgrx-
   컬러 톤: 코랄 핑크(Coral Pink) + 골든 옐로우(Golden Yellow)
============================================ */

:root {
    --tgrx-coral: #f43f5e;
    --tgrx-coral-dark: #e11d48;
    --tgrx-coral-deep: #881337;
    --tgrx-coral-light: #fff1f2;
    --tgrx-coral-border: #fda4af;
    --tgrx-gold: #f59e0b;
    --tgrx-gold-dark: #d97706;
    --tgrx-gold-light: #fffbeb;
    --tgrx-gold-border: #fcd34d;
    --tgrx-slate-900: #0f172a;
    --tgrx-slate-700: #334155;
    --tgrx-slate-500: #64748b;
    --tgrx-slate-300: #cbd5e1;
    --tgrx-slate-200: #e2e8f0;
    --tgrx-slate-100: #f1f5f9;
    --tgrx-bg: #fff5f6;
    --tgrx-white: #ffffff;
    --tgrx-green: #22c55e;
    --tgrx-blue: #3b82f6;
    --tgrx-radius: 14px;
}

/* ─── 래퍼 ─── */
.tg-rxn-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--tgrx-slate-500);
    background-color: var(--tgrx-bg);
    box-sizing: border-box;
    line-height: 1.7;
    overflow: hidden;
    padding-bottom: 60px;
}

.tg-rxn-wrapper *,
.tg-rxn-wrapper *::before,
.tg-rxn-wrapper *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

.tg-rxn-wrapper strong {
    font-weight: 700;
    color: var(--tgrx-slate-900);
}

.tg-rxn-wrapper mark {
    background: linear-gradient(120deg, var(--tgrx-coral-light) 0%, #fda4af50 100%);
    color: var(--tgrx-coral-deep);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ─── 히어로 ─── */
.tg-rxn-hero {
    background: linear-gradient(145deg, #4c0519 0%, #881337 25%, #f43f5e 55%, #f59e0b 100%);
    color: var(--tgrx-white);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tg-rxn-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 60px solid rgba(244, 63, 94, 0.08);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.tg-rxn-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 40px solid rgba(245, 158, 11, 0.06);
    border-radius: 50%;
    bottom: -60px;
    left: -50px;
}

.tg-rxn-hero__floating {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.tg-rxn-hero__float-icon {
    position: absolute;
    font-size: 28px;
    opacity: 0.15;
    animation: tg-rxn-float 6s ease-in-out infinite;
}

.tg-rxn-hero__float-icon i {
    color: rgba(255, 255, 255, 0.9);
}

.tg-rxn-hero__float-icon--1 {
    top: 14%;
    left: 8%;
    animation-delay: 0s;
    font-size: 30px;
}

.tg-rxn-hero__float-icon--2 {
    top: 22%;
    right: 10%;
    animation-delay: 1s;
    font-size: 26px;
}

.tg-rxn-hero__float-icon--3 {
    bottom: 20%;
    left: 12%;
    animation-delay: 2s;
}

.tg-rxn-hero__float-icon--4 {
    bottom: 14%;
    right: 9%;
    animation-delay: 3s;
    font-size: 22px;
}

.tg-rxn-hero__float-icon--5 {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
    font-size: 24px;
}

.tg-rxn-hero__float-icon--6 {
    top: 10%;
    right: 26%;
    animation-delay: 5s;
    font-size: 20px;
}

@keyframes tg-rxn-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(6deg);
    }
}

.tg-rxn-hero__inner {
    position: relative;
    z-index: 1;
}

.tg-rxn-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--tgrx-gold-border);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 22px;
    border: 1px solid rgba(252, 211, 77, 0.3);
    backdrop-filter: blur(4px);
}

.tg-rxn-hero__badge i {
    font-size: 16px;
}

.tg-rxn-hero__title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 18px;
    color: var(--tgrx-white);
}

.tg-rxn-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.50);
    max-width: 620px;
    margin: 0 auto;
}

/* ─── 메인 ─── */
.tg-rxn-main {
    padding: 30px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ─── 도입부 ─── */
.tg-rxn-intro {
    background-color: var(--tgrx-white);
    padding: 28px 24px;
    border-radius: var(--tgrx-radius);
    border-left: 4px solid var(--tgrx-coral);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.tg-rxn-intro p {
    font-size: 16px;
    margin-bottom: 14px;
}

.tg-rxn-intro p:last-child {
    margin-bottom: 0;
}

/* ─── 섹션 공통 ─── */
.tg-rxn-section {
    background-color: var(--tgrx-white);
    padding: 34px 24px;
    border-radius: var(--tgrx-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--tgrx-slate-200);
}

.tg-rxn-section--accent {
    background: linear-gradient(135deg, var(--tgrx-coral-light) 0%, #fda4af15 100%);
    border-color: var(--tgrx-coral-border);
}

.tg-rxn-section--demo {
    background: linear-gradient(135deg, var(--tgrx-slate-100) 0%, var(--tgrx-coral-light) 50%, var(--tgrx-gold-light) 100%);
    border-color: var(--tgrx-coral-border);
}

.tg-rxn-section--dark {
    background: linear-gradient(135deg, #4c0519 0%, #881337 100%);
    border-color: var(--tgrx-coral-dark);
    color: var(--tgrx-slate-300);
}

.tg-rxn-section__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.tg-rxn-section__num {
    font-size: 38px;
    font-weight: 900;
    color: var(--tgrx-coral);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
}

.tg-rxn-section__num--accent {
    color: var(--tgrx-coral-deep);
    opacity: 0.15;
}

.tg-rxn-section__tip-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--tgrx-coral) 0%, var(--tgrx-gold) 100%);
    color: var(--tgrx-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tg-rxn-section__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--tgrx-slate-900);
    line-height: 1.35;
    padding-top: 6px;
}

.tg-rxn-section__title i {
    margin-right: 6px;
}

.tg-rxn-section__title--light {
    color: var(--tgrx-white);
}

.tg-rxn-section__desc {
    font-size: 16px;
    margin-bottom: 24px;
}

/* ─── 반응 방법 카드 ─── */
.tg-rxn-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.tg-rxn-method {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background-color: var(--tgrx-white);
    border: 1px solid var(--tgrx-slate-200);
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.tg-rxn-method:hover {
    transform: translateX(4px);
}

.tg-rxn-method--highlight {
    border-color: var(--tgrx-gold-border);
    background-color: var(--tgrx-gold-light);
}

.tg-rxn-method__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--tgrx-coral) 0%, var(--tgrx-coral-dark) 100%);
    color: var(--tgrx-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tg-rxn-method__icon--key {
    background: linear-gradient(135deg, var(--tgrx-gold) 0%, var(--tgrx-coral) 100%);
    width: 46px;
    height: 46px;
    font-size: 20px;
    box-shadow: 0 0 18px rgba(245, 158, 11, 0.25);
}

.tg-rxn-method__body {
    flex: 1;
}

.tg-rxn-method__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--tgrx-slate-900);
    margin-bottom: 4px;
}

.tg-rxn-method__desc {
    font-size: 13px;
    line-height: 1.6;
}

/* 팁 박스 */
.tg-rxn-tip-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 10px;
    background-color: var(--tgrx-gold-light);
    border: 1px solid var(--tgrx-gold-border);
}

.tg-rxn-tip-box__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--tgrx-gold) 0%, var(--tgrx-gold-dark) 100%);
    color: var(--tgrx-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.tg-rxn-tip-box__body {
    flex: 1;
    font-size: 13px;
    line-height: 1.6;
}

.tg-rxn-tip-box__body i {
    font-size: 12px;
    margin: 0 1px;
}

/* ─── 스텝 ─── */
.tg-rxn-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tg-rxn-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background-color: var(--tgrx-coral-light);
    border: 1px solid var(--tgrx-coral-border);
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.tg-rxn-step:hover {
    transform: translateX(4px);
}

.tg-rxn-step__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--tgrx-coral) 0%, var(--tgrx-gold) 100%);
    color: var(--tgrx-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tg-rxn-step__body {
    flex: 1;
}

.tg-rxn-step__num {
    font-size: 10px;
    font-weight: 800;
    color: var(--tgrx-coral);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.tg-rxn-step__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--tgrx-slate-900);
    margin-bottom: 2px;
}

.tg-rxn-step__title i {
    font-size: 13px;
}

.tg-rxn-step__text {
    font-size: 13px;
    line-height: 1.6;
}

/* ─── 데모: 반응 시뮬레이션 ─── */
.tg-rxn-demo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.tg-rxn-demo__chat {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--tgrx-coral-border);
    background-color: var(--tgrx-white);
    position: relative;
}

.tg-rxn-demo__chat-header {
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--tgrx-coral-deep) 0%, var(--tgrx-coral-dark) 100%);
    color: var(--tgrx-white);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tg-rxn-demo__chat-header>i {
    margin-right: 6px;
}

.tg-rxn-demo__chat-members {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.15);
}

.tg-rxn-demo__chat-members i {
    margin-right: 3px;
}

.tg-rxn-demo__chat-body {
    padding: 12px;
    min-height: 200px;
}

/* 메시지 버블 */
.tg-rxn-demo__msg {
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 8px;
    max-width: 85%;
    font-size: 13px;
    line-height: 1.5;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.tg-rxn-demo__msg:last-child {
    margin-bottom: 0;
}

.tg-rxn-demo__msg--other {
    background-color: var(--tgrx-slate-100);
    color: var(--tgrx-slate-700);
    border-bottom-left-radius: 4px;
}

.tg-rxn-demo__msg--mine {
    background-color: var(--tgrx-coral-light);
    color: var(--tgrx-coral-deep);
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.tg-rxn-demo__msg--selected {
    box-shadow: 0 0 0 2px var(--tgrx-coral), 0 4px 12px rgba(244, 63, 94, 0.2);
}

.tg-rxn-demo__msg-sender {
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 2px;
}

.tg-rxn-demo__msg--other .tg-rxn-demo__msg-sender {
    color: var(--tgrx-blue);
}

.tg-rxn-demo__msg--mine .tg-rxn-demo__msg-sender {
    color: var(--tgrx-coral-dark);
}

.tg-rxn-demo__msg-time {
    font-size: 9px;
    color: var(--tgrx-slate-300);
    text-align: right;
    margin-top: 4px;
}

/* 반응 뱃지 */
.tg-rxn-demo__msg-reactions {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.tg-rxn-demo__reaction-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: 100px;
    background-color: var(--tgrx-white);
    border: 1px solid var(--tgrx-coral-border);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tg-rxn-demo__reaction-badge:hover {
    background-color: var(--tgrx-coral-light);
    transform: scale(1.1);
}

.tg-rxn-demo__reaction-badge span {
    font-size: 10px;
    font-weight: 700;
    color: var(--tgrx-coral-dark);
}

/* Large Effect 애니메이션 */
.tg-rxn-demo__large-effect {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    z-index: 9999;
    pointer-events: none;
    animation: tg-rxn-large 1.2s ease forwards;
}

@keyframes tg-rxn-large {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-15deg);
    }

    30% {
        opacity: 1;
        transform: scale(1.3) rotate(5deg);
    }

    60% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: scale(1.5) rotate(10deg) translateY(-60px);
    }
}

/* 미확인 반응 점프 버튼 */
.tg-rxn-demo__jump-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tgrx-coral) 0%, var(--tgrx-coral-dark) 100%);
    color: var(--tgrx-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 14px rgba(244, 63, 94, 0.35);
    transition: all 0.2s ease;
    font-family: inherit;
    animation: tg-rxn-pulse 2s ease infinite;
}

.tg-rxn-demo__jump-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.5);
}

@keyframes tg-rxn-pulse {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(244, 63, 94, 0.35);
    }

    50% {
        box-shadow: 0 4px 14px rgba(244, 63, 94, 0.6), 0 0 0 8px rgba(244, 63, 94, 0.1);
    }
}

.tg-rxn-demo__jump-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    background-color: var(--tgrx-gold);
    color: var(--tgrx-white);
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* 반응 팔레트 */
.tg-rxn-demo__palette {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--tgrx-gold-border);
    background-color: var(--tgrx-white);
}

.tg-rxn-demo__palette-header {
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--tgrx-gold-dark) 0%, var(--tgrx-gold) 100%);
    color: var(--tgrx-white);
    font-size: 13px;
    font-weight: 800;
}

.tg-rxn-demo__palette-header i {
    margin-right: 6px;
}

.tg-rxn-demo__palette-body {
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tg-rxn-demo__emoji-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--tgrx-slate-200);
    background-color: var(--tgrx-white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: inherit;
    padding: 0;
}

.tg-rxn-demo__emoji-btn:hover {
    transform: scale(1.15);
    border-color: var(--tgrx-coral-border);
    background-color: var(--tgrx-coral-light);
}

.tg-rxn-demo__emoji-btn:active {
    transform: scale(0.95);
}

.tg-rxn-demo__palette-guide {
    padding: 10px 14px;
    margin: 0 12px 12px;
    border-radius: 8px;
    background-color: var(--tgrx-gold-light);
    border: 1px solid var(--tgrx-gold-border);
    font-size: 12px;
    font-weight: 600;
    color: var(--tgrx-gold-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tg-rxn-demo__palette-guide i {
    color: var(--tgrx-gold);
    font-size: 14px;
    flex-shrink: 0;
}

.tg-rxn-demo__reset-btn {
    margin: 0 12px 12px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--tgrx-slate-200);
    background-color: var(--tgrx-white);
    color: var(--tgrx-slate-500);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tg-rxn-demo__reset-btn:hover {
    background-color: var(--tgrx-slate-100);
}

/* ─── 직장인 팁 ─── */
.tg-rxn-tips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.tg-rxn-tip {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(253, 164, 175, 0.1);
    padding: 22px;
    border-radius: 10px;
    position: relative;
}

.tg-rxn-tip__number {
    position: absolute;
    top: -10px;
    left: 18px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--tgrx-coral) 0%, var(--tgrx-gold) 100%);
    color: var(--tgrx-white);
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tg-rxn-tip__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--tgrx-white);
    margin-bottom: 8px;
    padding-top: 6px;
}

.tg-rxn-tip__title i {
    color: var(--tgrx-gold-border);
    margin-right: 4px;
}

.tg-rxn-tip__text {
    font-size: 14px;
    color: var(--tgrx-slate-300);
    line-height: 1.7;
}

.tg-rxn-tip__text strong {
    color: var(--tgrx-white);
}

.tg-rxn-tip__text i {
    font-size: 10px;
    color: var(--tgrx-slate-300);
    margin: 0 1px;
}

/* ─── 결론 ─── */
.tg-rxn-summary {
    background: linear-gradient(145deg, #4c0519 0%, #881337 30%, #f43f5e 65%, #f59e0b 100%);
    color: var(--tgrx-white);
    padding: 44px 28px;
    border-radius: var(--tgrx-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(136, 19, 55, 0.4);
}

.tg-rxn-summary__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--tgrx-white);
    margin-bottom: 20px;
}

.tg-rxn-summary__body p {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--tgrx-coral-border);
}

.tg-rxn-summary strong {
    color: var(--tgrx-white);
}

.tg-rxn-summary__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0;
}

.tg-rxn-summary__highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(253, 164, 175, 0.12);
    border-radius: 10px;
}

.tg-rxn-summary__highlight-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--tgrx-coral) 0%, var(--tgrx-gold) 100%);
    color: var(--tgrx-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tg-rxn-summary__highlight strong {
    font-size: 13px;
    color: var(--tgrx-white);
}

.tg-rxn-summary__highlight span {
    font-size: 11px;
    color: var(--tgrx-coral-border);
    text-align: center;
}

.tg-rxn-summary__checklist {
    list-style: none;
    display: inline-block;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.06);
    padding: 24px 32px;
    border-radius: 12px;
    margin: 0 0 24px;
}

.tg-rxn-summary__checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #fecdd3;
}

.tg-rxn-summary__checklist li:last-child {
    margin-bottom: 0;
}

.tg-rxn-summary__checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
    color: var(--tgrx-gold-border);
}

.tg-rxn-summary__checklist strong {
    color: var(--tgrx-white);
}

.tg-rxn-summary__checklist i {
    font-size: 12px;
    margin: 0 1px;
}

.tg-rxn-summary__footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: var(--tgrx-coral-border);
    line-height: 1.8;
}

.tg-rxn-summary__footer strong {
    color: var(--tgrx-white);
}

/* ============================================
   반응형
============================================ */
@media (min-width: 768px) {
    .tg-rxn-hero {
        padding: 80px 40px;
    }

    .tg-rxn-hero__title {
        font-size: 38px;
    }

    .tg-rxn-main {
        padding: 40px 36px 0;
        gap: 40px;
    }

    .tg-rxn-intro {
        padding: 36px 32px;
    }

    .tg-rxn-section {
        padding: 40px 36px;
    }

    .tg-rxn-section__title {
        font-size: 24px;
    }

    .tg-rxn-section__num {
        font-size: 44px;
    }

    .tg-rxn-demo {
        grid-template-columns: 1fr 260px;
    }

    .tg-rxn-tips {
        grid-template-columns: repeat(3, 1fr);
    }

    .tg-rxn-summary__highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .tg-rxn-summary {
        padding: 56px 44px;
    }
}

@media (min-width: 1024px) {
    .tg-rxn-hero__title {
        font-size: 44px;
    }

    .tg-rxn-main {
        gap: 46px;
    }
}

/* ============================================
   스크롤 등장 애니메이션
============================================ */
.tg-rxn-motion {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.tg-rxn-motion.is-visible {
    opacity: 1;
    transform: translateY(0);
}