:root {
  --bg: #09131b;
  --surface: #101b26;
  --surface-soft: #152332;
  --card: #13202d;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef5fb;
  --muted: #9eb0bf;
  --yellow: #f4c53d;
  --cyan: #55c9ee;
  --red: #ef4c6b;
  --green: #7bd88f;
  --purple: #c084fc;
  --shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(85, 201, 238, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(244, 197, 61, 0.1), transparent 32%),
    var(--bg);
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { display: block; }

.container { width: min(var(--max), calc(100% - 1.25rem)); margin: 0 auto; }

/* ==================== HEADER ==================== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(9, 19, 27, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled { background: rgba(9, 19, 27, 0.94); border-color: rgba(255,255,255,0.1); }

.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 74px; padding: 0.85rem 0;
  transition: min-height 0.3s ease;
}
.is-scrolled .header-bar { min-height: 62px; }

.brand { display: flex; align-items: center; gap: 0.85rem; min-width: 0; }
.brand-mark {
  width: 46px; height: 46px; padding: 0.18rem; border-radius: 14px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease; object-fit: cover;
}
.brand:hover .brand-mark { transform: translateY(-1px) rotate(-4deg); border-color: rgba(85, 201, 238, 0.35); }
.brand-copy { min-width: 0; }
.brand-copy strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1rem; line-height: 1.1; }
.brand-copy span { display: block; margin-top: 0.2rem; color: var(--muted); font-size: 0.83rem; line-height: 1.25; }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px; background: rgba(255, 255, 255, 0.04); color: var(--text);
  cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(85, 201, 238, 0.3); transform: translateY(-1px); }
.menu-toggle-bar, .menu-toggle-bar::before, .menu-toggle-bar::after {
  display: block; width: 18px; height: 2px; border-radius: 999px;
  background: currentColor; transition: transform 0.2s ease, opacity 0.2s ease; content: "";
}
.menu-toggle-bar { position: relative; }
.menu-toggle-bar::before { position: absolute; top: -6px; left: 0; }
.menu-toggle-bar::after { position: absolute; top: 6px; left: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar::before { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar::after { transform: translateY(-12px) rotate(90deg); }

.nav-panel { display: none; padding: 0 0 0.9rem; }
.nav-panel.is-open { display: block; }
.nav-links { display: grid; gap: 0.55rem; }
.nav-links a {
  display: flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 0.85rem 1rem; border-radius: 14px; background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.96rem; font-weight: 600;
  color: rgba(238, 245, 251, 0.88);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { transform: translateY(-1px); background: rgba(255, 255, 255, 0.07); border-color: rgba(85, 201, 238, 0.24); }
.nav-links .nav-cta { background: linear-gradient(120deg, var(--yellow), #ffd96f); color: #09131b; border-color: transparent; }

/* ==================== LAYOUT / TYPE ==================== */
main { padding: 1rem 0 2.4rem; }
section { padding: 0.7rem 0; }

.hero-card, .section-card, .contact-shell, .bento-card {
  background: linear-gradient(180deg, rgba(18, 30, 43, 0.96), rgba(13, 22, 31, 0.98));
  border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease;
}
.hero-card { padding: 1.4rem; position: relative; overflow: hidden; }

h1, h2, h3 { margin: 0; font-family: "Space Grotesk", sans-serif; letter-spacing: -0.05em; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 11vw, 3.6rem); line-height: 0.98; }
h1 .accent { background: linear-gradient(120deg, var(--yellow), #ffe08a); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero-lead, .section-copy, .contact-intro { margin: 0.85rem 0 0; color: var(--muted); font-size: 0.98rem; line-height: 1.6; max-width: 58ch; }
.section-copy { font-size: 1rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.3rem; }
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 50px;
  padding: 0.95rem 1.3rem; border-radius: 999px; font-weight: 800; border: none; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.btn::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 45%, transparent 60%);
  transform: translateX(-120%); transition: transform 0.6s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(120deg, var(--yellow), #ffd96f); color: #09131b; box-shadow: 0 14px 28px rgba(244, 197, 61, 0.22); }
.btn-secondary { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text); }
.btn-secondary::after { display: none; }
.btn-small { min-height: 40px; padding: 0.6rem 1rem; font-size: 0.85rem; }
.btn svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }

