.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 80px 0 80px; }
.hero-eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 26px; }
.hero-eyebrow img { width: auto; opacity: .95; }
.hero-eyebrow .logo-komdigi { height: 14px; }
.hero-eyebrow .logo-garuda { height: 16px; }
.hero-eyebrow .logo-ssi { height: 18px; margin-left: 4px; padding-left: 12px; border-left: 1px solid rgba(255, 255, 255, .2); }
.hero h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; margin: 0 0 20px; }
.hero h1 .accent { color: var(--primary); }
.hero p { color: rgba(255, 255, 255, .6); font-size: 17px; line-height: 1.7; max-width: 520px; margin: 0 0 28px; }
.hero-visual { position: relative; width: 100%; display: flex; justify-content: center; }
.hero-visual-img { width: 100%; max-width: 560px; height: auto; display: block; }

.home-section { padding: 50px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-bottom: 20px; }
.benefit-card { border: 1px solid rgba(255, 255, 255, .08); background: rgba(255, 255, 255, .03); border-radius: 28px; padding: 30px; color: rgba(255, 255, 255, .7); }
.benefit-card.featured { background: var(--primary); border-color: var(--primary); color: #fff; }
.benefit-card .icon { width: 56px; height: 56px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.benefit-card h3 { color: #fff; font-size: 24px; font-weight: 800; line-height: 1.15; margin: 0 0 16px; max-width: 220px; }
.benefit-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; font-size: 14px; line-height: 1.6; }
.benefit-card ul li::before { content: '• '; }
.dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.dots span { width: 8px; height: 8px; border-radius: 999px; background: rgba(255, 255, 255, .2); }
.dots span.active { background: var(--primary); }

.timeline-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; position: relative; }
.timeline-heading { position: relative; }
.timeline-heading h2 { font-size: clamp(28px, 3vw, 48px); font-weight: 800; text-transform: uppercase; letter-spacing: -.02em; margin: 0; max-width: 320px; }
.timeline-deco { margin-top: 40px; width: 160px; height: 80px; position: relative; opacity: .6; }
.timeline-deco::before { content: ''; position: absolute; left: 0; top: 0; width: 80px; height: 80px; border: 1px solid var(--line); border-radius: 0 0 0 80px; }
.timeline-deco::after { content: ''; position: absolute; left: 80px; top: 0; width: 80px; height: 80px; border: 1px solid var(--line); border-radius: 80px 0 0 0; border-left: 0; }

.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 12px; bottom: 20px; width: 1px; background: rgba(255, 255, 255, .15); }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 12px 16px 24px 0; position: relative; width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer; border-radius: 16px; transition: background .25s ease, transform .25s ease; font: inherit; color: inherit; }
.timeline-item:hover { background: rgba(255, 255, 255, .03); transform: translateX(4px); }
.timeline-item::before { content: ''; position: absolute; left: -37px; top: 14px; width: 12px; height: 12px; border-radius: 999px; background: rgba(255, 255, 255, .25); z-index: 1; }
.timeline-item.active::before { background: var(--primary); box-shadow: 0 0 0 4px rgba(239, 27, 75, .2); }
.timeline-item .date { font-size: 32px; font-weight: 800; line-height: 1; color: rgba(255, 255, 255, .2); }
.timeline-item .month { font-size: 11px; letter-spacing: .18em; color: rgba(255, 255, 255, .2); text-transform: uppercase; margin-top: 6px; }
.timeline-item.active .date, .timeline-item.active .month { color: #fff; }
.timeline-item h3 { margin: 0 0 10px; font-size: 22px; font-weight: 800; color: rgba(255, 255, 255, .3); }
.timeline-item p { margin: 0; color: rgba(255, 255, 255, .25); font-size: 14px; line-height: 1.7; max-width: 380px; }
.timeline-item.active h3 { color: #fff; }
.timeline-item.active p { color: rgba(255, 255, 255, .65); }

@media (max-width: 960px) {
    .timeline-section { grid-template-columns: 1fr; }
}

.criteria-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.criteria-card { display: flex; gap: 16px; border: 1px solid rgba(239, 27, 75, .8); border-radius: 22px; padding: 18px 20px; color: rgba(255, 255, 255, .8); font-size: 14px; line-height: 1.6; cursor: pointer; transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease; }
.criteria-card:hover { background: var(--primary); color: #fff; transform: translateY(-4px); box-shadow: 0 16px 36px rgba(239, 27, 75, .25); }
.criteria-card .icon { flex-shrink: 0; width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; }

.activities-head { display: flex; justify-content: space-between; align-items: end; padding-bottom: 20px; }
.activities-head h2 { font-size: clamp(22px, 2.4vw, 32px); font-weight: 800; text-transform: uppercase; margin: 0; }
.activities-head a { color: rgba(255, 255, 255, .5); font-size: 14px; }
.activities-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.activity-card { height: 220px; border-radius: 26px; border: 1px solid rgba(255, 255, 255, .1); position: relative; overflow: hidden; background: linear-gradient(135deg, #2a2a2a, #111); padding: 20px; }
.activity-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .72)); }
.activity-card .caption { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 1; }
.activity-card .caption .tag { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .7); }
.activity-card .caption h3 { margin: 8px 0 4px; font-size: 22px; font-weight: 800; }
.activity-card .caption p { margin: 0; font-size: 13px; color: rgba(255, 255, 255, .7); }

.participants-head { text-align: center; font-size: clamp(22px, 2.4vw, 32px); font-weight: 800; text-transform: uppercase; margin: 0 0 24px; }
.participants-toolbar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.participants-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-bottom: 30px; }
.participant-card { border: 1px solid rgba(239, 27, 75, .8); border-radius: 28px; padding: 14px; cursor: pointer; transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.participant-card:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(239, 27, 75, .25); }
.participant-card:hover .batch { background: #000; }
.participant-photo { background: #fff; border-radius: 20px; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; color: #999; border: 1px solid rgba(0, 0, 0, .06); }
.participant-photo svg { width: 56%; height: 56%; opacity: .9; }
.participant-body { padding: 16px 8px 4px; }
.participant-body h3 { margin: 0; font-size: 22px; font-weight: 800; color: #fff; }
.participant-body .url { margin: 6px 0 14px; color: rgba(255, 255, 255, .6); font-size: 13px; }
.participant-body .batch { display: inline-block; background: var(--primary); color: #fff; border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 700; }

@media (max-width: 1100px) {
    .benefits-grid, .criteria-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .participants-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; padding: 40px 0 60px; gap: 30px; }
    .hero h1 { font-size: clamp(28px, 6vw, 48px); }
    .hero p { font-size: 15px; }
    .hero-eyebrow { gap: 10px; margin-bottom: 18px; }
    .hero-visual { height: auto; max-width: 420px; margin: 0 auto; }
    .hero-visual-img { max-width: 100%; }
    .timeline-section { grid-template-columns: 1fr; gap: 24px; }
    .timeline-heading h2 { max-width: none; }
    .timeline-deco { display: none; }
    .timeline { padding-left: 28px; }
    .timeline-item { grid-template-columns: 100px 1fr; gap: 12px; padding: 10px 12px 18px 0; }
    .timeline-item .date { font-size: 24px; }
    .timeline-item h3 { font-size: 20px; }
    .benefits-grid, .criteria-grid, .activities-grid { grid-template-columns: 1fr; }
    .participants-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .participants-toolbar .clear-filter { margin-left: 0 !important; }
    .activities-head { flex-direction: row; align-items: center; gap: 12px; flex-wrap: wrap; }
}
@media (max-width: 640px) {
    .home-section { padding: 36px 0; }
    .hero { padding: 24px 0 36px; gap: 24px; }
    .hero h1 { font-size: clamp(26px, 8vw, 38px); margin-bottom: 14px; }
    .hero p { font-size: 14px; margin-bottom: 22px; }
    .hero-eyebrow .logo-komdigi { height: 12px; }
    .hero-eyebrow .logo-garuda { height: 14px; }
    .hero-eyebrow .logo-ssi { height: 16px; padding-left: 10px; margin-left: 2px; }
    .benefit-card { padding: 22px; }
    .benefit-card h3 { font-size: 22px; max-width: none; }
    .criteria-card { padding: 16px; gap: 12px; }
    .criteria-card .icon { width: 40px; height: 40px; }
    .activity-card { height: 180px; padding: 16px; }
    .activity-card .caption h3 { font-size: 18px; }
    .timeline-item { grid-template-columns: 90px 1fr; padding-bottom: 16px; }
    .timeline-item .date { font-size: 20px; }
    .timeline-item .month { font-size: 10px; letter-spacing: .14em; }
    .timeline-item h3 { font-size: 17px; margin-bottom: 6px; }
    .timeline-item p { font-size: 13px; line-height: 1.6; }
    .timeline { padding-left: 22px; }
    .timeline-item::before { left: -30px; width: 10px; height: 10px; }
    .participants-toolbar { flex-direction: column; align-items: stretch; }
    .participants-toolbar > * { width: 100%; }
    .search-pill { min-width: 0; }
    [data-dropdown] { width: 100%; }
    [data-dropdown-trigger] { width: 100%; justify-content: space-between; }
    .participants-head { font-size: 22px; }
    .participant-body h3 { font-size: 18px; }
    .participant-body .url { font-size: 12px; margin: 4px 0 10px; }
    .dots { margin-top: 14px; }
}
@media (max-width: 560px) {
    .participants-grid { grid-template-columns: 1fr; gap: 14px; }
    .hero-visual { max-width: 280px; }
    .activities-head h2 { font-size: 20px; }
    .timeline-item { grid-template-columns: 80px 1fr; gap: 10px; }
    .timeline-item .date { font-size: 18px; }
}
