﻿@charset "utf-8";

/* ============================================
   텔레그램 봇 관리자 설정 가이드
   접두사: tg-bot- (기존 사이트 오염 방지)
   CSS 변수 접두사: --tgbt-
   컬러 톤: 인디고 블루(Indigo Blue) + 에메랄드 그린(Emerald Green)
============================================ */

:root {
    --tgbt-indigo: #4f46e5;
    --tgbt-indigo-dark: #4338ca;
    --tgbt-indigo-deep: #3730a3;
    --tgbt-indigo-light: #eef2ff;
    --tgbt-indigo-border: #818cf8;
    --tgbt-emerald: #10b981;
    --tgbt-emerald-dark: #059669;
    --tgbt-emerald-light: #ecfdf5;
    --tgbt-emerald-border: #34d399;
    --tgbt-slate-900: #0f172a;
    --tgbt-slate-700: #334155;
    --tgbt-slate-500: #64748b;
    --tgbt-slate-300: #cbd5e1;
    --tgbt-slate-200: #e2e8f0;
    --tgbt-slate-100: #f1f5f9;
    --tgbt-bg: #eef2ff;
    --tgbt-white: #ffffff;
    --tgbt-red: #ef4444;
    --tgbt-amber: #f59e0b;
    --tgbt-radius: 14px;
}

/* ─── 래퍼 ─── */
.tg-bot-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Noto Sans KR', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--tgbt-slate-500);
    background-color: var(--tgbt-bg);
    box-sizing: border-box;
    line-height: 1.7;
    overflow: hidden;
    padding-bottom: 60px;
}

.tg-bot-wrapper *,
.tg-bot-wrapper *::before,
.tg-bot-wrapper *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

.tg-bot-wrapper strong {
    font-weight: 700;
    color: var(--tgbt-slate-900);
}

.tg-bot-wrapper mark {
    background: linear-gradient(120deg, var(--tgbt-indigo-light) 0%, #818cf870 100%);
    color: var(--tgbt-indigo-deep);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ─── 히어로 ─── */
.tg-bot-hero {
    background: linear-gradient(145deg, #1e1b4b 0%, #312e81 20%, #4f46e5 50%, #34d399 85%, #10b981 100%);
    color: var(--tgbt-white);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tg-bot-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 60px solid rgba(79, 70, 229, 0.06);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.tg-bot-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 40px solid rgba(16, 185, 129, 0.04);
    border-radius: 50%;
    bottom: -60px;
    left: -50px;
}

.tg-bot-hero__floating {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.tg-bot-hero__float-icon {
    position: absolute;
    font-size: 28px;
    opacity: 0.15;
    animation: tg-bot-float 6s ease-in-out infinite;
}

.tg-bot-hero__float-icon i {
    color: rgba(255, 255, 255, 0.9);
}

.tg-bot-hero__float-icon--1 {
    top: 12%;
    left: 8%;
    animation-delay: 0s;
    font-size: 32px;
}

.tg-bot-hero__float-icon--2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
    font-size: 26px;
}

.tg-bot-hero__float-icon--3 {
    bottom: 22%;
    left: 14%;
    animation-delay: 2s;
}

.tg-bot-hero__float-icon--4 {
    bottom: 16%;
    right: 9%;
    animation-delay: 3s;
    font-size: 22px;
}

.tg-bot-hero__float-icon--5 {
    top: 52%;
    left: 5%;
    animation-delay: 4s;
    font-size: 20px;
}

.tg-bot-hero__float-icon--6 {
    top: 10%;
    right: 28%;
    animation-delay: 5s;
    font-size: 20px;
}

@keyframes tg-bot-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-14px) rotate(8deg);
    }
}

.tg-bot-hero__inner {
    position: relative;
    z-index: 1;
}

.tg-bot-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.2);
    color: var(--tgbt-emerald-border);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 22px;
    border: 1px solid rgba(52, 211, 153, 0.3);
    backdrop-filter: blur(4px);
}

.tg-bot-hero__badge i {
    font-size: 16px;
}

.tg-bot-hero__title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 18px;
    color: var(--tgbt-white);
}

.tg-bot-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin: 0 auto;
}

