:root {
  --bg: #05060a;
  --bg-alt: #0b0d14;
  --bg-light: #0f111a;
  --accent: #d4af37;
  --accent-soft: rgba(212, 175, 55, 0.16);
  --text-main: #f5f5f7;
  --text-muted: #a1a1aa;
  --text-soft: #8d8e99;
  --border-subtle: #232533;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

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

html, body {
  font-family: var(--font-main);
  background: radial-gradient(circle at top, #151728 0, #02030a 55%, #000 100%);
  color: var(--text-main);
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom,
    rgba(5, 6, 12, 0.96),
    rgba(5, 6, 12, 0.88),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  background: radial-gradient(circle at top, #2b2213, #05060a);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.nav-title {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-name {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-sub {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  color: var(--text-soft);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.8);
  color: var(--accent);
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.28);
}

.nav-cta:hover {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.25), transparent);
}

/* HERO */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: flex-end;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-title span:first-child {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.hero-tagline {
  font-size: 0.98rem;
  color: var(--text-soft);
  border-left: 2px solid var(--accent-soft);
  padding-left: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f6e7b2, #d4af37, #b48b21);
  color: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border-color: var(--border-subtle);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03), transparent);
}

.btn-secondary:hover {
  border-color: rgba(212, 175, 55, 0.7);
  background-color: rgba(212, 175, 55, 0.08);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.meta-label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.meta-value {
  font-size: 0.93rem;
  color: var(--text-main);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top, #22253a, #05060a);
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 1.6rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  z-index: 2;
}

.hero-card-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.hero-card-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.hero-card-role {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.hero-card-quote {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 1.2rem;
}

.hero-card-quote span {
  color: var(--accent);
}

.hero-card-meta {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.hero-card-meta strong {
  color: var(--text-main);
}

/* CREDIBILITY STRIP */

.strip {
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.4rem 0;
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.strip-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.strip-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.strip-pill {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 20, 0.9);
}

/* SECTIONS */

section {
  padding: 3.5rem 0;
}

.section-header {
  margin-bottom: 2rem;
  max-width: 720px;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
}

/* HOW HE SERVES */

.services-section {
  background: var(--bg-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(6, 7, 14, 0.96);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.3rem 1.2rem 1.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-pill {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  margin-bottom: 0.6rem;
  display: inline-block;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.service-card ul {
  list-style: none;
  margin-top: 0.6rem;
}

.service-card li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.7rem;
  color: var(--accent);
}

/* AI ADVISORY SECTION */

.ai-section {
  background: rgba(5, 6, 12, 0.9);
}

.ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.ai-body {
  font-size: 0.96rem;
  color: var(--text-muted);
}

.ai-body p + p {
  margin-top: 1rem;
}

.ai-highlight {
  margin-top: 1.3rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(5, 6, 12, 0.95));
  font-size: 0.9rem;
  color: var(--text-main);
}

.ai-highlight strong {
  color: var(--accent);
}

.ai-side {
  background: rgba(10, 11, 20, 0.96);
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.3rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.ai-side-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.ai-side-list {
  list-style: none;
  margin-top: 0.4rem;
}

.ai-side-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.ai-side-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.7rem;
  color: var(--accent);
}

/* FRACTIONAL AI LEADERSHIP */

.fractional-section {
  background: var(--bg-alt);
}

.fractional-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.3rem;
  align-items: center;
}

.fractional-body {
  font-size: 0.96rem;
  color: var(--text-muted);
}

.fractional-body p + p {
  margin-top: 1rem;
}

.fractional-tag {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.fractional-panel {
  background: rgba(6, 7, 14, 0.96);
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 1.3rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.fractional-panel h3 {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.fractional-panel ul {
  list-style: none;
  margin-top: 0.4rem;
}

.fractional-panel li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.36rem;
}

.fractional-panel li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.75rem;
  color: var(--accent);
}

/* ABOUT RONNIE */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.5rem;
}

.about-text {
  font-size: 0.96rem;
  color: var(--text-muted);
}

.about-text p + p {
  margin-top: 1rem;
}

.about-stats {
  display: grid;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.stat-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 6, 12, 0.9);
  padding: 0.9rem 1rem;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.stat-value {
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.stat-note {
  font-size: 0.83rem;
}

/* AWARDS */

.awards-section {
  background: rgba(5, 6, 12, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.awards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.awards-list {
  list-style: none;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 1rem;
}

.awards-list li + li {
  margin-top: 0.7rem;
}

.awards-list strong {
  color: var(--text-main);
}

.awards-note {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-top: 0.9rem;
}

/* TESTIMONIALS */

.testimonials {
  background: rgba(0, 0, 0, 0.4);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, #191b2b, #05060a);
  padding: 1.1rem 1.1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 0.8rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* CTA / CONTACT */

.cta-section {
  padding: 3.5rem 0 3rem;
}

.cta-inner {
  border-radius: 1.6rem;
  border: 1px solid rgba(212, 175, 55, 0.36);
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.2), #05060a);
  padding: 2.3rem 2.1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.cta-title {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.cta-text {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1.2rem;
}

.cta-list {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cta-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.cta-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.7rem;
  color: var(--accent);
}

.contact-form {
  font-size: 0.9rem;
}

.form-row {
  margin-bottom: 0.9rem;
}

.form-row label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 16, 0.95);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3);
  background: rgba(10, 10, 20, 0.98);
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 0.25rem;
}

.contact-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
}

/* FOOTER */

footer {
  padding: 2.2rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

/* LINKEDIN BUTTON */

.libutton {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px;
  text-align: center;
  outline: none;
  text-decoration: none !important;
  color: #ffffff !important;
  width: 200px;
  height: 32px;
  border-radius: 16px;
  background-color: #0A66C2;
  font-family: "SF Pro Text", Helvetica, sans-serif;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hero-grid,
  .ai-grid,
  .fractional-grid,
  .about-grid,
  .awards-grid,
  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 4rem;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .metrics-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-title {
    font-size: 2.2rem;
  }
}
