:root {
  /* Typography */
  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Apple Color Emoji, Segoe UI Emoji;
  --lh-tight: 1.15;
  --lh-snug: 1.25;
  --lh-normal: 1.45;
  --lh-relaxed: 1.6;

  /* Color tokens */
  --bg-page: #0E0F12;
  --bg-section: #121419;
  --bg-surface: #16181F;
  --bg-elevated: #1B1F27;
  --bg-muted-surface: #232833;

  --border-subtle: rgba(255,255,255,0.06);
  --border-strong: #2A2F3A;
  --focus-ring: #3B82F6;

  --text-primary: #F5F7FA;
  --text-secondary: #C8CFDA;
  --text-tertiary: #9AA3B2;
  --text-muted: #7A8494;
  --text-inverse: #0E0F12;
  --text-on-accent: #FFFFFF;

  --icon-default: #E6E9EE;
  --icon-subtle: #A7B0BF;
  --icon-inverse: #0E0F12;
  --icon-on-accent: #FFFFFF;

  --accent-blue: #52A5FF;
  --accent-cyan: #67E8F9;
  --accent-indigo: #7B61FF;
  --accent-purple: #A855F7;
  --accent-magenta: #EC4899;
  --accent-orange: #F97316;
  --accent-teal: #2DD4BF;
  --accent-lime: #A3E635;

  --overlay-strong: rgba(8,10,14,0.85);
  --overlay-med: rgba(8,10,14,0.6);
  --overlay-soft: rgba(8,10,14,0.35);
  --overlay-blue: rgba(82,165,255,0.40);

  --shadow-ambient: rgba(0,0,0,0.40);
  --shadow-lift: rgba(0,0,0,0.45);
  --shadow-ring: rgba(246, 218, 59, 0.55);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-xxl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-surface: 0 1px 2px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
  --sh-card: 0 8px 24px rgba(0,0,0,0.45);
  --sh-card-hover: 0 12px 32px rgba(0,0,0,0.55);
  --sh-header: 0 6px 16px rgba(0,0,0,0.35);
  --sh-focus: 0 0 0 3px rgba(181,156,94,0.55);

  /* Gradients */
  --grad-hero-vignette: linear-gradient(180deg, rgba(8,10,14,0) 0%, rgba(8,10,14,0.6) 70%, rgba(8,10,14,0.85) 100%);
  --grad-hero-blue: radial-gradient(120% 80% at 20% 0%, rgba(181,156,94,0.4) 0%, rgba(181,156,94,0) 60%);
  --grad-primary-btn: linear-gradient(135deg, #2F80ED 0%, #67E8F9 100%);
  --grad-card-a: linear-gradient(135deg, #52A5FF 0%, #7B61FF 100%);
  --grad-card-b: linear-gradient(135deg, #F97316 0%, #EC4899 100%);
  --grad-chip-teal: linear-gradient(135deg, var(--brand-lion) 0%, var(--brand-coyote) 100%);

  --container-max: 1200px;
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px;  --space-4: 16px;  --space-5: 20px;  --space-6: 24px;  --space-8: 32px;  --space-10: 40px;  --space-12: 48px;  --space-16: 64px;  --space-20: 80px;
}

/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body.app-shell {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: var(--lh-normal);
}

.container {
  width: min(100%, var(--container-max));
  margin-inline: auto;
  padding-inline: var(--space-6);
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16,18,24,0.75);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--sh-header);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: var(--space-6) 0; }
.brand { display: inline-flex; align-items: center; gap: var(--space-3); color: var(--text-primary); text-decoration: none; font-weight: 700; padding-left: var(--space-4); }
.brand-mark { display: grid; place-items: center; width: 28px; height: 28px; border-radius: var(--r-sm); background: var(--grad-chip-teal); color: var(--text-on-accent); font-size: 14px; font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: var(--space-4); }
.main-nav a { color: var(--text-secondary); text-decoration: none; font-weight: 600; }
.main-nav a:hover { color: var(--text-primary); }

.nav-toggle { display: none; }

/* Hero */
.hero-section { position: relative; padding: clamp(100px, 14vw, 190px) 0 var(--space-16); overflow: hidden; min-height: clamp(480px, 60vh, 740px); }
.hero-layer { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-layer .hero-img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }
.hero-bg-image { z-index: 0; animation: bg-zoom 22s ease-in-out infinite alternate; }
.hero-bg-image .hero-img.bg { filter: saturate(108%) contrast(103%); opacity: 0.45; }
.hero-subject-image { z-index: 2; display: block; --subject-scale: 1.0; }

@media (max-width: 767px) {
  .hero-subject-image { --subject-scale: 1.3; }
}
.hero-subject-image .hero-img.subject { object-fit: contain; object-position: center bottom; opacity: 0.92; transform: scale(var(--subject-scale)); transform-origin: center bottom; will-change: transform; }
.hero-bg { position: absolute; inset: 0; background: var(--grad-hero-blue), var(--grad-hero-vignette); pointer-events: none; z-index: 1; }
.hero-inner { position: relative; z-index: 3; min-height: clamp(440px, 58vh, 700px); display: flex; flex-direction: column; justify-content: flex-end; gap: var(--space-4); padding-bottom: var(--space-8); }

/* Bottom veil: expanded boundary so more top area shows */
.hero-bottom-veil { z-index: 3; display: block; overflow: visible; height: 230%; bottom: 0; position: absolute; opacity: 0.35; }
.hero-bottom-veil .hero-img { object-fit: cover; object-position: center bottom; transform: translateY(20%); }

@keyframes bg-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-image { animation: none; }
}
.hero-inner { position: relative; }
.hero-title { font-size: clamp(28px, 5vw, 48px); line-height: var(--lh-tight); margin: 0 0 var(--space-4); font-weight: 800; }
.hero-subtitle { color: var(--text-secondary); max-width: 820px; margin: 0 0 var(--space-6); font-size: 18px; }
.cta-group { display: flex; gap: var(--space-4); }