.grid, .contact-grid { display: grid; gap: 0.8rem; margin-top: 1rem; grid-template-columns: 1fr; }

.tile, .contact-card, .bento-card { transition: transform 0.28s var(--ease), border-color 0.28s ease, background 0.28s ease; }
.tile {
  padding: 1.1rem; border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08); display: flex; gap: 0.8rem; align-items: flex-start;
}
.tile:hover { transform: translateY(-3px); border-color: rgba(85, 201, 238, 0.22); background: rgba(255,255,255,0.055); }
.tile-icon {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 11px; background: rgba(244, 197, 61, 0.14); color: var(--yellow);
}
.tile-icon svg { width: 18px; height: 18px; }
.tile strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1rem; margin-bottom: 0.25rem; }
.tile p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

.section-card { padding: 1.3rem; }
.section-head { margin-bottom: 1.1rem; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 0.6rem; padding: 0.3rem 0.7rem 0.3rem 0.5rem;
  border-radius: 999px; background: rgba(85,201,238,0.1); color: var(--cyan); font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--cyan); box-shadow: 0 0 0 3px rgba(85,201,238,0.2); }
.section-head h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); line-height: 1.04; }

.tag {
  display: inline-flex; margin-top: 0.55rem; padding: 0.42rem 0.7rem; border-radius: 999px;
  background: rgba(85, 201, 238, 0.1); color: var(--text); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ==================== HERO VISUAL + BADGES ==================== */
.hero-visual-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 260px;
  background: radial-gradient(circle at 50% 40%, rgba(85,201,238,0.1), transparent 60%), var(--surface);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.hero-visual-card img { width: 100%; max-width: 380px; animation: float-slow 7s ease-in-out infinite; }
@keyframes float-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.floating-chip {
  position: absolute; display: flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.8rem;
  border-radius: 999px; background: rgba(9,19,27,0.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12); font-size: 0.76rem; font-weight: 700; color: var(--text);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25); animation: float-slow 6s ease-in-out infinite;
}
.floating-chip svg { width: 14px; height: 14px; color: var(--yellow); }
.chip-top { top: 1rem; right: 1rem; animation-delay: 0.4s; }
.chip-bottom { bottom: 1rem; left: 1rem; animation-delay: 1s; }

