*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0c1320;
  --white: #f0ece4;
  --gold: #c9a84c;
  --muted: rgba(240, 236, 228, 0.42);
  --dimmer: rgba(240, 236, 228, 0.18);
  --border: rgba(240, 236, 228, 0.10);
  --card-bg: rgba(240, 236, 228, 0.04);
}

html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid var(--border);
}

.logo { display: flex; flex-direction: column; line-height: 1; font-family: 'Bebas Neue', sans-serif; gap: 2px; }
.logo-the { font-size: 11px; letter-spacing: 0.5em; color: var(--muted); }
.logo-main { font-size: 22px; letter-spacing: 0.06em; color: var(--white); }
.nav-label { font-size: 10px; letter-spacing: 0.35em; color: var(--dimmer); font-weight: 300; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 60px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
}

.hero-left { animation: fadeUp 0.65s ease both; }
.hero-right { animation: fadeUp 0.65s ease 0.15s both; }

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.48em;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 22px;
  opacity: 0.7;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 8.5vw, 100px);
  line-height: 0.88;
  margin-bottom: 28px;
}

.rule { width: 40px; height: 1px; background: rgba(240, 236, 228, 0.22); margin-bottom: 22px; }

.hero-desc { color: var(--muted); font-size: 15px; line-height: 1.8; font-weight: 300; max-width: 400px; }

/* FORM CARD */
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 38px;
}

.form-label { font-size: 10px; letter-spacing: 0.38em; color: rgba(240, 236, 228, 0.35); margin-bottom: 26px; font-weight: 400; }
.field { margin-bottom: 12px; }

.field input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(240, 236, 228, 0.05);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

.field input::placeholder { color: rgba(240, 236, 228, 0.32); }
.field input:focus { border-color: rgba(240, 236, 228, 0.28); }
.field input.invalid { border-color: rgba(220, 80, 80, 0.7); }
.field-error-msg { display: none; font-size: 11px; color: rgba(220, 100, 100, 0.9); margin-top: 6px; font-weight: 300; }

button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 5px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-top: 10px;
  transition: opacity 0.2s, transform 0.15s;
}

button[type="submit"]:hover { opacity: 0.9; transform: translateY(-1px); }
.form-note { font-size: 11px; color: var(--dimmer); text-align: center; margin-top: 14px; font-weight: 300; }

/* DIVIDER */
.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  margin: 0 auto;
}

/* TOPICS */
.topics { padding: 100px 60px; }
.topics-inner { max-width: 1200px; margin: 0 auto; }

.topics-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  color: var(--white);
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: 0.02em;
}

.topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.topic-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 44px 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.topic-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, background 0.3s; }
.topic-card:hover { border-color: rgba(201, 168, 76, 0.3); background: rgba(201, 168, 76, 0.03); }

.topic-icon { flex-shrink: 0; margin-top: 4px; opacity: 0.8; }

.topic-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 4px;
}

.topic-sub {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 20px;
  opacity: 0.8;
}

.topic-list { list-style: none; }

.topic-list li {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 2.0;
  letter-spacing: 0.02em;
  padding-left: 14px;
  position: relative;
}

.topic-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.5;
  font-size: 10px;
  top: 3px;
}

/* WHY */
.why { padding: 100px 60px; background: rgba(201, 168, 76, 0.03); }
.why-inner { max-width: 1200px; margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}

.why-item {
  opacity: 0;
  transform: translateY(20px);
}

.why-item.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }

.why-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.why-text { font-size: 14px; color: var(--muted); line-height: 1.85; font-weight: 300; }

/* BOTTOM CTA */
.bottom-cta {
  padding: 120px 60px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bottom-cta-inner { max-width: 700px; margin: 0 auto; }

.bottom-cta-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 24px;
}

.bottom-cta-sub { font-size: 15px; color: var(--muted); font-weight: 300; margin-bottom: 40px; line-height: 1.7; }

.cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--white);
  color: var(--navy);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s, transform 0.15s;
}

.cta-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* FOOTER */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  border-top: 1px solid var(--border);
}

.footer-copy { font-size: 12px; color: var(--dimmer); font-weight: 300; }
.footer-email { font-size: 12px; color: rgba(240, 236, 228, 0.22); font-weight: 300; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .topics-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 800px) {
  nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; padding: 48px 24px 60px; gap: 44px; }
  h1 { font-size: clamp(64px, 18vw, 86px); }
  .hero-desc { max-width: 100%; }
  .topics { padding: 60px 24px; }
  .topics-heading { margin-bottom: 40px; }
  .topic-card { padding: 32px 24px; }
  .why { padding: 60px 24px; }
  .bottom-cta { padding: 80px 24px; }
  footer { flex-direction: column; gap: 6px; text-align: center; padding: 20px 24px; }
}

@media (max-width: 480px) {
  .nav-label { display: none; }
  .form-card { padding: 28px 22px; }
}
