/* =========================
   GAD GROUP - Investor-ready UI
   Save as: styles.css
   ========================= */

/* Reset-ish */

:root {
  --primary: #800000;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #ffffff;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
p {
  margin: 0 0 1rem;
}
h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.75rem;
  /* letter-spacing: -0.02em; */

  font-weight: 700;
  letter-spacing: -0.3px;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.muted {
  color: #475569;
}
.lead {
  font-size: 1.05rem;
  color: #334155;
  margin: 0.25rem 0 0;
}
.sublead {
  margin: 0.2rem 0 0;
  color: #475569;
}
.eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #334155;
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: url("images/gad_logo.png") no-repeat center center/cover;
}

.brand-text strong {
  display: block;
  font-size: 0.98rem;
}
.brand-text small {
  display: block;
  color: #64748b;
  margin-top: -2px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.25rem;
}

.nav a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 0.55rem 0.85rem !important;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(2, 6, 23, 0.06);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 12px;
  padding: 0.55rem 0.6rem;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  margin: 4px 0;
  border-radius: 2px;
}

.mobile-nav {
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}

.mobile-nav__links {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0 1.25rem;
}

.mobile-nav__links a {
  text-decoration: none;
  font-weight: 700;
  color: #334155;
}

/* Sections */
.section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}
.section--alt {
  background: #f8fafc;
}
.section-head {
  max-width: 860px;
  margin-bottom: 1.75rem;
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.prose {
  max-width: 720px;
}

/* Hero */
.hero {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background:
    radial-gradient(
      1200px 600px at 10% 10%,
      rgba(15, 23, 42, 0.08),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 90% 30%,
      rgba(2, 132, 199, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #334155;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-metrics {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.6rem;
  max-width: 560px;
}

.metric {
  display: grid;
  gap: 0.1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.05);
}

.metric__k {
  font-weight: 800;
}
.metric__v {
  color: #475569;
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease,
    border-color 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--primary);
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.14);
}

.btn--primary:hover {
  background: #c01111;
  color: white;
}

.btn--secondary {
  background: #ffffff;
  color: #0f172a;
  border-color: #cbd5e1;
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.06);
}

.btn--secondary:hover {
  border-color: #94a3b8;
}

/* Hero Card + Ring */
.hero-card {
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.1);
  overflow: hidden;
}

.hero-card__top {
  padding: 1.2rem 1.2rem 0.75rem;
}
.hero-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.hero-card__desc {
  color: #475569;
  margin: 0;
}

.hero-card__bottom {
  border-top: 1px solid #e2e8f0;
  padding: 0.9rem 1.2rem;
  background: #ffffff;
}

.ring {
  position: relative;
  margin: 1rem auto 0.25rem;
  width: min(360px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: radial-gradient(
    circle at center,
    #ffffff 0 42%,
    rgba(199, 2, 2, 0.1) 42% 58%,
    rgba(124, 51, 51, 0.08) 58% 100%
  );
  border: 1px solid #e2e8f0;
}

.ring__core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 44%;
  height: 44%;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
}

.ring__item {
  position: absolute;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.06);
  font-weight: 800;
  color: #334155;
  font-size: 0.9rem;
}

.ring__item--1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.ring__item--2 {
  top: 45%;
  right: 2%;
  transform: translateY(-50%);
}
.ring__item--3 {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.ring__item--4 {
  top: 45%;
  left: 2%;
  transform: translateY(-50%);
}

/* Cards */
.cards {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr 1fr;
}

.card {
  padding: 1rem 1rem;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.05);
}

.card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}
.card p {
  color: #475569;
  margin: 0;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.08);
}

.hero2 {
  margin-top: 40px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.table th,
.table td {
  text-align: left;
  padding: 1rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid #e2e8f0;
}

.table th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #334155;
  background: #f8fafc;
}

.table tr:last-child td {
  border-bottom: none;
}

