/* ===== Design Tokens ===== */
:root {
  --brand: #ff5722;
  --brand-2: #ff8a3d;
  --brand-ink: #c2410c;
  --accent: #1e293b;

  --bg: #ffffff;
  --bg-alt: #f6f7fb;
  --surface: #ffffff;
  --text: #11151c;
  --muted: #5b6472;
  --border: #e7e9f0;
  --shadow: 0 10px 30px rgba(17, 21, 28, 0.08);
  --shadow-lg: 0 20px 60px rgba(17, 21, 28, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: "Sora", var(--font);
}

[data-theme="dark"] {
  --bg: #0d1017;
  --bg-alt: #141925;
  --surface: #171c28;
  --text: #eef1f6;
  --muted: #9aa6b8;
  --border: #262d3d;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background .3s, color .3s;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 8px 20px rgba(255, 87, 34, .35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 87, 34, .45); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-light { background: #fff; color: var(--brand-ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ===== Navbar ===== */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 19px; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-weight: 800;
}
.brand-text strong { color: var(--brand); }
.brand-logo { height: 42px; width: auto; display: block; }
.footer-logo { height: 48px; margin-bottom: 4px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 15px; transition: color .2s; }
.nav-links a:hover { color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); cursor: pointer; position: relative; overflow: hidden; color: var(--text);
}
.theme-icon { position: absolute; inset: 0; display: grid; place-items: center; font-size: 17px; transition: transform .35s, opacity .35s; }
.theme-icon.moon { transform: translateY(120%); opacity: 0; }
[data-theme="dark"] .theme-icon.sun { transform: translateY(-120%); opacity: 0; }
[data-theme="dark"] .theme-icon.moon { transform: translateY(0); opacity: 1; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); cursor: pointer; align-items: center; justify-content: center; }
.hamburger span { width: 20px; height: 2px; background: var(--text); transition: .3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 86px 0 96px; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(255, 138, 61, .22), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(255, 87, 34, .12), transparent 60%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block; font-size: 13.5px; font-weight: 700; color: var(--brand-ink);
  background: color-mix(in srgb, var(--brand) 14%, transparent); padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
[data-theme="dark"] .eyebrow { color: var(--brand-2); }
.hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; }
.grad { background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 18px; color: var(--muted); margin: 20px 0 30px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: stretch; gap: 28px; margin-top: 44px; }
.hero-stats > div { display: flex; flex-direction: column; justify-content: center; padding-right: 28px; border-right: 1px solid var(--border); }
.hero-stats > div:last-child { padding-right: 0; border-right: none; }
.hero-stats strong { font-family: var(--font-head); font-weight: 800; font-size: 32px; line-height: 1.05; color: var(--text); margin-bottom: 6px; }
.hero-stats span { font-size: 13.5px; color: var(--muted); white-space: nowrap; }

