﻿:root {
  --navy-950: #0e1528;
  --navy-900: #11182c;
  --navy-850: #151d33;
  --navy-800: #1b2440;

  --cream-50: #fffdf8;
  --cream-100: #f8f3e8;
  --cream-200: #efe6d4;

  --gold-500: #c9a659;
  --gold-400: #e2bf6b;
  --gold-300: #f0d58a;

  --text-dark: #111827;
  --text-mid: #4b5565;
  --text-soft: #6b7280;
  --text-light: #f8fafc;
  --text-light-muted: #d6deef;

  --line-dark: rgba(17, 24, 39, 0.12);
  --line-gold: rgba(201, 166, 89, 0.38);
  --shadow-soft: 0 18px 50px rgba(17, 24, 44, 0.12);
  --shadow-deep: 0 30px 90px rgba(0, 0, 0, 0.35);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 82% 4%, rgba(201, 166, 89, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 520px, var(--cream-100) 520px, var(--cream-100) 100%);
  color: var(--text-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin-top: 0;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-light);
  position: sticky;
  top: 14px;
  z-index: 1000;
  border: 1px solid rgba(201, 166, 89, 0.28);
  border-radius: 999px;
  background: rgba(14, 21, 40, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.logo {
  color: var(--gold-400);
  font-weight: 900;
  letter-spacing: 0.32em;
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text-light-muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold-300);
}

.nav-cta {
  border: 1px solid var(--line-gold);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.04);
}

/* HERO */

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 56px;
  min-height: 640px;
  display: grid;
  align-items: center;
  position: relative;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(226, 191, 107, 0.18), transparent 22rem),
    linear-gradient(135deg, rgba(27, 36, 64, 0.98), rgba(14, 21, 40, 0.98));
  box-shadow: var(--shadow-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 21, 40, 0.25), rgba(14, 21, 40, 0.02)),
    radial-gradient(circle at 16% 80%, rgba(255, 255, 255, 0.05), transparent 18rem);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 80px;
}

.eyebrow,
.section-kicker {
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 900;
  font-size: 13px;
  margin: 0 0 18px;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  color: var(--text-light);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: var(--text-light-muted);
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  box-shadow: 0 12px 26px rgba(201, 166, 89, 0.22);
}

.secondary,
.card-button {
  border: 1px solid var(--line-gold);
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.04);
}

/* SECTIONS */

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  padding: 72px 56px;
  border-radius: var(--radius-xl);
  background: var(--cream-50);
  color: var(--text-dark);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-soft);
}

.section h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section h3 {
  color: var(--text-dark);
}