.callout {
  margin-top: 1.25rem;
  padding: 1rem 1rem;
  border-left: 4px solid #0284c7;
  background: #f0f9ff;
  border-radius: 14px;
  border: 1px solid #e0f2fe;
}

/* Bullets & Note */
.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.bullets li {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.05);
}

.note {
  margin-top: 1rem;
  padding: 1rem 1rem;
  border-left: 4px solid #0f172a;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

/* Feature block */
.feature__panel {
  padding: 1.2rem 1.2rem;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  background:
    radial-gradient(
      900px 500px at 20% 20%,
      rgba(197, 34, 34, 0.08),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 90% 60%,
      rgba(199, 2, 2, 0.1),
      transparent 55%
    ),
    #ffffff;
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.08);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}
.pill {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  color: #334155;
  font-size: 0.9rem;
}

/* Founder */
.founder {
  display: grid;
  gap: 1.1rem;
  max-width: 1100px;
  margin: 0;
  padding: 0;
}

.founder__card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1rem;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.07);
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: url("images/precious-mvulane.jpeg") no-repeat center center/cover;
  border: 1px solid #e2e8f0;
}

.founder__name {
  margin: 0 0 0.25rem;
}

.quote {
  margin: 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid #0284c7;
  background: #f0f9ff;
  border-radius: 14px;
  border: 1px solid #e0f2fe;
}

.quote p {
  margin: 0;
  font-style: italic;
  color: #0f172a;
}

.highlights {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, 1fr);
}

/* Timeline */
.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
  max-width: 920px;
}

.timeline li {
  padding: 1rem 1rem;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.06);
}

.timeline h3 {
  margin-bottom: 0.35rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-card {
  padding: 1.2rem 1.2rem;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.08);
}

.contact-card--light {
  background:
    radial-gradient(
      900px 500px at 25% 25%,
      rgba(199, 2, 2, 0.1),
      transparent 60%
    ),
    #ffffff;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
  display: grid;
  gap: 0.4rem;
}

.contact-list a {
  color: #0f172a;
  font-weight: 800;
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}

.divider {
  height: 1px;
  background: #e2e8f0;
  margin: 1rem 0;
}

.mini {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-top: 1px dashed #e2e8f0;
}

.mini:first-of-type {
  border-top: none;
}
.mini__k {
  font-weight: 900;
  color: #0f172a;
}
.mini__v {
  color: #475569;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e2e8f0;
  padding: 1.25rem 0;
  background: #ffffff;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-row p {
  margin: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: inline-block;
  }
  .hero-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .highlights {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .table {
    min-width: 720px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 60px;
  /* Replace 'woman-image.jpg' with your actual image path */
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 40%
    ),
    url("https://cdn.pixabay.com/photo/2026/02/03/19/47/19-47-53-761_960_720.jpg")
      no-repeat center center;
  background-size: cover;
}

.hero-content h1 {
  font-size: 48px;
  font-family: "Serif", serif; /* Use a font like Playfair Display */
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--text-gray);
  line-height: 1.6;
}

.hero-btns button {
  padding: 15px 30px;
  border-radius: 25px;
  margin: 0 10px;
  cursor: pointer;
  font-weight: bold;
  width: 200px;
  background-color: #800000;
  color: white;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.hero-btns button:hover {
  background-color: #c01111;
  transform: translateY(-4px);
}

.btn-primary {
  background: var(--primary-orange);
  color: white;
  border: none;
}

.btn-secondary {
  background: white;
  border: 1px solid #ddd;
}

/* Bottom Stats */
.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  gap: 50px;
  color: white; /* Contrast against the green plants/blurred background */
}

.stat-item h3 {
  font-size: 24px;
  margin: 0;
}

.stat-item p {
  font-size: 12px;
  opacity: 0.8;
}

/* brands */
.brands {
  background: #fff;
}

.flagships {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.25rem;
}

.flagship {
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
}

.flagship-media {
  aspect-ratio: 16/9;
  background: #f1f5f9;
}

.flagship-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flagship-body {
  padding: 1rem 1rem 1.1rem;
}