/* Sections */
.section { padding: var(--space-16) 0; background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.02) 100%); }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%); }
.section-header { margin-bottom: var(--space-8); }
.section-header h2 { margin: 0 0 var(--space-2); font-size: clamp(22px, 3.2vw, 36px); line-height: var(--lh-snug); }
.section-sub { color: var(--text-tertiary); margin: 0; }

/* Video card */
.video-card {
  overflow: hidden;
}

.video-embed {
  margin-top: var(--space-4);
  border-radius: var(--r-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--sh-card);
}

.video-embed-inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
}

.video-embed-inner iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  border-radius: var(--r-lg);
}

/* Grid */
.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: inline-grid; }
  .section-nav { display: none; }
}

/* Cards */
.card { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); box-shadow: var(--sh-card); overflow: hidden; transition: box-shadow .2s ease, transform .18s ease, border-color .2s ease; display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--sh-card-hover); transform: translateY(-2px); border-color: var(--border-strong); }
.card .content { padding: var(--space-6); }
.card .title { margin: 0 0 var(--space-3); font-size: 22px; font-weight: 700; }
.card .body { color: var(--text-secondary); margin: 0; }
.card .list { margin: 0; padding-left: 1.1rem; color: var(--text-secondary); }
.card .media { height: 120px; background: var(--bg-surface); position: relative; }
.card .media.gradient-a::after { content: ""; position: absolute; inset: 0; background: var(--grad-card-a); opacity: .25; }
.card .media.gradient-b::after { content: ""; position: absolute; inset: 0; background: var(--grad-card-b); opacity: .25; }

.card.emphasis { display: grid; align-content: center; text-align: left; }
.card.pricing .price { font-size: 32px; font-weight: 800; margin: 0 0 var(--space-4); }
.card.pricing .price small { font-size: 14px; color: var(--text-tertiary); margin-left: 6px; }
.card.pricing.highlight { outline: 2px solid rgba(103,232,249,.25); background: linear-gradient(180deg, rgba(103,232,249,0.08), rgba(103,232,249,0.02)); }