/* ─── 메인 ─── */
.tg-bot-main {
    padding: 30px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ─── 도입부 ─── */
.tg-bot-intro {
    background-color: var(--tgbt-white);
    padding: 28px 24px;
    border-radius: var(--tgbt-radius);
    border-left: 4px solid var(--tgbt-indigo);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.tg-bot-intro p {
    font-size: 16px;
    margin-bottom: 14px;
}

.tg-bot-intro p:last-child {
    margin-bottom: 0;
}

/* ─── 섹션 공통 ─── */
.tg-bot-section {
    background-color: var(--tgbt-white);
    padding: 34px 24px;
    border-radius: var(--tgbt-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--tgbt-slate-200);
}

.tg-bot-section--accent {
    background: linear-gradient(135deg, var(--tgbt-indigo-light) 0%, #818cf820 100%);
    border-color: var(--tgbt-indigo-border);
}

.tg-bot-section--info {
    background: linear-gradient(135deg, var(--tgbt-emerald-light) 0%, #34d39920 100%);
    border-color: var(--tgbt-emerald-border);
}

.tg-bot-section--demo {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    border-color: var(--tgbt-indigo-border);
    color: var(--tgbt-slate-300);
}

.tg-bot-section--dark {
    background: linear-gradient(135deg, #0c0a1d 0%, #1e1b4b 100%);
    border-color: #312e81;
    color: var(--tgbt-slate-300);
}

.tg-bot-section__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.tg-bot-section__num {
    font-size: 38px;
    font-weight: 900;
    color: var(--tgbt-indigo);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
}

.tg-bot-section__num--accent {
    color: var(--tgbt-emerald);
    opacity: 0.3;
}

.tg-bot-section__tip-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--tgbt-indigo) 0%, var(--tgbt-emerald) 100%);
    color: var(--tgbt-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tg-bot-section__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--tgbt-slate-900);
    line-height: 1.35;
    padding-top: 6px;
}

.tg-bot-section__title--light {
    color: var(--tgbt-white);
}

.tg-bot-section__desc {
    font-size: 16px;
    margin-bottom: 24px;
}

/* ─── 스텝 ─── */
.tg-bot-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tg-bot-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: var(--tgbt-white);
    border: 1px solid var(--tgbt-slate-200);
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.tg-bot-step:hover {
    transform: translateX(4px);
}

.tg-bot-step--highlight {
    border-color: var(--tgbt-emerald-border);
    background-color: var(--tgbt-emerald-light);
}

.tg-bot-step__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--tgbt-indigo) 0%, var(--tgbt-indigo-dark) 100%);
    color: var(--tgbt-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.tg-bot-step__icon--key {
    background: linear-gradient(135deg, var(--tgbt-emerald) 0%, var(--tgbt-emerald-dark) 100%);
    width: 50px;
    height: 50px;
    font-size: 22px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

.tg-bot-step__body {
    flex: 1;
}

.tg-bot-step__num {
    font-size: 11px;
    font-weight: 800;
    color: var(--tgbt-indigo);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.tg-bot-step__num--key {
    color: var(--tgbt-emerald-dark);
    font-size: 12px;
}

.tg-bot-step__title {
    font-size: 16px;
    font-weight: 800;
    color: var(--tgbt-slate-900);
    margin-bottom: 4px;
}

.tg-bot-step__text {
    font-size: 14px;
    line-height: 1.6;
}

/* ─── 권한 목록 ─── */
.tg-bot-perms {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.tg-bot-perm {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 10px;
    background-color: var(--tgbt-white);
    border: 1px solid var(--tgbt-slate-200);
    transition: transform 0.25s ease;
}

.tg-bot-perm:hover {
    transform: translateX(4px);
}

.tg-bot-perm__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--tgbt-indigo) 0%, var(--tgbt-indigo-dark) 100%);
    color: var(--tgbt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.tg-bot-perm__body {
    flex: 1;
}

.tg-bot-perm__title {
    font-size: 14px;
    font-weight: 800;
    color: var(--tgbt-slate-900);
    margin-bottom: 2px;
}

.tg-bot-perm__desc {
    font-size: 13px;
}

/* ─── 데모 ─── */
.tg-bot-demo {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(129, 140, 248, 0.2);
    background: linear-gradient(180deg, rgba(15, 12, 42, 0.6) 0%, rgba(30, 27, 75, 0.6) 100%);
    padding: 20px;
}

/* 봇 프로필 */
.tg-bot-demo__profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(129, 140, 248, 0.1);
    margin-bottom: 14px;
}

.tg-bot-demo__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tgbt-indigo) 0%, var(--tgbt-emerald) 100%);
    color: var(--tgbt-white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg-bot-demo__name {
    font-size: 14px;
    font-weight: 800;
    color: var(--tgbt-white);
}

.tg-bot-demo__status {
    font-size: 10px;
    color: var(--tgbt-slate-300);
}

.tg-bot-demo__info {
    flex: 1;
}

.tg-bot-demo__role {
    font-size: 10px;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    background-color: rgba(100, 116, 139, 0.2);
    color: var(--tgbt-slate-300);
    border: 1px solid rgba(100, 116, 139, 0.3);
    transition: all 0.3s ease;
}

.tg-bot-demo__role.is-admin {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--tgbt-emerald-border);
    border-color: rgba(52, 211, 153, 0.3);
}