.flagship-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.flagship-logo {
  height: 42px;
  width: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.35rem 0.55rem;
}

.badge {
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
}

.flagship h3 {
  margin: 0 0 0.2rem;
  font-size: 1.25rem;
}

.tagline {
  margin: 0 0 0.8rem;
  color: #475569;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.chip {
  font-size: 0.78rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}

.details {
  border-top: 1px solid #e2e8f0;
  padding-top: 0.75rem;
}

.details summary {
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
}

.details-content {
  margin-top: 0.6rem;
  color: #334155;
}

.details-content ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.brand-mini {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mini-col {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1rem;
  background: #fff;
}

.mini-col h4 {
  margin: 0 0 0.35rem;
}
.mini-line {
  margin: 0;
  color: #475569;
}

@media (max-width: 980px) {
  .flagships {
    grid-template-columns: 1fr;
  }
  .brand-mini {
    grid-template-columns: 1fr;
  }
}

/* framework */
/* Framework (add-on styles) */
.framework .section-head {
  margin-bottom: 1.75rem;
}

.framework-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.framework-copy {
  max-width: 720px;
}

.framework-statement {
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.45;
  color: #0f172a;
  margin: 0 0 0.6rem;
  max-width: 52ch;
}

.framework-sub {
  margin: 0 0 1rem;
  color: #475569;
  line-height: 1.65;
  max-width: 62ch;
}

.core-principle {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.04);
}

.core-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #334155;
  margin-bottom: 0.35rem;
}

.core-text {
  margin: 0;
  color: #0f172a;
  line-height: 1.6;
}

.framework-cards {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr 1fr;
}

.f-card {
  padding: 1.05rem 1rem;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.f-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
  border-color: #cbd5e1;
}

.f-card h3 {
  font-size: 1.02rem;
  margin: 0 0 0.35rem;
  color: #0f172a;
}

.f-card p {
  margin: 0;
  color: #475569;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 960px) {
  .framework-grid {
    grid-template-columns: 1fr;
  }

  .framework-cards {
    grid-template-columns: 1fr;
  }
}

/* Four-Layer Operating Model */
/* =========================
   Four-Layer Operating Model (Premium UI)
   ========================= */
/* Modern Four-Layer Model */
.model-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: 1rem;
}

/* Left nav */
.layer-nav {
  position: sticky;
  top: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
  padding: 0.6rem;
}

.layer-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.layer-link:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.layer-link .num {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--primary);
  border: 1px solid #e2e8f0;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
}

/* Panels */
.layer-panels {
  display: grid;
  gap: 1rem;
}

.panel {
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.06);
  overflow: hidden;
}

.panel-head {
  padding: 1rem 1.1rem 0.85rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.panel-head h3 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.panel-sub {
  margin: 0;
  color: #475569;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  white-space: nowrap;
}

.tag-strong {
  background: #800000;
  color: #fff;
  border-color: #0f172a;
}

/* Body columns */
.panel-body {
  padding: 1rem 1.1rem 1.1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.panel-body--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.panel-col {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 0.95rem;
  background: #fff;
}

.panel-col--full {
  grid-column: 1 / -1;
}

.panel-col h4 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
}

.panel-col ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #475569;
  display: grid;
  gap: 0.4rem;
  line-height: 1.55;
}

/* Highlight block */
.highlight {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1rem;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.pill {
  font-size: 0.78rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}

/* Two-column bullet list */
.two-col {
  columns: 2;
  column-gap: 1.6rem;
  padding-left: 1.1rem;
  margin: 0;
}

.mission {
  margin: 0 0 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
}

/* Responsive */
@media (max-width: 980px) {
  .model-layout {
    grid-template-columns: 1fr;
  }
  .layer-nav {
    position: relative;
    top: auto;
  }
  .panel-body,
  .panel-body--3 {
    grid-template-columns: 1fr;
  }
  .two-col {
    columns: 1;
  }
}

/* Synergy Matrix */
.synergy-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.25rem;
}

