/* Maintain Focus LLC — Premium Full Site Style */

:root {
  --bg: #07111f;
  --bg2: #0b1628;
  --bg3: #101f33;
  --card: rgba(16, 31, 51, 0.92);
  --card2: rgba(255,255,255,0.045);
  --text: #f5f7fb;
  --muted: #b8c4d6;
  --soft: #dce6f7;
  --line: rgba(255,255,255,0.13);
  --gold: #d4af37;
  --gold2: #f4d35e;
  --blue: #1f7ed6;
  --blue2: #6bb7ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0,0,0,0.35);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(31,126,214,0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(212,175,55,0.10), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #09182b 45%, #07111f 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

strong {
  color: var(--white);
}

/* Layout */

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.section.tight {
  padding: 64px 0;
}

.eyebrow {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 960px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  max-width: 900px;
  margin-bottom: 22px;
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  margin-bottom: 14px;
}

h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold2);
  margin-bottom: 10px;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  max-width: 820px;
  color: var(--soft);
  margin-bottom: 18px;
}

.small {
  font-size: 0.92rem;
  color: var(--muted);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand img,
.site-logo img,
.logo img,
.nav-logo img {
  width: 128px;
  max-width: 128px;
  height: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text span:first-child {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.brand-text span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold2);
  transform: translateY(-1px);
}

.nav-links a[href="get-started.html"] {
  background: linear-gradient(135deg, var(--gold2), var(--gold)) !important;
  color: #07111f !important;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(244,211,94,0.75);
  box-shadow:
    0 0 0 1px rgba(244,211,94,0.18),
    0 10px 28px rgba(212,175,55,0.26);
}

.nav-links a[href="get-started.html"]:hover {
  background: linear-gradient(135deg, #ffe77a, #d4af37) !important;
  color: #07111f !important;
  box-shadow:
    0 0 0 1px rgba(244,211,94,0.45),
    0 0 34px rgba(244,211,94,0.48),
    0 16px 42px rgba(0,0,0,0.35);
}

/* Buttons */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255,255,255,0.18);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
  cursor: pointer;
}

.btn.primary {
  color: #07111f;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-color: rgba(244,211,94,0.75);
  box-shadow: 0 12px 32px rgba(212,175,55,0.18);
}

.btn.secondary {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.btn.blue {
  color: #06101d;
  background: linear-gradient(135deg, #8fd0ff, var(--blue2));
  border-color: rgba(107,183,255,0.8);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(244,211,94,0.38),
    0 0 28px rgba(244,211,94,0.42),
    0 18px 48px rgba(0,0,0,0.38);
}

.btn.secondary:hover {
  border-color: rgba(244,211,94,0.55);
  background: rgba(244,211,94,0.08);
}

/* Hero */

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero.short {
  min-height: 560px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,17,31,0.96) 0%, rgba(7,17,31,0.78) 48%, rgba(7,17,31,0.52) 100%),
    var(--hero-image, none);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.13), transparent 32%),
    radial-gradient(circle at 78% 30%, rgba(31,126,214,0.16), transparent 34%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 0;
}

.hero-card {
  margin-top: 34px;
  max-width: 760px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16,31,51,0.62);
  box-shadow: var(--shadow);
}

/* Cards / grids */

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

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.card.gold-border {
  border-color: rgba(212,175,55,0.55);
}

.card.blue-border {
  border-color: rgba(107,183,255,0.42);
}

.card p + p {
  margin-top: 14px;
}

.price {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  color: var(--white);
  line-height: 1;
  margin: 12px 0 8px;
}

.subprice {
  color: var(--gold2);
  font-weight: 900;
  margin-bottom: 18px;
}

.list {
  list-style: none;
  margin-top: 22px;
}

.list li {
  position: relative;
  padding-left: 28px;
  color: var(--soft);
  margin: 12px 0;
}

.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold2);
  font-weight: 900;
}

/* Photo sections */

.photo-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.photo-frame {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(244,211,94,0.26);
  box-shadow: var(--shadow);
  min-height: 380px;
  background: rgba(255,255,255,0.04);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame.tall {
  min-height: 520px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.photo-strip img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
}

/* Founder Section */

.founder-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: center;
}

.founder-photo {
  max-width: 380px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(244,211,94,0.28);
  background: rgba(255,255,255,0.03);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.36),
    0 0 30px rgba(244,211,94,0.10);
}

.founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.founder-card {
  background: rgba(16,31,51,0.74);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}

.founder-name {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.05em;
}

.founder-title {
  color: var(--gold2);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Highlight blocks */

.band {
  background:
    linear-gradient(135deg, rgba(31,126,214,0.16), rgba(212,175,55,0.08)),
    rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.notice {
  border-left: 4px solid var(--gold);
  padding: 22px 24px;
  background: rgba(212,175,55,0.08);
  border-radius: 18px;
  color: var(--soft);
}

.kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.kicker {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.045);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 800;
}

/* FAQ */

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

.faq-item {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
}

.faq-item h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

/* Footer */

.site-footer {
  background: #050d18;
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 74px 0 34px;
}

.footer-cta {
  padding-bottom: 56px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.1fr;
  gap: 36px;
}

.footer-logo {
  width: 96px;
  max-width: 96px;
  margin-bottom: 18px;
}

.footer-title {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold2);
}

.footer-contact p,
.footer-contact a {
  color: var(--muted);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 44px;
  color: rgba(255,255,255,0.52);
  font-size: 0.86rem;
}

/* Hero image variables */

.hero-home {
  --hero-image: url("home-conference.jpg");
}

.hero-personal {
  --hero-image: url("personal-lounge.jpg");
}

.hero-business {
  --hero-image: url("business-laptop.jpg");
}

.hero-mentorship {
  --hero-image: url("mentorship-table.jpg");
}

.hero-restoration {
  --hero-image: url("restoration-review.jpg");
}

.hero-start {
  --hero-image: url("booking-common-area.jpg");
}

.hero-about {
  --hero-image: url("about-founder.jpg");
}

/* Responsive */

@media (max-width: 1020px) {
  .nav {
    min-height: 92px;
    gap: 18px;
  }

  .brand img,
  .site-logo img,
  .logo img,
  .nav-logo img {
    width: 104px;
    max-width: 104px;
  }

  .brand-text span:first-child {
    font-size: 0.92rem;
  }

  .brand-text span:last-child {
    font-size: 0.72rem;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.84rem;
  }

  .nav-links a[href="get-started.html"] {
    padding: 12px 20px;
  }
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    padding: 18px 0;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    min-height: 640px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .photo-split,
  .founder-split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    max-width: 420px;
    margin: 0 auto;
  }

  .founder-card {
    padding: 28px;
  }

  .photo-frame,
  .photo-frame.tall {
    min-height: 320px;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .photo-strip img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 70px 0;
  }

  .brand img,
  .site-logo img,
  .logo img,
  .nav-logo img {
    width: 88px;
    max-width: 88px;
  }

  .brand {
    gap: 14px;
  }

  .brand-text span:first-child {
    font-size: 0.82rem;
  }

  .brand-text span:last-child {
    font-size: 0.68rem;
  }

  .nav-links {
    font-size: 0.86rem;
  }

  .btn {
    width: 100%;
  }

  .hero-content {
    padding: 70px 0;
  }

  .card,
  .founder-card {
    padding: 24px;
  }
}