*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #f3f4f6;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* ================= HEADER ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0b1727;
  color: #e5e7eb;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.logo-main {
  font-weight: 700;
  font-size: 1rem;
}

.logo-sub {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.main-nav a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #e5e7eb;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.main-nav a:hover {
  border-color: #2563eb;
  background: rgba(15, 23, 42, 0.85);
  transform: translateY(-1px);
}

/* ================= HERO ================= */

.hero {
  background: radial-gradient(circle at top left, #dbeafe, #eff6ff 40%, #f3f4f6);
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
  gap: 3.25rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3vw + 1rem, 2.9rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 36rem;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

/* Trust line */
.hero-trust {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 1rem;
}

/* Vacancy definition box */
.hero-note {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  max-width: 40rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.95rem;
}

/* CTA */

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}

.btn.primary {
  background: #1d4ed8;
  color: #eff6ff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.btn.primary:hover {
  background: #1e40af;
  transform: translateY(-1px);
}

.btn.secondary {
  background: #0f172a;
  color: #e5e7eb;
}

.btn.secondary:hover {
  background: #020617;
  transform: translateY(-1px);
}

.btn.ghost {
  border-color: #1d4ed8;
  color: #1d4ed8;
  background: rgba(255, 255, 255, 0.9);
}

.btn.ghost:hover {
  background: #1d4ed8;
  color: #eff6ff;
}

/* Investors / Flips subgroup (forces its own row) */
.hero-cta .cta-subgroup {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cta-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.02em;
  padding-left: 0.25rem;
}

.btn.outline {
  background: rgba(255, 255, 255, 0.95);
  border-color: #0f172a;
  color: #0f172a;
}

.btn.outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

/* Option A: supporting call button (no floating) */
.hero-cta .btn.ghost {
  opacity: 0.9;
  margin-left: 0;
}

/* Hero bullets */

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.45rem;
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1d4ed8;
}

/* Hero image */

.hero-image-card {
  max-width: 680px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

/* ================= SECTIONS ================= */

.section {
  padding: 3.25rem 0;
}

.section-alt {
  background: #e5e7eb;
}

.section-accent {
  background: #0f172a;
  color: #e5e7eb;
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 2rem;
  color: #4b5563;
}

.section-accent .section-intro {
  color: #d1d5db;
}

/* Grids */

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Lists */

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

/* Quotes */

.quote {
  margin-bottom: 1.1rem;
  font-style: italic;
  padding-left: 1.25rem;
  border-left: 3px solid #1d4ed8;
}

.quote-attrib {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Carriers */

.carriers {
  text-align: center;
}

.carriers .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.carrier-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.carrier-logo {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: #ffffff;
  font-size: 0.9rem;
}

/* Contact */

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: #020617;
  border-radius: 1.1rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  align-self: start;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-card h3 {
  margin: 0 0 0.6rem;
}

.contact-card p {
  margin: 0.4rem 0;
}

.contact-card a {
  color: #bfdbfe;
  text-decoration: underline;
}

/* Footer */

.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  text-align: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .hero-inner,
  .grid.two-col,
  .grid.three-col,
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* ================= HERO CTA – FULL WIDTH BUTTONS ================= */

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 420px; /* controls button width */
}

/* All hero buttons same width */
.hero-cta .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Investor subgroup no longer needs special layout */
.hero-cta .cta-subgroup {
  width: 100%;
}

/* Supporting call button (still Option A hierarchy) */
.hero-cta .btn.ghost {
  opacity: 0.9;
}