.synergy-card {
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.synergy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.1);
}

.synergy-media {
  aspect-ratio: 16/9;
  background: #f1f5f9;
}

.synergy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.synergy-body {
  padding: 1rem 1rem 1.05rem;
}

.synergy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.synergy-top h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.synergy-top .pill {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  white-space: nowrap;
}

/* Flow row */
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.9rem;
}

.node {
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  border-radius: 16px;
  padding: 0.6rem 0.65rem;
  min-height: 56px;
}

.label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.text {
  display: block;
  color: #0f172a;
  font-weight: 650;
  line-height: 1.25;
  font-size: 0.95rem;
}

.arrow {
  color: #94a3b8;
  font-weight: 900;
}

/* Captured value */
.capture {
  border-top: 1px solid rgba(226, 232, 240, 0.85);
  padding-top: 0.8rem;
}

.cap-label {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.capture p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px) {
  .synergy-grid {
    grid-template-columns: 1fr;
  }
  .flow {
    grid-template-columns: 1fr;
  }
  .arrow {
    display: none;
  }
}

/* utility more css */
/* Hub section upgrades */
.hub .kicker {
  margin: 0 0 0.35rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  font-size: 0.75rem;
}

.integrates {
  margin: 1rem 0 0.9rem;
}

.integrates h4 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.integrates-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr 1fr;
}

.i-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 0.75rem 0.8rem;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.04);
}

.i-title {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.i-sub {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Value tiles */
.value-tiles {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr 1fr;
}

.v-tile {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 0.75rem 0.8rem;
  background: #fff;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.04);
}

.v-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 900;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.v-text {
  color: #0f172a;
  font-weight: 650;
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 960px) {
  .integrates-grid,
  .value-tiles {
    grid-template-columns: 1fr;
  }
}

/* gad foundation */
/* Foundation Tabs Layout */
.foundation-tabs .ft-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: 1.25rem;
}

/* Left summary card */
.ft-summary {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 26px;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
  padding: 1.2rem 1.25rem;
}

.ft-kicker {
  margin: 0 0 0.35rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  font-size: 0.75rem;
}

.ft-summary h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.ft-text {
  margin: 0 0 1rem;
  color: #475569;
  line-height: 1.65;
}

/* Registration row */
.ft-reg {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.ft-reg-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 900;
  color: #64748b;
}

.ft-reg-value {
  font-weight: 750;
  color: #0f172a;
}

/* Right tabs block */
.ft-tabs {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
  padding: 0.75rem;
  display: grid;
  gap: 0.6rem;
}

/* Tab buttons */
.ft-tab {
  text-align: left;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  border-radius: 18px;
  padding: 0.85rem 0.9rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.ft-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.08);
  border-color: rgba(203, 213, 225, 0.95);
}

/* Active look (no nth-child) */
.ft-tab.is-active {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  border-color: rgba(148, 163, 184, 0.55);
}