/* 마스터 토글 */
.tg-bot-demo__master {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(129, 140, 248, 0.15);
    margin-bottom: 10px;
}

.tg-bot-demo__master-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--tgbt-white);
}

.tg-bot-demo__master-label i {
    margin-right: 6px;
    color: var(--tgbt-indigo-border);
}

/* 토글 스위치 */
.tg-bot-demo__switch {
    width: 46px;
    height: 24px;
    border-radius: 12px;
    background-color: rgba(100, 116, 139, 0.3);
    border: 2px solid rgba(100, 116, 139, 0.2);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tg-bot-demo__switch.is-on {
    background: linear-gradient(135deg, var(--tgbt-indigo) 0%, var(--tgbt-emerald) 100%);
    border-color: var(--tgbt-emerald-border);
}

.tg-bot-demo__switch-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--tgbt-white);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.tg-bot-demo__switch.is-on .tg-bot-demo__switch-knob {
    left: 24px;
}

/* 세부 권한 */
.tg-bot-demo__perms {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.tg-bot-demo__perms.is-open {
    max-height: 500px;
    opacity: 1;
}

.tg-bot-demo__perm-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(129, 140, 248, 0.06);
}

.tg-bot-demo__perm-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--tgbt-slate-300);
}

.tg-bot-demo__perm-label i {
    font-size: 11px;
    color: var(--tgbt-indigo-border);
    width: 16px;
    text-align: center;
}

.tg-bot-demo__perm-switch {
    width: 36px;
    height: 20px;
    border-radius: 10px;
    background-color: rgba(100, 116, 139, 0.25);
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tg-bot-demo__perm-switch.is-on {
    background: linear-gradient(135deg, var(--tgbt-emerald) 0%, var(--tgbt-emerald-dark) 100%);
}

.tg-bot-demo__perm-switch::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--tgbt-white);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tg-bot-demo__perm-switch.is-on::after {
    left: 18px;
}

/* 확인 버튼 */
.tg-bot-demo__btn {
    display: block;
    width: 100%;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    font-family: inherit;
    background: linear-gradient(135deg, var(--tgbt-indigo) 0%, var(--tgbt-emerald) 100%);
    color: var(--tgbt-white);
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
}

.tg-bot-demo__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(79, 70, 229, 0.4);
}

.tg-bot-demo__btn:disabled {
    background: rgba(100, 116, 139, 0.3);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.tg-bot-demo__btn i {
    margin-right: 4px;
}

/* 토스트 */
.tg-bot-demo__toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--tgbt-slate-900);
    color: var(--tgbt-white);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    z-index: 9999;
    white-space: nowrap;
    animation: tg-bot-toast-in 0.3s ease, tg-bot-toast-out 0.3s ease 2s forwards;
}

@keyframes tg-bot-toast-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes tg-bot-toast-out {
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ─── 그룹 vs 채널 ─── */
.tg-bot-versus {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.tg-bot-versus__card {
    width: 100%;
    padding: 22px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--tgbt-slate-200);
    transition: transform 0.25s ease;
}

.tg-bot-versus__card:hover {
    transform: translateY(-2px);
}

.tg-bot-versus__card--group {
    background: linear-gradient(135deg, var(--tgbt-indigo-light) 0%, #818cf820 100%);
    border-color: var(--tgbt-indigo-border);
}

.tg-bot-versus__card--channel {
    background: linear-gradient(135deg, var(--tgbt-emerald-light) 0%, #34d39920 100%);
    border-color: var(--tgbt-emerald-border);
}

.tg-bot-versus__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: var(--tgbt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 10px;
}

.tg-bot-versus__card--group .tg-bot-versus__icon {
    background: linear-gradient(135deg, var(--tgbt-indigo) 0%, var(--tgbt-indigo-dark) 100%);
}

.tg-bot-versus__card--channel .tg-bot-versus__icon {
    background: linear-gradient(135deg, var(--tgbt-emerald) 0%, var(--tgbt-emerald-dark) 100%);
}

.tg-bot-versus__title {
    font-size: 16px;
    font-weight: 800;
    color: var(--tgbt-slate-900);
    margin-bottom: 4px;
}

.tg-bot-versus__desc {
    font-size: 13px;
}

.tg-bot-versus__vs {
    font-size: 18px;
    font-weight: 900;
    color: var(--tgbt-slate-300);
    padding: 2px 14px;
    border-radius: 6px;
    background-color: var(--tgbt-slate-100);
}

/* ─── 직장인 팁 ─── */
.tg-bot-tips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.tg-bot-tip {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(129, 140, 248, 0.08);
    padding: 22px;
    border-radius: 10px;
    position: relative;
}

.tg-bot-tip__number {
    position: absolute;
    top: -10px;
    left: 18px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--tgbt-indigo) 0%, var(--tgbt-emerald) 100%);
    color: var(--tgbt-white);
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tg-bot-tip__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--tgbt-white);
    margin-bottom: 8px;
    padding-top: 6px;
}