/* Buttons */
.btn { --pad-y: 12px; --pad-x: 18px; display: inline-flex; align-items: center; gap: 10px; padding: var(--pad-y) var(--pad-x); border-radius: var(--r-pill); font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: box-shadow .2s ease, background .2s ease, transform .15s ease, border-color .2s ease; }
.btn.small { --pad-y: 8px; --pad-x: 14px; font-size: 14px; }
.btn--primary { color: var(--text-on-accent); background: var(--grad-primary-btn); box-shadow: 0 6px 16px rgba(181,156,94,0.45); }
.btn--primary:hover { box-shadow: 0 8px 20px rgba(181,156,94,0.55); background: linear-gradient(135deg, #a08a52 0%, #75684a 100%); }
.btn--primary:active { background: var(--brand-coyote); box-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.btn--secondary { color: var(--text-primary); background: var(--bg-surface); border: 1px solid var(--border-subtle); box-shadow: var(--sh-surface); }
.btn--secondary:hover { background: #1E222B; border-color: var(--border-strong); }
.btn--secondary:active { background: #191D25; }
.btn:focus-visible { outline: none; box-shadow: var(--sh-focus); }

/* Icons / Icon buttons */
.icon-button { display: inline-grid; place-items: center; width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-subtle); border-radius: var(--r-sm); color: var(--icon-default); }
.icon-button:hover { background: rgba(255,255,255,0.10); }
.icon-button:active { background: rgba(255,255,255,0.14); }

/* Inputs */
input, select, textarea { width: 100%; background: var(--bg-surface); color: var(--text-primary); border: 1px solid var(--border-subtle); border-radius: var(--r-md); padding: 12px 14px; outline: none; box-shadow: none; }
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:hover, select:hover, textarea:hover { border-color: var(--border-strong); }
input:focus-visible, select:focus-visible, textarea:focus-visible { box-shadow: var(--sh-focus); border-color: var(--focus-ring); }

/* Contact CTA */
.section-final { padding-bottom: calc(var(--space-20) + 40px); }
.cta-panel { display: grid; gap: var(--space-6); grid-template-columns: 1.2fr 1.8fr; background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--r-xl); padding: var(--space-8); box-shadow: var(--sh-card); }
.cta-text h2 { margin: 0 0 var(--space-2); font-size: clamp(22px, 3.2vw, 36px); }
.contact-form .row { display: grid; gap: var(--space-4); grid-template-columns: 1fr 1fr; margin-bottom: var(--space-4); }
.contact-form .actions { margin-top: var(--space-4); }
.form-success { color: var(--accent-cyan); margin-top: var(--space-3); }

@media (max-width: 900px) {
  .cta-panel { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer { background: #0B0C10; border-top: 1px solid var(--border-subtle); margin-top: var(--space-16); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: var(--space-8); align-items: start; padding: var(--space-8) 0; }
.legal { color: var(--text-tertiary); margin: 0; }
.brand-compact { display: inline-flex; align-items: center; gap: var(--space-3); color: var(--text-secondary); }

.footer-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-contact h4 {
  color: var(--text-primary);
  margin: 0 0 var(--space-4);
  font-size: 16px;
  font-weight: 600;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--text-primary);
}

.contact-link svg {
  color: var(--accent-blue);
}

@media (max-width: 740px) {
  .footer-inner { grid-template-columns: 1fr; justify-items: start; }
}

/* Utilities */
.hidden { display: none !important; }

/* Section navigation */
.section-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* Nav dots */
.nav-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--border-subtle);
  transition: background 0.2s, box-shadow 0.2s;
  border: 2px solid var(--accent-blue);
}
.nav-dot:hover, .nav-dot.active {
  background: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(181,156,94,0.15);
}

/* Brand logo */
.brand-logo {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-large {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--accent-blue);
}

/* Card gradient tops - Cohesive color system complementary to light blue (#52A5FF) */
.card-gradient-top {
  height: 120px;
  width: 100%;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  margin-bottom: var(--space-4);
}

/* Section 1: Three Ways We Can Help - Blue family */
.gradient-blue {
  background: linear-gradient(135deg, #52A5FF 0%, #3B82F6 100%);
}

.gradient-blue-light {
  background: linear-gradient(135deg, #67E8F9 0%, #52A5FF 100%);
}

.gradient-blue-dark {
  background: linear-gradient(135deg, #1E40AF 0%, #52A5FF 100%);
}

/* Section 2: 90-Day Growth Path - Teal family */
.gradient-teal {
  background: linear-gradient(135deg, #2DD4BF 0%, #67E8F9 100%);
}

.gradient-teal-light {
  background: linear-gradient(135deg, #5EEAD4 0%, #2DD4BF 100%);
}

.gradient-teal-dark {
  background: linear-gradient(135deg, #0F766E 0%, #2DD4BF 100%);
}

/* Section 3: Why This Works for You - Indigo family */
.gradient-indigo {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

.gradient-indigo-light {
  background: linear-gradient(135deg, #818CF8 0%, #6366F1 100%);
}

.gradient-indigo-dark {
  background: linear-gradient(135deg, #3730A3 0%, #6366F1 100%);
}

/* Section 4: Expected Results - Cyan family */
.gradient-cyan {
  background: linear-gradient(135deg, #06B6D4 0%, #67E8F9 100%);
}

.gradient-cyan-light {
  background: linear-gradient(135deg, #22D3EE 0%, #06B6D4 100%);
}

.gradient-cyan-dark {
  background: linear-gradient(135deg, #0E7490 0%, #06B6D4 100%);
}

/* Card headers with icons */
.card-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding: var(--space-4) var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}

.card-header .title {
  margin: 0;
}

.card .content {
  padding-top: var(--space-4);
  flex: 1;
}

/* Section headers with icons */
.section-header-with-icon {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.section-header-with-icon .title {
  margin: 0;
}

/* Content highlights */
.content-highlight {
  background: rgba(82,165,255,0.1);
  border-left: 4px solid var(--accent-blue);
  padding: var(--space-4);
  margin: var(--space-4) 0;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* Feature lists */
.feature-list {
  margin: var(--space-3) 0;
  padding-left: var(--space-5);
  color: var(--text-secondary);
}

.feature-list li {
  margin-bottom: var(--space-2);
  line-height: var(--lh-relaxed);
}

/* Format sections */
.format-section,
.purpose-section,
.impact-section {
  margin-bottom: var(--space-4);
}

.subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-blue);
  margin: 0 0 var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Steps flow */
.steps-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  margin: var(--space-8) 0;
  flex-wrap: wrap;
}

.step-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  text-align: center;
  min-width: 220px;
  max-width: 280px;
  box-shadow: var(--sh-card);
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  background: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 var(--space-3);
  color: var(--text-primary);
}

.step-body {
  color: var(--text-secondary);
  margin: 0;
  font-size: 14px;
  line-height: var(--lh-relaxed);
}

.step-arrow {
  color: var(--accent-blue);
  display: flex;
  align-items: center;
}

/* Contact options */
.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  transition: all 0.2s ease;
}

.contact-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.contact-card.primary {
  border-color: var(--accent-blue);
  background: linear-gradient(135deg, rgba(82,165,255,0.1), rgba(103,232,249,0.05));
}

.contact-card.secondary {
  border-color: var(--border-subtle);
  background: var(--bg-elevated);
  transform: scale(0.9);
  opacity: 0.8;
}

.contact-card.secondary:hover {
  transform: scale(0.95);
  opacity: 1;
}

/* Schedule CTA */
.schedule-cta {
  margin-top: var(--space-12);
}

.schedule-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--space-10);
  text-align: center;
  box-shadow: var(--sh-card);
  border-color: var(--accent-blue);
  background: linear-gradient(135deg, rgba(82,165,255,0.1), rgba(103,232,249,0.05));
}

.schedule-content .cta-title {
  margin: 0 0 var(--space-4);
  color: var(--text-primary);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: var(--lh-tight);
}

.schedule-content .cta-subtitle {
  color: var(--text-secondary);
  font-size: 18px;
  margin: 0 0 var(--space-6);
  max-width: 600px;
  margin-inline: auto;
}

.btn--large {
  --pad-y: 16px;
  --pad-x: 24px;
  font-size: 18px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-content h4 {
  margin: 0 0 var(--space-2);
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
}

.contact-content .cta-title {
  margin: 0 0 var(--space-3);
  color: var(--text-primary);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 800;
  line-height: var(--lh-snug);
}

.contact-content p {
  margin: 0 0 var(--space-3);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

.contact-content .btn {
  margin-top: var(--space-3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .steps-flow {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .step-arrow {
    transform: rotate(90deg);
  }
  
  .contact-options {
    grid-template-columns: 1fr;
  }
}

/* ==== TYLER BRAND PALETTE OVERRIDES ==== */

:root {
  /* Brand colors from new palette */
  --brand-black: #040404;
  --brand-white: #FFFFFF;
  --brand-lion: #B59C5E;
  --brand-coyote: #87774E;
  --brand-taupe: #969596;

  /* Override base surfaces for darker theme */
  --bg-page: var(--brand-black);
  --bg-section: #0a0a0a;
  --bg-surface: #0d0d0d;
  --bg-elevated: #111111;
  --bg-muted-surface: #161616;

  --border-subtle: rgba(255,255,255,0.06);
  --border-strong: #2a2a2a;
  --focus-ring: var(--brand-lion);

  --text-primary: var(--brand-white);
  --text-secondary: #d5d5d5;
  --text-tertiary: #ababab;
  --text-muted: var(--brand-taupe);
  --text-on-accent: #0b0b0b;

  /* Map accents to brand colors */
  --accent-blue: var(--brand-lion);
  --accent-teal: var(--brand-coyote);
  --accent-indigo: var(--brand-taupe);
  --accent-cyan: var(--brand-lion);

  /* Primary button gradient */
  --grad-primary-btn: linear-gradient(135deg, var(--brand-lion) 0%, var(--brand-coyote) 100%);
}

/* Icon colors */
.icon-large { color: var(--brand-lion); }

/* Content highlight accent */
.content-highlight {
  background: rgba(181,156,94,0.10);
  border-left-color: var(--brand-lion);
}

/* Schedule card accent */
.schedule-card {
  border-color: var(--brand-lion);
  background: linear-gradient(135deg, rgba(181,156,94,0.10), rgba(150,149,150,0.06));
}

/* Remap gradient families to brand palette */
.gradient-blue {
  background: linear-gradient(135deg, var(--brand-lion) 0%, var(--brand-coyote) 100%);
}
.gradient-blue-light {
  background: linear-gradient(135deg, #d3c49f 0%, var(--brand-lion) 100%);
}
.gradient-blue-dark {
  background: linear-gradient(135deg, #52482f 0%, var(--brand-lion) 100%);
}

.gradient-teal {
  background: linear-gradient(135deg, var(--brand-coyote) 0%, var(--brand-taupe) 100%);
}
.gradient-teal-light {
  background: linear-gradient(135deg, #beb18e 0%, #d5d5d5 100%);
}
.gradient-teal-dark {
  background: linear-gradient(135deg, #1b1810 0%, #52482f 100%);
}

.gradient-indigo {
  background: linear-gradient(135deg, var(--brand-taupe) 0%, var(--brand-lion) 100%);
}
.gradient-indigo-light {
  background: linear-gradient(135deg, #c0c0c0 0%, var(--brand-taupe) 100%);
}
.gradient-indigo-dark {
  background: linear-gradient(135deg, var(--brand-black) 0%, #696969 100%);
}

.gradient-cyan {
  background: linear-gradient(135deg, var(--brand-lion) 0%, var(--brand-white) 100%);
}
.gradient-cyan-light {
  background: linear-gradient(135deg, #c4b07e 0%, #eaeaea 100%);
}
.gradient-cyan-dark {
  background: linear-gradient(135deg, var(--brand-coyote) 0%, var(--brand-black) 100%);
}

/* Button contrast adjustment */
.btn--primary { color: #0a0a0a; }

/* ==== TYLER LAYOUT ADDITIONS ==== */

/* Center the two-tier solutions grid and constrain width */
#solution .container.grid.grid-2 { justify-items: center; }
#solution .card.pricing { width: 100%; max-width: 420px; }
#solution .grid.grid-2 { grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; }
@media (max-width: 960px) { #solution .grid.grid-2 { grid-template-columns: 1fr; } }

/* Small brand logo group in header */
.brand-logos { display: inline-flex; align-items: center; gap: 8px; }
.brand-logos .brand-logo { height: 24px; width: auto; border-radius: 6px; }

/* Optional: selective plus accents */
.with-plus { position: relative; list-style: none; padding-left: 22px; }
.with-plus::before { content: "+"; position: absolute; left: 0; top: 0.1em; width: 16px; height: 16px; color: var(--brand-lion); font-weight: 800; }