.ft-tab-title {
  display: block;
  font-weight: 850;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.ft-tab-sub {
  display: block;
  color: #475569;
  line-height: 1.45;
  font-size: 0.95rem;
}

/* Footer note */
.ft-footer {
  margin-top: 0.2rem;
  border-radius: 18px;
  padding: 0.85rem 0.9rem;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #334155;
}

/* Responsive */
@media (max-width: 980px) {
  .foundation-tabs .ft-layout {
    grid-template-columns: 1fr;
  }
}

/* 20-Year Roadmap */
.roadmap-rail {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.phase {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: #fff;
  padding: 1rem 1rem 1.05rem;
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.phase:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(2, 6, 23, 0.1);
}

/* top row */
.phase-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

/* small chips */
.phase-num {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.phase-years {
  font-size: 0.78rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #f8fafc;
  color: #0f172a;
  font-weight: 750;
}

/* title */
.phase-title {
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

/* list */
.phase-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: #475569;
}

.phase-list li {
  position: relative;
  padding-left: 1.05rem;
  line-height: 1.5;
}

.phase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(42, 15, 15, 0.22);
}

/* subtle rail effect */
.phase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;

  opacity: 0.55;
}

/* Responsive */
@media (max-width: 1100px) {
  .roadmap-rail {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .roadmap-rail {
    grid-template-columns: 1fr;
  }
}

/* dashboard */
/* Performance Dashboard */
.dash-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.dash-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
  padding: 1rem 1.05rem 1.05rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.dash-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(23, 2, 2, 0.1);
}

.dash-card--wide {
  grid-column: 1 / -1;
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.dash-head h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.dash-pill {
  font-size: 0.75rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #f8fafc;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
}

.dash-metrics {
  display: grid;
  gap: 0.85rem;
}

.dash-metrics--2 {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 1rem;
}

.metric {
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 18px;
  padding: 0.85rem 0.9rem;
  background: linear-gradient(to bottom, #ffffff, #fcf8f8);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.04);
}

.metric-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.metric-text {
  margin: 0;
  color: #0f172a;
  font-weight: 650;
  line-height: 1.4;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  font-size: 0.78rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #0f172a;
  font-weight: 750;
}

/* Responsive */
@media (max-width: 900px) {
  .dash-grid {
    grid-template-columns: 1fr;
  }
  .dash-metrics--2 {
    grid-template-columns: 1fr;
  }
}

.partner {
  padding: 4.5rem 0;
}

.partner-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
  padding: 2rem 2.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.partner-card::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(
      closest-side at 20% 20%,
      rgba(233, 14, 14, 0.12),
      transparent 60%
    ),
    radial-gradient(
      closest-side at 80% 70%,
      rgba(241, 99, 99, 0.1),
      transparent 60%
    );
  pointer-events: none;
}

.partner-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.partner-lead {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.5rem 0 0.75rem;
  color: #0f172a;
}

.partner-text {
  color: #475569;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.partner-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Button styles (if not already defined) */
.btn {
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;

  border: 1px solid var(--primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(23, 2, 2, 0.2);
}

.btn-outline {
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  color: #0f172a;
}

.btn-outline:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.image-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#dashboard img {
  max-width: 800px;
  border-radius: 10px;
}

@media (max-width: 520px) {
  #dashboard img {
    max-width: 300px;
  }
}

/* founder 2 */
/* Founder Section (modern, white background) */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: 1.25rem;
}

/* Left profile card */
.founder-profile {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 26px;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  box-shadow: 0 16px 48px rgba(2, 6, 23, 0.06);
  padding: 1.2rem 1.25rem 1.25rem;
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.founder-photo {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
}

.founder-name {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.founder-cred {
  font-size: 0.95rem;
  color: #475569;
  font-weight: 700;
  margin-left: 0.25rem;
}

.founder-title {
  margin: 0;
  color: #64748b;
  font-weight: 650;
  line-height: 1.4;
}

.founder-paragraph {
  margin: 0 0 0.85rem;
  color: #475569;
  line-height: 1.7;
}

.founder-quote {
  margin: 1rem 0 1rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.05);
  color: #0f172a;
  font-style: italic;
  line-height: 1.6;
}

/* badges */
.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.badge {
  font-size: 0.78rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: #0f172a;
  font-weight: 750;
  white-space: nowrap;
}

/* Right cards */
.founder-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.fcard {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.06);
  padding: 1rem 1rem 1.05rem;
}

.fcard--wide {
  grid-column: 1 / -1;
}

.fcard h4 {
  margin: 0 0 0.65rem;
  font-size: 1.02rem;
  color: #0f172a;
}

.f-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #475569;
  display: grid;
  gap: 0.45rem;
  line-height: 1.55;
}

.f-list--two {
  columns: 2;
  column-gap: 1.5rem;
}

.f-text {
  margin: 0 0 0.6rem;
  color: #475569;
  line-height: 1.65;
}

.org-strip {
  margin-top: 0.7rem;
  padding: 0.75rem 0.85rem;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #f8fafc;
  color: #334155;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }
  .founder-cards {
    grid-template-columns: 1fr;
  }
  .f-list--two {
    columns: 1;
  }
}