.hero-art { position: relative; height: 480px; }
.orb { position: absolute; border-radius: 50%; }
.orb-1 { width: 330px; height: 330px; top: 50%; left: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle at 35% 30%, var(--brand-2), var(--brand)); opacity: .22; filter: blur(50px); }
.orb-2 { width: 240px; height: 240px; bottom: 0; right: 0; background: radial-gradient(circle at 40% 35%, #22d3ee, #6366f1); opacity: .16; filter: blur(50px); }

/* Badge #THRIVE di tengah komposisi */
.thrive-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; text-align: center;
  width: 142px; height: 142px; border-radius: 50%; padding: 10px;
  background: radial-gradient(circle at 50% 32%, var(--surface), color-mix(in srgb, var(--surface) 90%, var(--brand)));
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  box-shadow: 0 2px 6px rgba(17, 21, 28, .06), 0 20px 50px rgba(255, 87, 34, .20), inset 0 1px 0 rgba(255, 255, 255, .7);
  z-index: 2;
}
.thrive-badge::before {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px dashed color-mix(in srgb, var(--brand) 42%, transparent);
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.tb-tag { font-family: var(--font-head); font-weight: 800; font-size: 23px; letter-spacing: -0.01em; background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tb-sub { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .04em; }
.float-card {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  backdrop-filter: blur(14px) saturate(150%); -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  box-shadow: 0 1px 2px rgba(17, 21, 28, .05), 0 14px 30px rgba(17, 21, 28, .11), inset 0 1px 0 rgba(255, 255, 255, .55);
  border-radius: 999px; padding: 9px 16px 9px 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: -0.025em;
  white-space: nowrap; animation: floaty 5s ease-in-out infinite; cursor: default;
  transition: transform .25s cubic-bezier(.2, .7, .3, 1), box-shadow .25s, border-color .25s;
}
.float-card:hover { transform: translateY(-5px) scale(1.06); box-shadow: 0 2px 4px rgba(255, 87, 34, .12), 0 22px 46px rgba(255, 87, 34, .28), inset 0 1px 0 rgba(255, 255, 255, .6); border-color: color-mix(in srgb, var(--brand) 50%, var(--border)); }
.fc-emoji { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; font-size: 15px; border-radius: 50%; background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 20%, transparent), color-mix(in srgb, var(--brand-2) 12%, transparent)); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand) 16%, transparent); }
.fc-init { color: var(--brand); font-weight: 800; margin-right: -0.5px; }
/* 3 baris simetris: kiri & kanan sejajar, badge di tengah */
.fc-1 { top: 24px; left: 0; animation-delay: 0s; }
.fc-2 { top: 24px; right: 0; animation-delay: .4s; }
.fc-3 { top: 216px; left: 0; animation-delay: .8s; }
.fc-4 { top: 216px; right: 0; animation-delay: 1.2s; }
.fc-5 { bottom: 24px; left: 0; animation-delay: 1.6s; }
.fc-6 { bottom: 24px; right: 0; animation-delay: 2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.kicker { font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 10px 0 12px; }
.section-head p { color: var(--muted); font-size: 17px; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.quotes-grid { grid-template-columns: repeat(2, 1fr); }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 40%, var(--border)); }
.ficon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 24px; background: color-mix(in srgb, var(--brand) 12%, transparent); margin-bottom: 16px; }
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ===== Culture ===== */
.culture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.culture-copy h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 10px 0 16px; }
.culture-copy > p { color: var(--muted); font-size: 16.5px; margin-bottom: 26px; }
.value-list { list-style: none; display: grid; gap: 16px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; }
.value-list span { font-size: 22px; width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.value-list strong { display: block; font-family: var(--font-head); }
.value-list div { color: var(--muted); font-size: 14.5px; }

.culture-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; gap: 16px; }
.g-tile { border-radius: var(--radius); display: grid; place-items: center; color: #fff; font-weight: 700; font-family: var(--font-head); box-shadow: var(--shadow); }
.t1 { background: linear-gradient(135deg, #ff5722, #ff8a3d); }
.t2 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.t3 { background: linear-gradient(135deg, #0ea5e9, #22d3ee); }
.t4 { background: linear-gradient(135deg, #10b981, #34d399); }
.t1, .t4 { margin-top: 22px; }

/* ===== Vision banner ===== */
.vision-banner {
  display: flex; align-items: center; gap: 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; border-radius: var(--radius); padding: 28px 32px;
  margin-bottom: 36px; box-shadow: 0 16px 40px rgba(255, 87, 34, .28);
}
.vision-icon { font-size: 38px; width: 70px; height: 70px; flex: 0 0 70px; display: grid; place-items: center; background: rgba(255, 255, 255, .18); border-radius: 18px; }
.vision-label { display: inline-block; font-family: var(--font-head); font-weight: 800; letter-spacing: .04em; font-size: 14px; text-transform: uppercase; opacity: .92; margin-bottom: 6px; }
.vision-banner p { font-size: 17px; line-height: 1.5; color: rgba(255, 255, 255, .96); }
.vision-banner strong { color: #fff; }

/* ===== Mission ===== */
.misi-block { margin-bottom: 40px; }
.misi-title { text-align: center; font-size: 24px; margin-bottom: 22px; }
.misi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.misi-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 20px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.misi-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 40%, var(--border)); }
.misi-num { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--brand); flex: 0 0 auto; line-height: 1.2; }
.misi-item p { color: var(--muted); font-size: 14.5px; }

/* ===== Bridge: Misi -> THRIVE ===== */
.thrive-intro { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.thrive-divider { display: block; width: 1px; height: 44px; margin: 0 auto 22px; background: linear-gradient(var(--border), transparent); }
.thrive-intro .kicker { display: block; margin-bottom: 8px; }
.thrive-intro h3 { font-size: clamp(22px, 2.8vw, 28px); margin-bottom: 12px; }
.thrive-intro p { color: var(--muted); font-size: 16px; }

/* ===== THRIVE values ===== */
.thrive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.thrive-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.thrive-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 45%, var(--border)); }
.thrive-letter {
  position: absolute; top: -10px; right: 6px; font-family: var(--font-head); font-weight: 800;
  font-size: 96px; line-height: 1; color: color-mix(in srgb, var(--brand) 10%, transparent); user-select: none;
}
.thrive-emoji { font-size: 30px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: color-mix(in srgb, var(--brand) 12%, transparent); margin-bottom: 16px; position: relative; }
.thrive-card h3 { font-size: 20px; position: relative; }
.thrive-card h3 small { display: block; font-family: var(--font); font-weight: 600; font-size: 13.5px; color: var(--brand); margin-top: 2px; }
.thrive-card p { color: var(--muted); font-size: 15px; margin-top: 10px; position: relative; }

/* ===== Jobs ===== */
.jobs-toolbar { display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-bottom: 28px; }
.search-box { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 0 18px; flex: 1; min-width: 240px; max-width: 380px; }
.search-box input { border: none; background: none; outline: none; padding: 13px 0; font: inherit; color: var(--text); width: 100%; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--muted); font-weight: 600; font-size: 14px; cursor: pointer; transition: .2s; }
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }

.jobs-list { display: grid; gap: 14px; }
.job { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.job:hover { box-shadow: var(--shadow); }
.job-head { display: flex; align-items: center; gap: 18px; padding: 22px 24px; cursor: pointer; }
.job-main { flex: 1; min-width: 0; }
.job-title { font-family: var(--font-head); font-weight: 700; font-size: 18.5px; }
.job-meta { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 14px; margin-top: 6px; }
.job-meta span { display: inline-flex; align-items: center; gap: 5px; }
.tag { font-size: 12.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px; background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand-ink); }
[data-theme="dark"] .tag { color: var(--brand-2); }
.tag.part { background: color-mix(in srgb, #6366f1 16%, transparent); color: #6366f1; }
.tag.intern { background: color-mix(in srgb, #10b981 16%, transparent); color: #10b981; }
.job-toggle { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-alt); display: grid; place-items: center; font-size: 20px; transition: transform .3s, background .2s; }
.job.open .job-toggle { transform: rotate(45deg); background: var(--brand); color: #fff; border-color: var(--brand); }
.job-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.job.open .job-body { max-height: 900px; }
.job-body-inner { padding: 0 24px 24px; border-top: 1px solid var(--border); margin-top: 0; }
.job-body-inner h4 { margin: 20px 0 8px; font-size: 15px; }
.job-body-inner p { color: var(--muted); font-size: 15px; }
.job-body-inner ul { margin: 8px 0 0 18px; color: var(--muted); font-size: 15px; display: grid; gap: 6px; }
.job-actions { margin-top: 22px; }
.jobs-empty { text-align: center; color: var(--muted); padding: 40px 0; }

/* ===== CTA band ===== */
.cta-band { background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); }
.cta-inner p { color: rgba(255, 255, 255, .92); max-width: 560px; margin-top: 8px; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; position: relative; }
.step-num { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 20px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); margin-bottom: 16px; }
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ===== Testimonials ===== */
.quote p { font-size: 16px; font-style: italic; }
.quote footer { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); font-size: 15px; }
.quote footer strong { display: block; }
.quote small { display: block; color: var(--muted); }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; font: 600 16px var(--font); color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: "+"; font-size: 22px; color: var(--brand); transition: transform .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* ===== Footer ===== */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand p { color: var(--muted); margin: 14px 0 18px; max-width: 320px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); font-weight: 700; font-size: 13px; transition: .2s; }
.socials a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.footer-col h4 { margin-bottom: 16px; font-size: 16px; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--brand); }
.contact-label { display: block; font-weight: 700; color: var(--text); font-size: 13px; margin-bottom: 2px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 13.5px; }

/* ===== Modal ===== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8, 11, 18, .55); backdrop-filter: blur(3px); }
.modal-panel {
  position: relative; z-index: 1; background: var(--surface); width: min(560px, calc(100% - 32px));
  margin: 6vh auto; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-lg);
  max-height: 88vh; overflow: auto; animation: pop .25s ease;
}
@keyframes pop { from { transform: translateY(16px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-alt); cursor: pointer; font-size: 15px; color: var(--text); }
.modal-panel h3 { font-size: 23px; }
.modal-sub { color: var(--muted); margin: 6px 0 22px; }
#applyForm { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#applyForm label { font-weight: 600; font-size: 14px; display: grid; gap: 7px; }
#applyForm input, #applyForm textarea {
  font: inherit; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s;
}
#applyForm input:focus, #applyForm textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent); }
#applyForm input.invalid, #applyForm textarea.invalid { border-color: #ef4444; }
.form-success { background: color-mix(in srgb, #10b981 12%, transparent); color: #059669; padding: 14px; border-radius: var(--radius-sm); font-size: 14px; }
.field-note { font-weight: 500; font-size: 12.5px; line-height: 1.45; color: var(--muted); margin-top: -2px; }
.field-note strong { color: var(--brand-ink); }
[data-theme="dark"] .field-note strong { color: var(--brand-2); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .nav-links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; background: var(--bg); padding: 20px 24px; border-bottom: 1px solid var(--border); transform: translateY(-120%); transition: transform .3s; gap: 6px; }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 12px 0; }
  .hamburger { display: flex; }
  .nav-actions .btn-sm { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .thrive-grid { grid-template-columns: 1fr 1fr; }
  .misi-grid { grid-template-columns: 1fr 1fr; }
  .culture-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .hero { padding: 56px 0 64px; }
  .hero-stats { gap: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .thrive-grid { grid-template-columns: 1fr; }
  .misi-grid { grid-template-columns: 1fr; }
  .vision-banner { flex-direction: column; text-align: center; padding: 26px 22px; }
}