/* ==================== MARQUEE ==================== */
.marquee-band { overflow: hidden; padding: 1.1rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 2.6rem; animation: marquee-scroll 28s linear infinite; }
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 0.55rem; color: var(--muted); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.marquee-item span { width: 6px; height: 6px; border-radius: 999px; background: var(--yellow); flex-shrink: 0; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==================== BENTO ROW ==================== */
.bento-row { display: grid; gap: 0.9rem; grid-template-columns: 1fr; margin-top: 0.9rem; }
.bento-card { border-radius: var(--radius-lg); padding: 1.3rem; }
.bento-card:hover { transform: translateY(-3px); }
.bento-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 13px; margin-bottom: 0.9rem; color: #09131b;
}
.bento-icon svg { width: 21px; height: 21px; }
.bento-icon.bg-cyan { background: linear-gradient(135deg, var(--cyan), #9be0f5); }
.bento-icon.bg-yellow { background: linear-gradient(135deg, var(--yellow), #ffe08a); }
.bento-icon.bg-green { background: linear-gradient(135deg, var(--green), #b6f0c2); }
.bento-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.bento-card p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.bento-mini-list { display: grid; gap: 0.55rem; margin-top: 0.9rem; }
.bento-mini-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.88rem; color: var(--text); font-weight: 600; }
.bento-mini-item svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

/* ==================== ABOUT (asymmetric) ==================== */
.about-layout { display: grid; gap: 1.5rem; align-items: center; }
.about-visual { position: relative; border-radius: var(--radius-xl); overflow: hidden; background: var(--surface); border: 1px solid var(--line); padding: 1.2rem; }
.about-visual img { width: 100%; }
.check-list { display: grid; gap: 0.7rem; margin-top: 1.1rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.7rem; }
.check-item-icon {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.1rem;
  width: 30px; height: 30px; border-radius: 9px; background: rgba(123,216,143,0.14); color: var(--green);
}
.check-item-icon svg { width: 16px; height: 16px; }
.check-item strong { display: block; font-size: 0.95rem; margin-bottom: 0.1rem; }
.check-item p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

/* ==================== DIVISION / SUBSIDIARY CARDS ==================== */
.division-grid { display: grid; gap: 1.1rem; margin-top: 1rem; grid-template-columns: 1fr; }
.division-card {
  position: relative; display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface-soft); border: 1px solid rgba(255, 255, 255, 0.08); isolation: isolate;
  transition: transform 0.4s var(--ease), border-color 0.3s ease, box-shadow 0.4s ease;
}
.division-card:hover { transform: translateY(-6px); border-color: rgba(85,201,238,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.division-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-soft); }
.division-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.division-card:hover .division-media img { transform: scale(1.08) rotate(0.5deg); }
.division-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,19,27,0) 40%, rgba(9,19,27,0.92) 100%); }
.division-ghost-num {
  position: absolute; top: -0.6rem; right: 0.4rem; z-index: 2; font-family: "Space Grotesk", sans-serif;
  font-size: 4.2rem; font-weight: 700; color: rgba(255,255,255,0.14); line-height: 1; user-select: none;
}
.division-media .tag { position: absolute; top: 0.85rem; left: 0.85rem; margin-top: 0; backdrop-filter: blur(6px); background: rgba(9, 19, 27, 0.6); z-index: 2; }
.division-body { position: relative; padding: 1.15rem 1.2rem 1.35rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.division-body strong { font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; }
.division-tagline { color: var(--cyan); font-size: 0.85rem; font-weight: 700; }
.division-body p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.6; flex: 1; }
.division-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.5rem; font-weight: 800; color: var(--yellow); font-size: 0.9rem; }
.division-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.division-card:hover .division-link svg { transform: translateX(4px); }

/* ==================== ICON LIST (why us) ==================== */
.icon-list { display: grid; gap: 0.85rem; margin-top: 1rem; grid-template-columns: 1fr; }
.icon-list-item {
  display: flex; gap: 0.85rem; align-items: flex-start; padding: 1.05rem; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.28s var(--ease), border-color 0.28s ease, background 0.28s ease;
}
.icon-list-item:hover { transform: translateY(-3px) translateX(2px); border-color: rgba(244,197,61,0.28); background: rgba(255,255,255,0.055); }
.icon-list-icon {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 42px; height: 42px;
  border-radius: 12px; background: rgba(244,197,61,0.14); color: var(--yellow);
}
.icon-list-icon svg { width: 19px; height: 19px; }
.icon-list-item strong { display: block; font-size: 0.98rem; margin-bottom: 0.2rem; }
.icon-list-item p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

/* ==================== TIMELINE (future) ==================== */
.timeline { position: relative; margin-top: 1.4rem; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 0.55rem; top: 0.3rem; bottom: 0.3rem; width: 2px; background: linear-gradient(180deg, var(--cyan), var(--yellow), var(--red)); opacity: 0.4; }
.timeline-item { position: relative; padding-bottom: 1.7rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -2rem; top: 0.1rem; width: 30px; height: 30px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; background: var(--surface);
  border: 2px solid var(--yellow); color: var(--yellow); z-index: 1;
}
.timeline-dot svg { width: 14px; height: 14px; }
.timeline-item strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.02rem; margin-bottom: 0.25rem; }
.timeline-item p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.55; max-width: 46ch; }