/* Founder cards layout */
.founder-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.fcard {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
  padding: 1rem 1rem 1.05rem;
}

.fcard--wide {
  grid-column: 1 / -1;
}

.fcard h4 {
  margin: 0 0 0.7rem;
  font-size: 1.02rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}

/* list + ticks */
.f-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: #475569;
  line-height: 1.55;
}

.f-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.tick {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.85rem;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.9);
  flex: 0 0 auto;
  margin-top: 0.05rem;
}

.muted-inline {
  color: #64748b;
  font-weight: 600;
  font-size: 0.92em;
}

/* two-column list for wide card */
.f-list--two {
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
}

/* responsive */
@media (max-width: 980px) {
  .founder-cards {
    grid-template-columns: 1fr;
  }
  .f-list--two {
    grid-template-columns: 1fr;
  }
}

/* Extended founder section */
.founder-extended {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.25rem;
}

.f-extended-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.06);
  padding: 1.25rem 1.3rem;
}

.f-extended-card h4 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: #0f172a;
}

/* Book highlight */
.book-highlight {
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 20px;
  padding: 1rem;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  margin-bottom: 1rem;
}

.book-highlight h5 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.book-highlight p {
  margin: 0 0 0.6rem;
  color: #475569;
  line-height: 1.65;
}

.book-highlight .muted {
  color: #64748b;
}

/* Program highlight */
.program-highlight h5 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.program-highlight p {
  margin: 0 0 0.75rem;
  color: #475569;
}

/* Organization grid */
.org-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.org-grid span {
  font-size: 0.8rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #f8fafc;
  color: #0f172a;
  font-weight: 650;
}

/* Board list */
.board-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  color: #475569;
}

.board-list li {
  padding: 0.6rem 0.75rem;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  background: #fff;
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.04);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 980px) {
  .org-grid {
    gap: 0.5rem;
  }
}

/* Awards Section */
.founder-awards {
  padding-top: 4rem;
}

.award-ribbons {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

/* Card */
.award-card {
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.08);
  padding: 1.5rem 1.25rem 1.25rem 5.5rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.12);
}

/* Ribbon badge */
.award-badge {
  position: absolute;
  left: -18px;
  top: 22px;
  width: 90px;
  height: 90px;
  border-radius: 18px;
  background: linear-gradient(135deg, #800000, #a00000);
  box-shadow: 0 15px 35px rgba(128, 0, 0, 0.35);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
}

/* subtle ribbon tail */
.award-badge::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 18px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 18px solid #6b0000;
}

/* Badge variations */
.award-year {
  font-size: 1rem;
}
.award-count {
  font-size: 1.4rem;
}
.award-tv {
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.award-star {
  font-size: 1.5rem;
}

/* Content */
.award-content h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #0f172a;
}

.award-content p {
  margin: 0;
  color: #475569;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 980px) {
  .award-ribbons {
    grid-template-columns: 1fr;
  }
}

/* Founder Philosophy Section */
.founder-philosophy {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.philosophy-panel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 2.5rem 2.75rem;
  border-radius: 30px;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.08);
}

/* Large decorative quote mark */
.philosophy-quote-mark {
  position: absolute;
  top: -25px;
  left: 30px;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(128, 0, 0, 0.12); /* subtle maroon */
  line-height: 1;
  pointer-events: none;
}

/* Main quote */
.philosophy-quote {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 1.75rem;
}

/* Supporting text */
.philosophy-body p {
  margin: 0 0 1rem;
  color: #475569;
  line-height: 1.7;
  font-size: 1rem;
}

/* Signature */
.philosophy-signature {
  margin-top: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #800000;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .philosophy-panel {
    padding: 1.75rem;
  }

  .philosophy-quote {
    font-size: 1.1rem;
  }

  .philosophy-quote-mark {
    font-size: 5rem;
    left: 18px;
  }
}