.section p,
.text-block p,
.section-center p,
.contact p,
.details p,
.faq p {
  color: var(--text-mid);
  line-height: 1.78;
  font-size: 17px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.text-block {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
}

/* Program section: light and readable */
#program {
  background:
    linear-gradient(135deg, #fffdf8 0%, #f5eddd 100%);
}

/* AUDIENCE */

.grid {
  display: grid;
  gap: 18px;
}

.four {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.mini-card,
.price-card,
.detail-list article,
.contact-box,
details {
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px rgba(17, 24, 44, 0.08);
}

.mini-card {
  padding: 24px;
  color: #20283b;
  line-height: 1.55;
  font-weight: 800;
}

/* PRICING */

.section-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.price-card {
  position: relative;
  padding: 34px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 15px;
  margin-bottom: 24px;
}

.price {
  color: var(--text-dark);
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.price span {
  font-size: 18px;
  font-weight: 700;
}

.payment {
  color: var(--text-soft);
  margin: 8px 0 26px;
}

.price-card ul {
  list-style: none;
  padding: 26px 0 0;
  margin: 0 0 30px;
  border-top: 1px solid var(--line-dark);
}

.price-card li {
  color: #2c3447;
  line-height: 1.55;
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
}

.price-card li::before {
  content: "✓";
  color: var(--gold-500);
  font-weight: 900;
  position: absolute;
  left: 0;
}

.price-card .button {
  margin-top: auto;
}

.featured {
  background:
    radial-gradient(circle at 80% 12%, rgba(226, 191, 107, 0.16), transparent 15rem),
    linear-gradient(180deg, var(--navy-800), var(--navy-950));
  border-color: var(--line-gold);
  transform: translateY(-14px);
  box-shadow: var(--shadow-deep);
}

.featured h3,
.featured .price,
.featured li {
  color: var(--text-light);
}

.featured .payment {
  color: var(--text-light-muted);
}

.featured ul {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.featured .primary {
  box-shadow: 0 16px 32px rgba(226, 191, 107, 0.18);
}

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-400);
  color: var(--navy-950);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* DETAILS */

.details {
  background: #ffffff;
}

.detail-list {
  display: grid;
  gap: 20px;
}

.detail-list article {
  padding: 30px;
  border-left: 6px solid var(--gold-500);
}

.detail-list h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* INSTRUCTOR */

.instructor {
  background:
    radial-gradient(circle at 85% 18%, rgba(226, 191, 107, 0.14), transparent 18rem),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
  border-color: var(--line-gold);
  color: var(--text-light);
}

.instructor h2 {
  color: var(--text-light);
}

.instructor p {
  color: var(--text-light-muted);
  max-width: 820px;
}

.instructor-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(201, 166, 89, 0.22);
  border-radius: var(--radius-lg);
  padding: 42px;
}

/* FAQ */

.faq {
  background: #fffdf8;
}

.faq-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

details {
  padding: 24px 28px;
}

summary {
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 900;
  font-size: 18px;
}

details p {
  margin-top: 14px;
  margin-bottom: 0;
}

/* CONTACT */

.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  background:
    linear-gradient(135deg, #ffffff 0%, #f5eddd 100%);
}

.contact-box {
  padding: 34px;
}

.contact-box h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.contact-line {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(17, 24, 44, 0.035);
  color: var(--text-dark);
}

.contact-line span {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-line strong {
  font-size: 17px;
  word-break: break-word;
}

.full {
  width: 100%;
  margin-top: 18px;
}

.secondary-contact {
  margin-top: 12px;
  color: var(--navy-950);
  border-color: rgba(17, 24, 44, 0.18);
  background: #ffffff;
}

.small-note {
  font-size: 13px !important;
  margin-top: 14px;
  color: var(--text-soft) !important;
}

/* FOOTER */

.footer {
  background: var(--navy-950);
  color: var(--text-light-muted);
  text-align: center;
  padding: 30px 20px;
  margin-top: 28px;
}

.footer p {
  margin: 0;
}

/* MOBILE */

@media (max-width: 980px) {
  .brand-mark-wrap {
    width: 42px;
    height: 42px;
  }

  .brand-mark {
    width: 25px;
  }

  .brand-text {
    font-size: 18px;
  }

  .site-header {
    top: 10px;
    width: min(100% - 24px, 1180px);
    border-radius: 24px;
    padding: 12px;
  }

  

  body {
    background:
      radial-gradient(circle at 82% 4%, rgba(201, 166, 89, 0.16), transparent 28rem),
      linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 420px, var(--cream-100) 420px, var(--cream-100) 100%);
  }

  .site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-light);
  position: sticky;
  top: 14px;
  z-index: 1000;
  border: 1px solid rgba(201, 166, 89, 0.28);
  border-radius: 999px;
  background: rgba(14, 21, 40, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero {
    min-height: auto;
    margin-top: 12px;
  }

  .hero-content {
    padding: 56px 28px;
  }

  .split,
  .contact,
  .pricing-grid,
  .four {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

  .section {
    padding: 54px 28px;
  }
}

@media (max-width: 560px) {
  .brand-mark-wrap {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-mark {
    width: 22px;
  }

  .brand-text {
    font-size: 16px;
  }

  .site-header {
    position: sticky;
    top: 8px;
  }

  

  .nav {
    font-size: 13px;
  }

  .nav-cta {
    padding: 9px 13px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 42px 20px;
    border-radius: 24px;
  }

  .price {
    font-size: 42px;
  }
}







/* Header logo refinement */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 166, 89, 0.22);
  color: var(--text-light);
  letter-spacing: normal;
  font-size: inherit;
}

.brand-mark-wrap {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #ffffff;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.brand-mark {
  width: 28px;
  height: auto;
  display: block;
}

.brand-text {
  color: var(--text-light);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}@media (max-width: 980px) {
  .brand-mark-wrap {
    width: 42px;
    height: 42px;
  }

  .brand-mark {
    width: 25px;
  }

  .brand-text {
    font-size: 18px;
  }

  .brand-logo {
    padding: 7px 12px 7px 7px;
  }

  .brand-mark-wrap {
    width: 42px;
    height: 42px;
  }

  .brand-mark {
    width: 138px;
    height: 42px;
  }

  .brand-text {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .brand-mark-wrap {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-mark {
    width: 22px;
  }

  .brand-text {
    font-size: 16px;
  }

  .brand-logo {
    gap: 10px;
    padding: 6px 10px 6px 6px;
  }

  .brand-mark-wrap {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-mark {
    width: 125px;
    height: 38px;
  }

  .brand-text {
    font-size: 16px;
  }
}


/* Final logo fit fix */
.site-header .brand-logo {
  height: 58px;
  padding: 6px 16px 6px 8px;
}

.site-header .brand-mark-wrap {
  width: 46px !important;
  height: 46px !important;
  padding: 7px !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.site-header .brand-mark {
  width: 100% !important;
  height: 100% !important;
  max-width: 32px !important;
  max-height: 36px !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  display: block !important;
}

@media (max-width: 560px) {
  .site-header .brand-logo {
    height: 52px;
  }

  .site-header .brand-mark-wrap {
    width: 40px !important;
    height: 40px !important;
    padding: 6px !important;
  }

  .site-header .brand-mark {
    max-width: 28px !important;
    max-height: 32px !important;
  }
}