/* ==================== SUBSIDIARY DETAIL PAGE ==================== */
.sub-hero { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 21/9; min-height: 220px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.sub-hero img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.sub-hero:hover img { transform: scale(1.04); }
.sub-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,19,27,0.15), rgba(9,19,27,0.92)); }
.sub-hero-copy { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; z-index: 2; }
.sub-hero-copy .tag { background: rgba(9,19,27,0.55); backdrop-filter: blur(6px); }
.sub-hero-copy h1 { font-size: clamp(2rem, 8vw, 3.2rem); margin-top: 0.6rem; }
.sub-hero-copy p { color: rgba(238,245,251,0.85); max-width: 60ch; }
.breadcrumb { display: flex; align-items: center; gap: 0.4rem; color: var(--muted); font-size: 0.85rem; margin-bottom: 0.9rem; }
.breadcrumb a:hover { color: var(--cyan); }
.feature-grid { display: grid; gap: 0.8rem; margin-top: 1rem; grid-template-columns: 1fr; }
.feature-card { padding: 1.1rem; border-radius: var(--radius-lg); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: transform 0.28s var(--ease), border-color 0.28s ease; }
.feature-card:hover { transform: translateY(-3px); border-color: rgba(85,201,238,0.22); }
.feature-card .tile-icon { margin-bottom: 0.7rem; }
.feature-card strong { display: block; font-family: "Space Grotesk", sans-serif; margin-bottom: 0.4rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.6; }
.sub-meta { display: grid; gap: 0.6rem; margin-top: 1rem; }
.sub-meta-item { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.sub-meta-item span:first-child { color: var(--muted); }
.sub-meta-item a { color: var(--cyan); font-weight: 700; }

/* ==================== CONTACT ==================== */
.contact-shell { padding: 1.15rem; margin-top: 0.35rem; }
.contact-layout { display: grid; gap: 1rem; margin-top: 1rem; }
.contact-info-col { display: grid; gap: 0.8rem; align-content: start; }
.contact-link { display: inline-flex; margin-top: 0.3rem; color: var(--yellow); font-weight: 800; word-break: break-word; font-size: 0.95rem; }
.contact-card { min-height: 0; display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.9rem; border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); }
.contact-card:hover { transform: translateY(-2px); border-color: rgba(85,201,238,0.2); }
.contact-card strong { display: block; font-size: 0.98rem; margin-bottom: 0.1rem; }
.contact-icon {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 12px; background: rgba(85, 201, 238, 0.14); color: var(--cyan);
}
.contact-icon svg { width: 20px; height: 20px; }
.map-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: var(--surface-soft); }
.map-frame { display: block; width: 100%; height: 220px; border: 0; filter: grayscale(0.15) invert(0.92) contrast(0.9); }
.map-caption {
  display: flex; align-items: center; gap: 0.4rem; position: absolute; left: 0.7rem; bottom: 0.7rem;
  padding: 0.5rem 0.75rem; border-radius: 999px; background: rgba(9,19,27,0.82); backdrop-filter: blur(6px);
  font-size: 0.8rem; font-weight: 700; color: var(--text); border: 1px solid rgba(255,255,255,0.1);
}
.map-caption svg { width: 15px; height: 15px; color: var(--yellow); flex-shrink: 0; }
.contact-form { display: grid; gap: 0.8rem; padding: 1rem; border-radius: var(--radius-lg); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: transform 0.28s ease, border-color 0.28s ease; }
.form-grid { display: grid; gap: 0.8rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.optional-tag { font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.95rem 1rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
  background: rgba(9,19,27,0.75); color: var(--text); font: inherit; outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239eb0bf' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem;
}
.field select option { background: #101b26; color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: rgba(158,176,191,0.7); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(85,201,238,0.55); box-shadow: 0 0 0 3px rgba(85,201,238,0.12); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: 0.85rem; line-height: 1.5; }
.form-success { padding: 0.9rem 1rem; border-radius: 14px; background: rgba(123, 216, 143, 0.12); border: 1px solid rgba(123, 216, 143, 0.35); color: #bdf5cc; font-weight: 600; font-size: 0.92rem; }
.form-error { padding: 0.9rem 1rem; border-radius: 14px; background: rgba(239, 76, 107, 0.12); border: 1px solid rgba(239, 76, 107, 0.35); color: #ffc3cf; font-weight: 600; font-size: 0.92rem; }

/* ==================== FOOTER ==================== */
.site-footer { padding: 1.4rem 0 1.8rem; }
.footer-inner { display: flex; flex-direction: column; gap: 1rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand img { width: 30px; height: 30px; border-radius: 9px; }
.footer-brand strong { font-family: "Space Grotesk", sans-serif; font-size: 0.95rem; }
.footer-card { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
.footer-card a { color: var(--text); font-weight: 700; }

/* ==================== SCROLL REVEAL ==================== */
.animate-in { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.animate-in.is-visible { opacity: 1; transform: translateY(0); }

.grid > *, .division-grid > *, .icon-list > *, .bento-row > *, .feature-grid > *, .contact-grid > * {
  opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.grid.is-visible > *, .division-grid.is-visible > *, .icon-list.is-visible > *, .bento-row.is-visible > *, .feature-grid.is-visible > *, .contact-grid.is-visible > * {
  opacity: 1; transform: translateY(0);
}
.grid > *:nth-child(1), .division-grid > *:nth-child(1), .icon-list > *:nth-child(1), .bento-row > *:nth-child(1), .feature-grid > *:nth-child(1), .contact-grid > *:nth-child(1) { transition-delay: 0.02s; }
.grid > *:nth-child(2), .division-grid > *:nth-child(2), .icon-list > *:nth-child(2), .bento-row > *:nth-child(2), .feature-grid > *:nth-child(2), .contact-grid > *:nth-child(2) { transition-delay: 0.1s; }
.grid > *:nth-child(3), .division-grid > *:nth-child(3), .icon-list > *:nth-child(3), .bento-row > *:nth-child(3), .feature-grid > *:nth-child(3), .contact-grid > *:nth-child(3) { transition-delay: 0.18s; }
.grid > *:nth-child(4), .division-grid > *:nth-child(4), .icon-list > *:nth-child(4), .feature-grid > *:nth-child(4) { transition-delay: 0.26s; }
.grid > *:nth-child(5), .division-grid > *:nth-child(5), .icon-list > *:nth-child(5) { transition-delay: 0.34s; }
.grid > *:nth-child(6), .division-grid > *:nth-child(6), .icon-list > *:nth-child(6) { transition-delay: 0.42s; }
.timeline.is-visible .timeline-item { opacity: 1; transform: translateX(0); }
.timeline-item { opacity: 0; transform: translateX(-14px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.timeline-item:nth-child(1) { transition-delay: 0.05s; }
.timeline-item:nth-child(2) { transition-delay: 0.15s; }
.timeline-item:nth-child(3) { transition-delay: 0.25s; }
.timeline-item:nth-child(4) { transition-delay: 0.35s; }

.empty-note { color: var(--muted); font-size: 0.95rem; padding: 1rem 0; }

/* ==================== RESPONSIVE ==================== */
@media (min-width: 760px) {
  .container { width: min(var(--max), calc(100% - 2rem)); }
  .menu-toggle { display: none; }
  .nav-panel { display: block; padding: 0; }
  .header-bar { min-height: 80px; }
  .site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
  .header-bar { flex: 1 1 auto; padding: 0.95rem 0; }
  .nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 1.25rem; }
  .nav-links a { min-height: 0; padding: 0; border: 0; border-radius: 0; background: transparent; }
  .nav-links a:hover { background: transparent; border-color: transparent; color: var(--yellow); }
  .nav-links .nav-cta { min-height: 46px; padding: 0.85rem 1.2rem; border-radius: 999px; }
  main { padding: 1.6rem 0 3.2rem; }
  section { padding: 0.9rem 0; }
  .hero-card, .section-card, .contact-shell { padding: 1.9rem; }
  .grid, .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .division-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bento-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-layout { grid-template-columns: 1fr 1fr; }
  .icon-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 2rem; padding-left: 0; }
  .timeline::before { left: 50%; top: 0; bottom: 0; }
  .timeline-item { padding: 0 0 2rem 2.6rem; }
  .timeline-item:nth-child(even) { padding: 0 2.6rem 2rem 0; text-align: right; margin-top: 3rem; }
  .timeline-item:nth-child(odd) .timeline-dot { left: -0.2rem; }
  .timeline-item:nth-child(even) .timeline-dot { right: -0.2rem; left: auto; }
  .timeline-item:nth-child(even) p { margin-left: auto; }
}

@media (min-width: 1080px) {
  .container { width: min(var(--max), calc(100% - 3rem)); }
  .hero-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr); gap: 1.2rem; align-items: stretch; }
  .grid.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr); align-items: start; gap: 1rem; }
  .section-card, .contact-shell { padding: 2.2rem; }
  .division-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .icon-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