.tg-bot-tip__title i {
    color: var(--tgbt-emerald-border);
    margin-right: 4px;
}

.tg-bot-tip__text {
    font-size: 14px;
    color: var(--tgbt-slate-300);
}

.tg-bot-tip__text strong {
    color: var(--tgbt-white);
}

/* ─── 결론 ─── */
.tg-bot-summary {
    background: linear-gradient(145deg, #1e1b4b 0%, #312e81 25%, #4f46e5 55%, #34d399 85%, #10b981 100%);
    color: var(--tgbt-white);
    padding: 44px 28px;
    border-radius: var(--tgbt-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(55, 48, 163, 0.4);
}

.tg-bot-summary__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--tgbt-white);
    margin-bottom: 20px;
}

.tg-bot-summary__body p {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--tgbt-emerald-border);
}

.tg-bot-summary strong {
    color: var(--tgbt-white);
}

.tg-bot-summary__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0;
}

.tg-bot-summary__highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(129, 140, 248, 0.1);
    border-radius: 10px;
}

.tg-bot-summary__highlight-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--tgbt-emerald) 0%, var(--tgbt-emerald-dark) 100%);
    color: var(--tgbt-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tg-bot-summary__highlight strong {
    font-size: 13px;
    color: var(--tgbt-white);
}

.tg-bot-summary__highlight span {
    font-size: 11px;
    color: var(--tgbt-emerald-border);
    text-align: center;
}

.tg-bot-summary__checklist {
    list-style: none;
    display: inline-block;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.04);
    padding: 24px 32px;
    border-radius: 12px;
    margin: 0 0 24px;
}

.tg-bot-summary__checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #a5b4fc;
}

.tg-bot-summary__checklist li:last-child {
    margin-bottom: 0;
}

.tg-bot-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(--tgbt-emerald-border);
}

.tg-bot-summary__checklist strong {
    color: var(--tgbt-white);
}

.tg-bot-summary__footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: var(--tgbt-emerald-border);
    line-height: 1.8;
}

.tg-bot-summary__footer strong {
    color: var(--tgbt-white);
}

/* ============================================
   반응형
============================================ */
@media (min-width: 768px) {
    .tg-bot-hero {
        padding: 80px 40px;
    }

    .tg-bot-hero__title {
        font-size: 38px;
    }

    .tg-bot-main {
        padding: 40px 36px 0;
        gap: 40px;
    }

    .tg-bot-intro {
        padding: 36px 32px;
    }

    .tg-bot-section {
        padding: 40px 36px;
    }

    .tg-bot-section__title {
        font-size: 24px;
    }

    .tg-bot-section__num {
        font-size: 44px;
    }

    .tg-bot-perms {
        grid-template-columns: repeat(2, 1fr);
    }

    .tg-bot-versus {
        flex-direction: row;
    }

    .tg-bot-versus__card {
        flex: 1;
    }

    .tg-bot-versus__vs {
        align-self: center;
    }

    .tg-bot-tips {
        grid-template-columns: repeat(3, 1fr);
    }

    .tg-bot-summary__highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .tg-bot-summary {
        padding: 56px 44px;
    }
}

@media (min-width: 1024px) {
    .tg-bot-hero__title {
        font-size: 44px;
    }

    .tg-bot-main {
        gap: 46px;
    }
}

/* ============================================
   스크롤 등장 애니메이션
============================================ */
.tg-bot-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-bot-motion.is-visible {
    opacity: 1;
    transform: translateY(0);
}
