:root {
  --bg: #07110d;
  --bg-2: #0d2118;
  --cream: #f4efe3;
  --text: #f7f3e8;
  --muted: #cfc6b5;
  --gold: #cfa046;
  --gold-2: #e5bf68;
  --green: #123626;
  --green-2: #1e5a3e;
  --red: #b9302a;
  --line: rgba(229, 191, 104, .24);
  --black: #030504;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}


[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(4.2rem, 11vw, 10rem);
  letter-spacing: -.06em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

p {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 96px;
  padding: 16px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(3, 5, 4, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.brand em {
  display: block;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 800;
  letter-spacing: .36em;
  text-transform: uppercase;
  font-size: .8rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  opacity: .92;
}

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

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-2);
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  padding: 78px 6vw 96px;
  background:
    linear-gradient(100deg, rgba(7, 12, 10, 0.52) 0%, rgba(10, 20, 16, 0.32) 48%, rgba(12, 25, 20, 0.14) 100%),
    url("https://images.unsplash.com/photo-1535131749006-b7f58c99034b?q=80&w=1800&auto=format&fit=crop") center 58% / cover no-repeat;
}

.hero-copy {
  max-width: 960px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero h2 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 4.6rem);
}

.hero-text {
  max-width: 850px;
  margin-bottom: 18px;
  color: var(--cream);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.45;
}

.hero-subtext {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-buttons,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #171006;
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--text);
}

.platform-card {
  padding: 24px;
  border: 1px solid rgba(244,239,227,.26);
  border-radius: 28px;
  background: rgba(3, 5, 4, .72);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.platform-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.platform-card-header strong {
  color: var(--gold-2);
}

.system-flow {
  display: grid;
  gap: 12px;
}

.flow-node {
  padding: 18px;
  border: 1px solid rgba(229,191,104,.2);
  border-radius: 18px;
  background: rgba(18,54,38,.84);
}

.flow-node span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-weight: 900;
}

.flow-node strong,
.flow-node small {
  display: block;
}

.flow-node small {
  color: var(--muted);
}

.alert-node {
  border-color: rgba(185,48,42,.7);
  box-shadow: 0 0 30px rgba(185,48,42,.18);
}

.flow-line {
  width: 2px;
  height: 18px;
  margin-left: 26px;
  background: var(--gold);
  opacity: .75;
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.status-grid div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}

.status-grid span {
  display: block;
  color: var(--muted);
  font-size: .74rem;
  text-transform: uppercase;
}

.section {
  padding: 92px 6vw;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 60px;
  align-items: start;
}

.intro-section,
.light-section {
  background: var(--cream);
  color: #132019;
}

.intro-section p,
.light-section p {
  color: #39483f;
}

.dark-section {
  background: var(--black);
}

.module-grid,
.benefit-grid,
.steps {
  display: grid;
  gap: 22px;
  margin-top: 40px;
}

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

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

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

.module-card,
.benefit-grid article,
.steps article {
  padding: 28px;
  border-radius: 20px;
}

.module-card {
  border: 1px solid rgba(229,191,104,.24);
  background: #102219;
}

.module-card span,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #171006;
  font-weight: 900;
}

.module-card h3 {
  color: var(--gold-2);
}

.module-card p,
.dark-section p {
  color: var(--muted);
}

.steps article {
  background: white;
  border: 1px solid rgba(19,32,25,.12);
}

.steps span {
  background: var(--green);
  color: white;
}

.benefits-section {
  background:
    linear-gradient(rgba(7,17,13,.88), rgba(7,17,13,.92)),
    url("https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?q=80&w=1600&auto=format&fit=crop") center / cover no-repeat;
}

.benefit-grid article {
  border: 1px solid rgba(244,239,227,.18);
  background: rgba(3,5,4,.62);
}

.benefit-grid p {
  color: var(--muted);
}

.about-section {
  background: var(--bg-2);
}

.about-section p {
  color: var(--muted);
}

.contact-section {
  background: var(--green);
}

.contact-section > p {
  max-width: 780px;
  color: var(--cream);
}

.contact-form {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(229,191,104,.35);
  border-radius: 12px;
  background: rgba(3,5,4,.28);
  color: white;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.7);
}

.contact-form textarea {
  min-height: 150px;
}

.contact-form button {
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  background: var(--gold);
  color: #171006;
  font: inherit;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 6vw;
  background: var(--black);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

@media (max-width: 1120px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero,
  .section-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand em {
    letter-spacing: .22em;
  }

  .hero {
    padding-top: 50px;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 7rem);
  }

  .module-grid,
  .benefit-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Tabbed page behavior: only the selected top-navigation section is visible. */
.page-panel.is-hidden {
  display: none !important;
}

.page-panel {
  min-height: calc(100vh - 96px);
}

.nav-links a.active {
  color: var(--gold-2);
}

.nav-links a.active:not(.nav-cta) {
  border-bottom: 2px solid var(--gold-2);
  padding-bottom: 6px;
}


.visual-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 24px;
  margin-top: 48px;
}

.visual-stack {
  display: grid;
  gap: 24px;
}

.visual-card {
  overflow: hidden;
  border: 1px solid rgba(19,32,25,.12);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(11, 24, 18, .08);
}

.visual-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #0b1610;
}

.visual-card-large img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-card-mini img {
  max-width: 320px;
  margin: 24px auto 0;
}

.visual-copy {
  padding: 22px 22px 24px;
}

.visual-copy h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #132019;
}

.visual-copy p {
  margin-bottom: 0;
  color: #39483f;
}

@media (max-width: 1120px) {
  .visual-showcase {
    grid-template-columns: 1fr;
  }
}


.pace-capture-visual {
  overflow: hidden;
  margin: 34px 0 42px;
  border: 1px solid rgba(19,32,25,.14);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(11, 24, 18, .10);
}

.pace-capture-visual img {
  display: block;
  width: 100%;
  height: auto;
  background: #07110d;
}

.pace-capture-caption {
  padding: 24px 28px 28px;
}

.pace-capture-caption h3 {
  margin-bottom: 10px;
  color: #132019;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
}

.pace-capture-caption p {
  max-width: 900px;
  color: #39483f;
}


/* Clean How It Works pace-of-play section */
.pace-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: start;
  margin-top: 30px;
}

.page-intro {
  max-width: 760px;
  color: #39483f;
  font-size: 1.08rem;
  line-height: 1.7;
}

.pace-image-card,
.pace-focus-card {
  overflow: hidden;
  border: 1px solid rgba(19, 32, 25, 0.14);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(11, 24, 18, 0.08);
}

.pace-image-card {
  margin-top: 24px;
}

.pace-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.pace-card-caption {
  display: grid;
  gap: 6px;
  padding: 18px 20px 20px;
}

.pace-card-caption strong {
  color: #132019;
  font-size: 1rem;
}

.pace-card-caption span {
  color: #536158;
  line-height: 1.55;
}

.pace-status-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pace-badge {
  min-height: 122px;
  padding: 18px;
  border: 1px solid rgba(19, 32, 25, 0.14);
  border-radius: 18px;
  background: #fff;
}

.pace-badge span {
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 12px;
  border-radius: 999px;
}

.pace-badge strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.pace-badge small {
  display: block;
  color: #536158;
  line-height: 1.45;
}

.pace-badge.on span {
  background: #22a64a;
}

.pace-badge.on strong {
  color: #15933d;
}

.pace-badge.slight span {
  background: #e1b012;
}

.pace-badge.slight strong {
  color: #b58a00;
}

.pace-badge.behind span {
  background: #e04c3c;
}

.pace-badge.behind strong {
  color: #d64236;
}

.pace-focus-card {
  padding: 26px;
}

.pace-focus-card h3 {
  margin-bottom: 16px;
  color: #132019;
  font-size: clamp(1.45rem, 2.3vw, 2.35rem);
  line-height: 1.08;
}

.pace-focus-card p {
  color: #39483f;
}

.pace-behind-frame {
  display: grid;
  place-items: center;
  min-height: 390px;
  margin: 22px 0;
  border-radius: 22px;
  background:
    linear-gradient(rgba(7, 17, 13, 0.34), rgba(7, 17, 13, 0.48)),
    radial-gradient(circle at 50% 55%, rgba(224, 76, 60, 0.28), transparent 40%),
    #123626;
}

.pace-behind-frame img {
  display: block;
  width: min(260px, 86%);
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.clean-steps {
  margin-top: 36px;
}

@media (max-width: 1120px) {
  .pace-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pace-status-badges {
    grid-template-columns: 1fr;
  }
}


.how-page-intro {
  max-width: 860px;
}

.how-page-wrapper {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(19, 32, 25, 0.12);
  border-radius: 28px;
  background: #f7f3ea;
  box-shadow: 0 14px 38px rgba(15, 26, 20, 0.08);
}

.how-page-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.standalone-page {
  padding-top: 150px;
}


/* MASTER PATCH: HOW LAYOUT MATCH REAL HTML */
.is-hidden {
  display: none !important;
}

.page-panel {
  min-height: calc(100vh - 96px);
}

.nav-links a.active {
  color: var(--gold-2);
}

.nav-links a.active:not(.nav-cta) {
  border-bottom: 2px solid var(--gold-2);
  padding-bottom: 6px;
}

.how-kicker {
  color: #b88718;
}

.how-main-title {
  max-width: 1200px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #132019;
}

.how-layout-match {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
  gap: 30px;
  align-items: start;
}

.how-lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: #39483f;
  font-size: 1.08rem;
  line-height: 1.72;
}

.how-media-card {
  overflow: hidden;
  border: 1px solid rgba(19, 32, 25, 0.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(11, 24, 18, 0.09);
}

.how-media-card img {
  display: block;
  width: 100%;
  height: auto;
}

.how-course-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.how-right-image-wrap {
  min-height: 520px;
  display: grid;
  place-items: center;
  background: #102219;
}

.how-behind-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.how-card-copy {
  padding: 18px 20px 20px;
}

.how-card-copy h3 {
  margin-bottom: 8px;
  color: #132019;
  font-size: 1.05rem;
}

.how-card-copy p {
  margin: 0;
  color: #526057;
  line-height: 1.55;
}

.how-status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.how-status-card {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(19, 32, 25, 0.14);
  border-radius: 18px;
  background: #fff;
}

.status-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.status-heading span,
.legend-dot {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border-radius: 999px;
}

.how-status-card p {
  margin: 0;
  color: #526057;
  line-height: 1.45;
}

.status-on span,
.legend-dot.on {
  background: #20a44a;
}

.status-slight span,
.legend-dot.slight {
  background: #e0ad13;
}

.status-behind span,
.legend-dot.behind {
  background: #e14c3f;
}

.status-on strong {
  color: #168d3a;
}

.status-slight strong {
  color: #b18700;
}

.status-behind strong {
  color: #d94335;
}

.how-legend {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(19, 32, 25, 0.14);
  border-radius: 18px;
  background: #fff;
}

.how-legend div {
  display: grid;
  grid-template-columns: 18px 150px 1fr;
  gap: 12px;
  align-items: start;
}

.how-legend .legend-dot {
  margin-top: 6px;
}

.how-legend strong {
  color: #132019;
}

.how-legend p {
  margin: 0;
  color: #526057;
}

.how-insights-strip {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.75fr);
  gap: 20px;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(19, 32, 25, 0.14);
  border-radius: 22px;
  background: #fff;
}

.how-insights-strip strong {
  display: block;
  margin-bottom: 6px;
  color: #132019;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.how-insights-strip p {
  margin: 0;
  color: #526057;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .how-layout-match,
  .how-insights-strip {
    grid-template-columns: 1fr;
  }

  .how-status-row {
    grid-template-columns: 1fr;
  }

  .how-behind-card img {
    height: auto;
    max-height: 660px;
    object-fit: contain;
  }

  .how-right-image-wrap {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .how-legend div {
    grid-template-columns: 18px 1fr;
  }

  .how-legend p {
    grid-column: 2;
  }
}


/* MASTER PATCH: RIGHT IMAGE NOT ZOOMED */
.how-right-image-wrap {
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
  background: #102219 !important;
}

.how-behind-card img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 620px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 18px !important;
}



/* MASTER PATCH: HOME VIDEO EMBEDDED RIGHT PANEL */
.home-embedded-video {
  align-self: center;
  width: 100%;
  max-width: 640px;
  overflow: hidden;
  border: 1px solid rgba(227, 190, 115, 0.28);
  border-radius: 28px;
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.home-embedded-video video {
  display: block;
  width: 100%;
  height: min(68vh, 620px);
  object-fit: cover;
  object-position: center;
  background: #000;
}

/* Keep the old class harmless if a browser cache still sees it. */
.home-video-card {
  display: none !important;
}

@media (max-width: 980px) {
  .home-embedded-video {
    max-width: 100%;
  }

  .home-embedded-video video {
    height: auto;
    max-height: 620px;
    object-fit: contain;
  }
}


/* MASTER PATCH: SAFETY TAB BUILT */
.safety-section {
  background:
    radial-gradient(circle at top left, rgba(229, 191, 104, 0.10), transparent 34%),
    linear-gradient(180deg, #f4efe3 0%, #ebe3d3 100%);
  color: #132019;
}

.safety-section h2 {
  max-width: 1120px;
  color: #132019;
}

.safety-lead {
  max-width: 880px;
  margin-bottom: 34px;
  color: #39483f;
  font-size: 1.08rem;
  line-height: 1.72;
}

.safety-feature {
  display: grid;
  gap: 30px;
  align-items: center;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(19, 32, 25, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 54px rgba(11, 24, 18, 0.08);
}

.safety-feature-primary {
  grid-template-columns: 0.82fr 1.18fr;
}

.safety-feature-secondary {
  grid-template-columns: 1fr 0.92fr;
}

.safety-copy span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #b9302a;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.safety-copy h3 {
  max-width: 620px;
  color: #132019;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.5vw, 2.65rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.safety-copy p {
  max-width: 680px;
  color: #45544b;
  line-height: 1.7;
}

.safety-copy ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.safety-copy li {
  position: relative;
  padding-left: 26px;
  color: #26342d;
  font-weight: 700;
}

.safety-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b9302a;
  box-shadow: 0 0 0 4px rgba(185, 48, 42, 0.14);
}

.safety-image-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(19, 32, 25, 0.14);
  background: #fff;
  box-shadow: 0 18px 46px rgba(11, 24, 18, 0.10);
}

.safety-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.safety-image-card p {
  margin: 0;
  padding: 14px 18px 16px;
  color: #526057;
  font-size: 0.94rem;
  line-height: 1.45;
}

.safety-takeaway {
  display: grid;
  grid-template-columns: 0.75fr 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(229, 191, 104, 0.26);
  background: #07110d;
  color: #f7f3e8;
}

.safety-takeaway strong {
  color: #e5bf68;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.safety-takeaway p {
  margin: 0;
  color: rgba(247, 243, 232, 0.80);
}

@media (max-width: 1080px) {
  .safety-feature-primary,
  .safety-feature-secondary,
  .safety-takeaway {
    grid-template-columns: 1fr;
  }
}


/* MASTER PATCH: SAFETY TAB BALANCED */
.safety-section {
  padding-left: 4.5vw;
  padding-right: 4.5vw;
}

.safety-section > * {
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}

.safety-section h2 {
  max-width: 1080px;
  font-size: clamp(3rem, 4.6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.safety-lead {
  max-width: 920px;
  margin-bottom: 38px;
  font-size: 1.12rem;
  line-height: 1.8;
}

.safety-feature {
  gap: 42px;
  padding: 32px;
}

.safety-feature-primary {
  grid-template-columns: minmax(330px, 0.78fr) minmax(620px, 1.22fr);
}

.safety-feature-secondary {
  grid-template-columns: minmax(560px, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
}

.safety-copy-primary h3 {
  font-size: clamp(2.15rem, 3.2vw, 3.35rem);
}

.safety-copy-primary p,
.safety-copy-primary li {
  font-size: 1.01rem;
}

.safety-image-card-primary {
  padding: 12px;
}

.safety-image-card-primary img {
  width: 100%;
  height: auto;
}

.safety-image-card-primary p {
  padding-top: 12px;
  font-size: 1rem;
}

.safety-copy-secondary {
  align-self: center;
}

.safety-copy-secondary span {
  font-size: 0.86rem;
}

.safety-copy-secondary h3 {
  max-width: 700px;
  font-size: clamp(2.7rem, 3.8vw, 4rem);
  line-height: 0.98;
}

.safety-copy-secondary p {
  max-width: 720px;
  font-size: 1.12rem;
  line-height: 1.8;
}

.safety-copy-secondary li {
  font-size: 1.06rem;
  line-height: 1.55;
}

.safety-image-card-secondary {
  align-self: stretch;
}

.safety-image-card-secondary img {
  width: 100%;
  height: auto;
}

.safety-image-card-secondary p {
  font-size: 1rem;
}

.safety-takeaway {
  max-width: 1380px;
  grid-template-columns: 0.75fr 1fr auto;
}

@media (max-width: 1240px) {
  .safety-feature-primary,
  .safety-feature-secondary {
    grid-template-columns: 1fr;
  }

  .safety-image-card-primary,
  .safety-image-card-secondary {
    order: -1;
  }
}


/* MASTER PATCH: WIRELESS SOLAR BEACON CALLOUT */
.safety-wireless-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 28px;
  align-items: center;
  margin-top: 30px;
  padding: 30px;
  border: 1px solid rgba(229, 191, 104, 0.34);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(229, 191, 104, 0.14), transparent 34%),
    #07110d;
  color: #f7f3e8;
  box-shadow: 0 22px 56px rgba(11, 24, 18, 0.16);
}

.safety-wireless-callout span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #e5bf68;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.safety-wireless-callout h3 {
  max-width: 820px;
  margin: 0 0 14px;
  color: #f7f3e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.safety-wireless-callout p {
  max-width: 820px;
  margin: 0;
  color: rgba(247, 243, 232, 0.78);
  font-size: 1.04rem;
  line-height: 1.7;
}

.safety-wireless-callout ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-wireless-callout li {
  position: relative;
  padding-left: 28px;
  color: #f7f3e8;
  font-weight: 800;
  line-height: 1.45;
}

.safety-wireless-callout li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e5bf68;
  box-shadow: 0 0 0 4px rgba(229, 191, 104, 0.18);
}

@media (max-width: 1080px) {
  .safety-wireless-callout {
    grid-template-columns: 1fr;
  }
}


/* PACE OF PLAY TAB */
.pace-section {
  padding-top: 4.5rem;
}

.pace-kicker {
  color: #b88718;
}

.pace-title {
  max-width: 1100px;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #132019;
}

.pace-lead {
  max-width: 760px;
  margin-bottom: 2rem;
  color: #39483f;
  font-size: 1.08rem;
  line-height: 1.72;
}

.pace-hero-card,
.pace-support-card,
.pace-status-card,
.pace-insights-strip,
.pace-takeaway {
  border: 1px solid rgba(19, 32, 25, 0.14);
  background: #fff;
  box-shadow: 0 16px 42px rgba(11, 24, 18, 0.09);
}

.pace-hero-card {
  overflow: hidden;
  border-radius: 28px;
}

.pace-hero-card img {
  display: block;
  width: 100%;
  height: auto;
}

.pace-hero-caption {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 24px 26px;
}

.pace-hero-caption strong,
.pace-support-copy h3,
.pace-insights-strip strong,
.pace-takeaway strong {
  display: block;
  color: #132019;
}

.pace-hero-caption strong,
.pace-support-copy h3,
.pace-takeaway strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.pace-hero-caption p,
.pace-support-copy p,
.pace-insights-strip p,
.pace-takeaway p {
  margin: 0;
  color: #526057;
  line-height: 1.55;
}

.pace-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.pace-support-card {
  overflow: hidden;
  border-radius: 24px;
}

.pace-support-card > span {
  display: inline-block;
  margin: 20px 20px 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(184, 135, 24, 0.12);
  color: #8f6710;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pace-support-card img {
  display: block;
  width: calc(100% - 40px);
  margin: 16px 20px 0;
  border-radius: 18px;
  border: 1px solid rgba(19, 32, 25, 0.12);
}

.pace-support-copy {
  padding: 18px 20px 22px;
}

.pace-status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.pace-status-card {
  min-height: 118px;
  padding: 18px;
  border-radius: 18px;
}

.pace-insights-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  padding: 24px;
  border-radius: 22px;
}

.pace-insights-strip strong {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.pace-takeaway {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  padding: 26px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #082117 0%, #061810 100%);
}

.pace-takeaway strong,
.pace-takeaway p {
  color: #f7f3e8;
}

.pace-takeaway .btn {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .pace-support-grid,
  .pace-hero-caption,
  .pace-insights-strip,
  .pace-takeaway {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pace-status-row {
    grid-template-columns: 1fr;
  }

  .pace-title {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }
}


/* MASTER PATCH: PACE OF PLAY CONTENT FIX — no page-within-page image */
.pace-page-section {
  background:
    radial-gradient(circle at top left, rgba(229, 191, 104, 0.12), transparent 34%),
    linear-gradient(180deg, #f4efe3 0%, #ebe3d3 100%);
  color: #132019;
}

.pace-page-kicker {
  color: #b88718;
}

.pace-page-title {
  max-width: 1120px;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 5.4vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #132019;
}

.pace-page-lead {
  max-width: 760px;
  margin-bottom: 2rem;
  color: #39483f;
  font-size: 1.08rem;
  line-height: 1.72;
}

.pace-page-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.pace-page-card,
.pace-page-status,
.pace-page-insights,
.pace-page-takeaway {
  border: 1px solid rgba(19, 32, 25, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(11, 24, 18, 0.09);
}

.pace-page-card {
  overflow: hidden;
  border-radius: 26px;
}

.pace-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(19, 32, 25, 0.12);
}

.pace-card-header > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pace-card-header h3 {
  margin: 0;
  color: #132019;
  font-size: 1.35rem;
}

.pace-card-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #0b3b24;
  color: #fff;
  font-weight: 900;
}

.pace-live-badge,
.pace-select-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pace-live-badge {
  padding: 8px 16px;
  color: #fff;
  background: #16a34a;
}

.pace-select-pill {
  padding: 8px 14px;
  color: #132019;
  background: #f7f3e8;
  border: 1px solid rgba(19, 32, 25, 0.14);
}

.pace-live-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  object-position: center;
}

.pace-metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(19, 32, 25, 0.10);
  border-bottom: 1px solid rgba(19, 32, 25, 0.10);
  background: #fff;
}

.pace-metric-row div {
  padding: 18px;
  text-align: center;
}

.pace-metric-row div + div {
  border-left: 1px solid rgba(19, 32, 25, 0.10);
}

.pace-metric-row strong {
  display: block;
  color: #132019;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.pace-metric-row span {
  display: block;
  margin-top: 6px;
  color: #526057;
  font-size: 0.88rem;
  font-weight: 700;
}

.pace-card-note {
  margin: 0;
  padding: 14px 18px 18px;
  color: #526057;
  line-height: 1.55;
}

.pace-playback-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(170px, 0.52fr) minmax(170px, 0.5fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
}

.pace-playback-layout h4 {
  margin: 0 0 12px;
  color: #132019;
  font-size: 1rem;
}

.pace-playback-map img,
.pace-hole-detail img {
  display: block;
  width: 100%;
  border: 1px solid rgba(19, 32, 25, 0.12);
  border-radius: 18px;
  background: #0b1610;
}

.pace-playback-map img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
}

.pace-hole-detail img {
  height: 100%;
  max-height: 360px;
  object-fit: contain;
  background: #07110d;
}

.pace-review-panel {
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(19, 32, 25, 0.12);
  border-radius: 18px;
  background: #f7f3e8;
}

.pace-review-panel strong {
  display: block;
  margin-bottom: 4px;
  color: #132019;
  font-size: 1.35rem;
}

.pace-review-panel span,
.pace-review-panel p {
  color: #526057;
}

.pace-review-panel hr {
  border: 0;
  border-top: 1px solid rgba(19, 32, 25, 0.14);
  margin: 14px 0;
}

.pace-review-panel p {
  display: grid;
  gap: 4px;
  margin: 0 0 12px;
}

.pace-review-panel b {
  color: #132019;
}

.pace-page-status-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.pace-page-status {
  min-height: 118px;
  padding: 20px;
  border-radius: 20px;
}

.pace-page-status p {
  margin: 0;
  color: #526057;
  line-height: 1.5;
}

.pace-action-card {
  background: #07110d;
}

.pace-action-card strong {
  display: block;
  margin-bottom: 8px;
  color: #e5bf68;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.pace-action-card p {
  color: rgba(247, 243, 232, 0.82);
}

.pace-page-insights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
  padding: 24px;
  border-radius: 22px;
}

.pace-page-insights article + article {
  border-left: 1px solid rgba(19, 32, 25, 0.10);
  padding-left: 22px;
}

.pace-page-insights strong {
  display: block;
  margin-bottom: 8px;
  color: #132019;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.pace-page-insights p {
  margin: 0;
  color: #526057;
  line-height: 1.5;
}

.pace-page-takeaway {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 26px;
  padding: 26px 28px;
  border-radius: 24px;
  background: #07110d;
}

.pace-page-takeaway strong {
  color: #e5bf68;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.pace-page-takeaway p {
  margin: 0;
  color: rgba(247, 243, 232, 0.82);
  line-height: 1.55;
}

@media (max-width: 1220px) {
  .pace-page-dashboard,
  .pace-playback-layout,
  .pace-page-status-row,
  .pace-page-insights,
  .pace-page-takeaway {
    grid-template-columns: 1fr;
  }

  .pace-page-insights article + article {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(19, 32, 25, 0.10);
    padding-top: 18px;
  }

  .pace-hole-detail img {
    max-height: 520px;
  }
}

@media (max-width: 760px) {
  .pace-page-title {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .pace-metric-row {
    grid-template-columns: 1fr;
  }

  .pace-metric-row div + div {
    border-left: 0;
    border-top: 1px solid rgba(19, 32, 25, 0.10);
  }
}


/* MASTER PATCH: PACE OF PLAY APPROVED VIEW */
.pace-approved-section {
  padding: 44px 4.5vw 70px;
  background:
    radial-gradient(circle at top left, rgba(229, 191, 104, 0.10), transparent 34%),
    linear-gradient(180deg, #f4efe3 0%, #ebe3d3 100%);
}

.pace-approved-card {
  max-width: 1660px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(19, 32, 25, 0.14);
  border-radius: 0 0 30px 30px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(11, 24, 18, 0.12);
}

.pace-approved-image {
  display: block;
  width: 100%;
  height: auto;
  background: #f4efe3;
}

.pace-approved-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  padding: 30px 34px 34px;
  background: #ffffff;
}

.pace-approved-summary h3 {
  margin: 0 0 12px;
  color: #07110d;
  font-size: clamp(1.35rem, 1.7vw, 1.8rem);
  line-height: 1.1;
}

.pace-approved-summary p {
  margin: 0;
  color: #39483f;
  font-size: clamp(1.02rem, 1.25vw, 1.28rem);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .pace-approved-summary {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* BRAND NEW PACE OF PLAY PAGE REBUILD */
.pace-rebuilt-section {
  padding: 38px 3.2vw 72px;
  background: radial-gradient(circle at top left, rgba(229, 191, 104, 0.08), transparent 32%), linear-gradient(180deg, #f4efe3 0%, #eee6d7 100%);
}

.pace-rebuilt-shell {
  max-width: 1740px;
  margin: 0 auto;
  padding: 26px 26px 34px;
  border: 1px solid rgba(19, 32, 25, 0.12);
  border-radius: 30px;
  background: #fbf9f2;
  box-shadow: 0 18px 44px rgba(11,24,18,.08);
}

.pace-rebuilt-intro h2 {
  max-width: 980px;
  margin-bottom: 18px;
  color: #132019;
  font-size: clamp(3.2rem, 4.7vw, 5.35rem);
}

.pace-rebuilt-lead {
  max-width: 760px;
  color: #39483f;
  font-size: clamp(1.28rem, 1.5vw, 1.55rem);
  line-height: 1.55;
}

.pace-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.pace-panel-card {
  overflow: hidden;
  border: 1px solid rgba(19,32,25,.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(11,24,18,.05);
}

.pace-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(19,32,25,.1);
}

.pace-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #132019;
  font-size: clamp(1.55rem, 1.7vw, 1.9rem);
  font-weight: 900;
}

.status-dot, .dot {
  flex: 0 0 auto;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
}
.status-dot.live, .dot.on { background: #20a54a; }
.dot.slight { background: #e1b012; }
.dot.behind { background: #e04c3c; }

.live-pill, .hole-pill {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.live-pill { background: #19b45b; color: #fff; }
.hole-pill { background: #f3efe6; color: #132019; border: 1px solid rgba(19,32,25,.12); }

.pace-media-wrap img,
.playback-map-image-wrap img,
.playback-hole-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.live-media {
  padding: 14px 14px 0;
}

.playback-content-grid {
  display: grid;
  grid-template-columns: 1.06fr minmax(220px,.92fr) 185px;
  gap: 22px;
  padding: 22px 22px 14px;
  align-items: start;
}

.playback-copy-col h3 {
  margin-bottom: 8px;
  color: #132019;
  font-size: clamp(2rem, 2.3vw, 2.45rem);
}

.playback-hole-meta {
  margin-bottom: 18px;
  color: #5e6a61;
  font-size: 1.15rem;
  font-weight: 700;
}

.playback-status-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.playback-status-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.playback-status-list strong {
  display: block;
  margin-bottom: 3px;
  color: #132019;
  font-size: 1.28rem;
}

.playback-status-list small {
  color: #44544a;
  font-size: 1.06rem;
  line-height: 1.4;
}

.playback-hole-image-wrap {
  align-self: center;
  justify-self: center;
  width: min(100%, 260px);
  padding: 10px;
  border-radius: 18px;
  background: #07110d;
}

.playback-stat-box {
  display: grid;
  gap: 12px;
  padding: 18px 16px;
  border: 1px solid rgba(19,32,25,.1);
  border-radius: 18px;
  background: #fbf8ef;
}

.playback-stat-box div {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(19,32,25,.08);
}
.playback-stat-box div:last-child { border-bottom: 0; padding-bottom: 0; }
.playback-stat-box span {
  color: #58675e;
  font-size: 1rem;
  font-weight: 700;
}
.playback-stat-box strong {
  color: #132019;
  font-size: 1.18rem;
}
.playback-stat-box .behind-text { color: #d64236; }

.pace-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid rgba(19,32,25,.08);
}
.pace-metric {
  padding: 16px 14px 18px;
  text-align: center;
  border-right: 1px solid rgba(19,32,25,.08);
}
.pace-metric:last-child { border-right: 0; }
.pace-metric strong {
  display: block;
  color: #132019;
  font-size: clamp(2rem, 2.2vw, 2.5rem);
  line-height: 1.05;
}
.pace-metric span {
  display: block;
  margin-top: 4px;
  color: #132019;
  font-size: 1.12rem;
  font-weight: 800;
}
.pace-metric small {
  display: block;
  margin-top: 4px;
  color: #556359;
  font-size: 1rem;
}

.pace-footnote {
  margin: 0;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(19,32,25,.08);
  color: #4c5a50;
  font-size: 1.07rem;
}

.pace-legend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.28fr;
  gap: 12px;
  margin-top: 12px;
}
.legend-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(19,32,25,.12);
  border-radius: 18px;
  background: #fff;
}
.legend-card strong {
  display: block;
  margin-bottom: 6px;
  color: #132019;
  font-size: 1.18rem;
}
.legend-card p {
  margin: 0;
  color: #46564b;
  font-size: 1rem;
  line-height: 1.45;
}
.action-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #092516;
  color: #fff;
  font-size: 1.6rem;
}

.playback-map-card {
  margin-top: 12px;
}
.playback-map-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 14px;
}
.playback-map-copy {
  padding: 12px 10px 12px 10px;
}
.map-title { margin-bottom: 12px; }
.playback-map-copy p {
  margin: 10px 0 16px;
  color: #455449;
  font-size: 1.08rem;
  line-height: 1.5;
}
.mini-legend {
  margin: 0;
  padding: 16px 16px;
  list-style: none;
  border: 1px solid rgba(19,32,25,.12);
  border-radius: 16px;
  background: #fbf8ef;
}
.mini-legend li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #132019;
  font-size: 1rem;
  font-weight: 700;
}
.mini-legend li + li { margin-top: 12px; }
.line {
  display: inline-block;
  width: 24px;
  height: 4px;
  border-radius: 999px;
}
.line.green { background: #19b45b; }
.line.yellow { background: #e1b012; }
.line.red { background: #e04c3c; }
.line.orange.circle {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ef7f2e;
}
.playback-map-image-wrap {
  display: flex;
  align-items: center;
}
.playback-map-image-wrap img {
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(11,24,18,.08);
}

.pace-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
  margin-top: 12px;
  border: 1px solid rgba(19,32,25,.12);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.pace-feature-row article {
  padding: 18px 20px;
  border-right: 1px solid rgba(19,32,25,.09);
}
.pace-feature-row article:last-child { border-right: 0; }
.pace-feature-row h3 {
  margin: 0 0 10px;
  color: #132019;
  font-size: 1.3rem;
}
.pace-feature-row p {
  margin: 0;
  color: #4b5a50;
  font-size: 1.03rem;
  line-height: 1.48;
}

.pace-rebuilt-summary {
  margin-top: 18px;
  padding: 34px 30px 36px;
  gap: 46px;
}
.pace-rebuilt-summary h3 {
  font-size: clamp(2.05rem, 2.2vw, 2.5rem);
  margin-bottom: 14px;
}
.pace-rebuilt-summary p {
  font-size: clamp(1.35rem, 1.45vw, 1.55rem);
  line-height: 1.58;
}

@media (max-width: 1200px) {
  .pace-top-grid,
  .playback-map-layout,
  .pace-legend-grid,
  .pace-feature-row,
  .pace-approved-summary {
    grid-template-columns: 1fr;
  }
  .playback-content-grid {
    grid-template-columns: 1fr;
  }
  .playback-hole-image-wrap {
    width: min(100%, 290px);
  }
}


/* MASTER PATCH: BENEFITS TAB — REVENUE IMPACT CONTENT */
.benefits-revenue-section {
  background:
    linear-gradient(rgba(7, 17, 13, 0.86), rgba(7, 17, 13, 0.92)),
    url("https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?q=80&w=1800&auto=format&fit=crop") center / cover no-repeat;
  color: #f7f3e8;
}

.benefits-revenue-hero {
  max-width: 1160px;
}

.benefits-revenue-hero h2 {
  max-width: 1120px;
  color: #f7f3e8;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.98;
}

.benefits-revenue-hero p {
  max-width: 880px;
  color: rgba(247, 243, 232, 0.82);
  font-size: 1.18rem;
  line-height: 1.7;
}

.revenue-driver-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.revenue-driver-card {
  min-height: 305px;
  padding: 28px;
  border: 1px solid rgba(229, 191, 104, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(229, 191, 104, 0.10), transparent 34%),
    rgba(3, 5, 4, 0.68);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.revenue-driver-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #e5bf68;
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
}

.revenue-driver-card h3 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
  line-height: 1.08;
}

.revenue-driver-card p {
  color: rgba(247, 243, 232, 0.78);
  line-height: 1.64;
  font-size: 1.02rem;
}

.lorawan-advantage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 30px;
  align-items: center;
  margin-top: 30px;
  padding: 34px;
  border: 1px solid rgba(229, 191, 104, 0.36);
  border-radius: 28px;
  background: #07110d;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.lorawan-advantage h3 {
  max-width: 820px;
  color: #e5bf68;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 3.6vw, 4rem);
  line-height: 1;
}

.lorawan-advantage p {
  max-width: 820px;
  color: rgba(247, 243, 232, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.lorawan-advantage ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lorawan-advantage li {
  position: relative;
  padding-left: 32px;
  color: #f7f3e8;
  font-weight: 900;
  font-size: 1.04rem;
  line-height: 1.45;
}

.lorawan-advantage li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #e5bf68;
  box-shadow: 0 0 0 5px rgba(229, 191, 104, 0.16);
}

.revenue-bottom-line {
  display: grid;
  grid-template-columns: 0.55fr 1.4fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  padding: 26px 30px;
  border: 1px solid rgba(244, 239, 227, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.revenue-bottom-line strong {
  color: #e5bf68;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.revenue-bottom-line p {
  margin: 0;
  color: rgba(247, 243, 232, 0.82);
  line-height: 1.6;
}

.revenue-bottom-line .btn {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .revenue-driver-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lorawan-advantage,
  .revenue-bottom-line {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .revenue-driver-grid {
    grid-template-columns: 1fr;
  }
}


/* MASTER PATCH: BENEFITS ICONS RESTORED — all six cards */
.revenue-driver-card .benefit-icon-wrap {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  width: 84px;
  height: 84px;
  margin: 0 0 20px 0;
}

.revenue-driver-card .benefit-icon {
  display: block !important;
  width: 84px !important;
  height: 84px !important;
  color: #e5bf68 !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 3.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: drop-shadow(0 0 10px rgba(229, 191, 104, 0.22));
}

.revenue-driver-card > span {
  display: none !important;
}


/* MASTER PATCH: BRAND NEW BENEFITS PAGE */
.benefits-clean-section {
  background:
    linear-gradient(rgba(7, 17, 13, 0.84), rgba(7, 17, 13, 0.92)),
    url("https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?q=80&w=1800&auto=format&fit=crop") center / cover no-repeat;
  color: #f7f3e8;
}

.benefits-clean-hero {
  max-width: 1180px;
}

.benefits-clean-hero h2 {
  max-width: 1120px;
  color: #f7f3e8;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.98;
}

.benefits-clean-hero p {
  max-width: 900px;
  color: rgba(247, 243, 232, 0.84);
  font-size: 1.18rem;
  line-height: 1.7;
}

.benefits-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.benefits-clean-card {
  min-height: 350px;
  padding: 34px;
  border: 1px solid rgba(229, 191, 104, 0.25);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(229, 191, 104, 0.09), transparent 34%),
    rgba(3, 5, 4, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.benefits-clean-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  color: #e5bf68;
}

.benefits-clean-icon svg {
  width: 86px;
  height: 86px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(229, 191, 104, 0.22));
}

.benefits-clean-icon.money-icon {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.1rem;
  font-weight: 900;
  line-height: 0.9;
  color: #e5bf68;
  text-shadow: 0 0 10px rgba(229, 191, 104, 0.22);
}

.benefits-clean-card h3 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.1vw, 2.35rem);
  line-height: 1.08;
}

.benefits-clean-card p {
  color: rgba(247, 243, 232, 0.82);
  font-size: 1.04rem;
  line-height: 1.64;
}

.benefits-clean-lorawan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 32px;
  align-items: center;
  margin-top: 34px;
  padding: 36px;
  border: 1px solid rgba(229, 191, 104, 0.38);
  border-radius: 30px;
  background: #07110d;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.30);
}

.benefits-clean-lorawan h3 {
  max-width: 850px;
  color: #e5bf68;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  line-height: 1;
}

.benefits-clean-lorawan p {
  max-width: 840px;
  color: rgba(247, 243, 232, 0.84);
  font-size: 1.08rem;
  line-height: 1.7;
}

.benefits-clean-lorawan ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-clean-lorawan li {
  position: relative;
  padding-left: 34px;
  color: #f7f3e8;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.45;
}

.benefits-clean-lorawan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #e5bf68;
  box-shadow: 0 0 0 5px rgba(229, 191, 104, 0.16);
}

.benefits-clean-bottom {
  display: grid;
  grid-template-columns: 0.55fr 1.4fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 28px 32px;
  border: 1px solid rgba(244, 239, 227, 0.20);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.benefits-clean-bottom strong {
  color: #e5bf68;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.benefits-clean-bottom p {
  margin: 0;
  color: rgba(247, 243, 232, 0.84);
  line-height: 1.6;
}

.benefits-clean-bottom .btn {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .benefits-clean-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-clean-lorawan,
  .benefits-clean-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .benefits-clean-grid {
    grid-template-columns: 1fr;
  }
}


/* MASTER PATCH: BENEFITS SIX BOXES FIX */
.benefits-six-section {
  background:
    linear-gradient(rgba(7, 17, 13, 0.84), rgba(7, 17, 13, 0.92)),
    url("https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?q=80&w=1800&auto=format&fit=crop") center / cover no-repeat;
  color: #f7f3e8;
}

.benefits-six-hero {
  max-width: 1180px;
}

.benefits-six-hero h2 {
  max-width: 1120px;
  color: #f7f3e8;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.98;
}

.benefits-six-hero p {
  max-width: 900px;
  color: rgba(247, 243, 232, 0.84);
  font-size: 1.18rem;
  line-height: 1.7;
}

.benefits-six-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin-top: 44px;
}

.benefits-six-card {
  display: block !important;
  min-height: 350px;
  padding: 34px;
  border: 1px solid rgba(229, 191, 104, 0.25);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(229, 191, 104, 0.09), transparent 34%),
    rgba(3, 5, 4, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.benefits-six-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  color: #e5bf68;
}

.benefits-six-icon svg {
  width: 86px;
  height: 86px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(229, 191, 104, 0.22));
}

.benefits-six-icon.money-icon {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.1rem;
  font-weight: 900;
  line-height: 0.9;
  color: #e5bf68;
  text-shadow: 0 0 10px rgba(229, 191, 104, 0.22);
}

.benefits-six-card h3 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.1vw, 2.35rem);
  line-height: 1.08;
}

.benefits-six-card p {
  color: rgba(247, 243, 232, 0.82);
  font-size: 1.04rem;
  line-height: 1.64;
}

.benefits-six-lorawan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 32px;
  align-items: center;
  margin-top: 34px;
  padding: 36px;
  border: 1px solid rgba(229, 191, 104, 0.38);
  border-radius: 30px;
  background: #07110d;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.30);
}

.benefits-six-lorawan h3 {
  max-width: 850px;
  color: #e5bf68;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  line-height: 1;
}

.benefits-six-lorawan p {
  max-width: 840px;
  color: rgba(247, 243, 232, 0.84);
  font-size: 1.08rem;
  line-height: 1.7;
}

.benefits-six-lorawan ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-six-lorawan li {
  position: relative;
  padding-left: 34px;
  color: #f7f3e8;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.45;
}

.benefits-six-lorawan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #e5bf68;
  box-shadow: 0 0 0 5px rgba(229, 191, 104, 0.16);
}

.benefits-six-bottom {
  display: grid;
  grid-template-columns: 0.55fr 1.4fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 28px 32px;
  border: 1px solid rgba(244, 239, 227, 0.20);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.benefits-six-bottom strong {
  color: #e5bf68;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.benefits-six-bottom p {
  margin: 0;
  color: rgba(247, 243, 232, 0.84);
  line-height: 1.6;
}

.benefits-six-bottom .btn {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .benefits-six-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .benefits-six-lorawan,
  .benefits-six-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .benefits-six-grid {
    grid-template-columns: 1fr !important;
  }
}


/* MASTER PATCH: PACE OF PLAY REAL-TIME VIDEO */
.pace-media-wrap .pace-live-video {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  object-fit: cover;
  object-position: center;
  background: #07110d;
}

.pace-media-wrap.live-media {
  overflow: hidden;
}


/* HOME PAGE PATCH: remove video card and brighten golfer background */
.home-embedded-video,
.home-video-card {
  display: none !important;
}

@media (max-width: 980px) {
  .hero {
    padding: 64px 5vw 84px;
    background-position: 62% center;
  }

  .hero-copy {
    max-width: 100%;
  }
}


/* HOME PAGE PATCH: byline moved below SafeTee and balanced */
.hero .hero-byline {
  margin: -8px 0 18px;
  color: var(--gold-2);
  letter-spacing: 0.22em;
}

.hero h1 {
  margin-bottom: 0.05em;
}


/* MASTER PATCH: PLATFORM TAB REBUILD ONLY */
.platform-section {
  padding: 64px 4.5vw 78px;
  background:
    radial-gradient(circle at top left, rgba(229, 191, 104, 0.13), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(30, 90, 62, 0.26), transparent 30%),
    linear-gradient(180deg, #07110d 0%, #0d2118 100%);
  color: #f7f3e8;
}

.platform-shell {
  max-width: 1500px;
  margin: 0 auto;
}

.platform-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  gap: 34px;
  align-items: stretch;
}

.platform-hero-copy h2 {
  max-width: 980px;
  margin-bottom: 24px;
  color: #f7f3e8;
  font-size: clamp(3rem, 5.1vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.platform-lead,
.platform-sublead {
  max-width: 850px;
  color: rgba(247, 243, 232, 0.82);
  font-size: 1.15rem;
  line-height: 1.72;
}

.platform-lead {
  margin-bottom: 18px;
}

.platform-sublead {
  color: rgba(229, 191, 104, 0.86);
  font-weight: 700;
}

.platform-flow-card,
.platform-outcome-strip,
.platform-module-card,
.platform-bottom-callout {
  border: 1px solid rgba(229, 191, 104, 0.24);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.platform-flow-card {
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(229, 191, 104, 0.12), transparent 40%),
    rgba(3, 5, 4, 0.62);
}

.platform-flow-header {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(229, 191, 104, 0.18);
}

.platform-flow-header span,
.platform-module-card span {
  color: #e5bf68;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.platform-flow-header strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.1;
}

.platform-flow-stack {
  display: grid;
  gap: 10px;
}

.platform-flow-node {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(229, 191, 104, 0.18);
  border-radius: 20px;
  background: rgba(18, 54, 38, 0.72);
}

.platform-flow-node > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #cfa046;
  color: #171006;
  font-weight: 900;
}

.platform-flow-node strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 1.03rem;
}

.platform-flow-node p {
  margin: 0;
  color: rgba(247, 243, 232, 0.75);
  line-height: 1.48;
}

.platform-action-node {
  border-color: rgba(185, 48, 42, 0.72);
  box-shadow: 0 0 34px rgba(185, 48, 42, 0.16);
}

.platform-action-node > span {
  color: #ffffff;
  background: #b9302a;
}

.platform-flow-arrow {
  color: #e5bf68;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.platform-outcome-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.platform-outcome-strip article {
  padding: 24px 22px;
}

.platform-outcome-strip article + article {
  border-left: 1px solid rgba(229, 191, 104, 0.18);
}

.platform-outcome-strip strong {
  display: block;
  margin-bottom: 8px;
  color: #e5bf68;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.08;
}

.platform-outcome-strip p {
  margin: 0;
  color: rgba(247, 243, 232, 0.76);
  line-height: 1.5;
}

.platform-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.platform-module-card {
  min-height: 280px;
  padding: 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(229, 191, 104, 0.09), transparent 38%),
    rgba(3, 5, 4, 0.64);
}

.platform-featured-card {
  background:
    radial-gradient(circle at top right, rgba(229, 191, 104, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(18, 54, 38, 0.98), rgba(3, 5, 4, 0.74));
}

.platform-module-card h3 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.15vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.platform-module-card p {
  margin: 0;
  color: rgba(247, 243, 232, 0.78);
  font-size: 1.03rem;
  line-height: 1.62;
}

.platform-bottom-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  gap: 34px;
  align-items: center;
  margin-top: 30px;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(229, 191, 104, 0.12), transparent 34%),
    #030504;
}

.platform-bottom-callout h3 {
  max-width: 850px;
  margin-bottom: 16px;
  color: #f7f3e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3.4vw, 3.85rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.platform-bottom-callout p:not(.eyebrow) {
  max-width: 850px;
  margin: 0;
  color: rgba(247, 243, 232, 0.80);
  font-size: 1.08rem;
  line-height: 1.7;
}

.platform-bottom-callout ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-bottom-callout li {
  position: relative;
  padding-left: 32px;
  color: #f7f3e8;
  font-weight: 800;
  line-height: 1.45;
}

.platform-bottom-callout li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #e5bf68;
  box-shadow: 0 0 0 5px rgba(229, 191, 104, 0.16);
}

@media (max-width: 1180px) {
  .platform-hero-grid,
  .platform-bottom-callout {
    grid-template-columns: 1fr;
  }

  .platform-module-grid,
  .platform-outcome-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-outcome-strip article + article {
    border-left: 0;
  }

  .platform-outcome-strip article:nth-child(even) {
    border-left: 1px solid rgba(229, 191, 104, 0.18);
  }

  .platform-outcome-strip article:nth-child(n+3) {
    border-top: 1px solid rgba(229, 191, 104, 0.18);
  }
}

@media (max-width: 740px) {
  .platform-section {
    padding: 50px 5vw 66px;
  }

  .platform-module-grid,
  .platform-outcome-strip {
    grid-template-columns: 1fr;
  }

  .platform-outcome-strip article:nth-child(even) {
    border-left: 0;
  }

  .platform-outcome-strip article + article {
    border-top: 1px solid rgba(229, 191, 104, 0.18);
  }

  .platform-flow-card,
  .platform-bottom-callout,
  .platform-module-card {
    padding: 24px;
  }

  .platform-flow-node {
    grid-template-columns: 1fr;
  }
}


/* MASTER PATCH: ABOUT TAB — founder golf context only */
.about-story-section {
  padding: 72px 4.5vw 86px;
  background:
    radial-gradient(circle at top left, rgba(229, 191, 104, 0.10), transparent 34%),
    linear-gradient(180deg, #f4efe3 0%, #ebe3d3 100%);
  color: #132019;
}

.about-story-hero,
.about-photo-grid,
.about-principles-panel {
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
}

.about-story-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.about-story-copy h2 {
  max-width: 1020px;
  margin-bottom: 24px;
  color: #132019;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-story-copy p {
  max-width: 820px;
  color: #39483f;
  font-size: 1.12rem;
  line-height: 1.75;
}

.about-story-lead {
  font-size: clamp(1.2rem, 1.45vw, 1.45rem) !important;
  color: #26342d !important;
}

.about-hero-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(19, 32, 25, 0.16);
  border-radius: 30px;
  background: #07110d;
  box-shadow: 0 22px 60px rgba(11, 24, 18, 0.18);
}

.about-hero-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.about-hero-photo-card span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(229, 191, 104, 0.32);
  border-radius: 999px;
  background: rgba(3, 5, 4, 0.78);
  color: #e5bf68;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
  margin-top: 42px;
}

.about-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(19, 32, 25, 0.14);
  border-radius: 24px;
  background: #07110d;
  box-shadow: 0 14px 36px rgba(11, 24, 18, 0.10);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 280ms ease;
}

.about-photo:hover img {
  transform: scale(1.025);
}

.about-photo-tall {
  grid-row: span 2;
}

.about-photo-wide {
  grid-column: span 2;
}

.about-principles-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: 34px;
  align-items: start;
  margin-top: 42px;
  padding: 34px;
  border: 1px solid rgba(229, 191, 104, 0.30);
  border-radius: 28px;
  background: #07110d;
  color: #f7f3e8;
  box-shadow: 0 22px 60px rgba(11, 24, 18, 0.18);
}

.about-principles-panel h3 {
  margin: 0;
  color: #f7f3e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-principles-grid article {
  padding: 22px;
  border: 1px solid rgba(229, 191, 104, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.about-principles-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #e5bf68;
  color: #171006;
  font-weight: 900;
}

.about-principles-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #f7f3e8;
  font-size: 1.05rem;
}

.about-principles-grid p {
  margin: 0;
  color: rgba(247, 243, 232, 0.78);
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .about-story-hero,
  .about-principles-panel,
  .about-principles-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .about-story-section {
    padding: 54px 5vw 68px;
  }

  .about-story-hero {
    gap: 28px;
  }

  .about-hero-photo-card,
  .about-hero-photo-card img {
    min-height: 460px;
  }

  .about-photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .about-photo-tall,
  .about-photo-wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .about-principles-panel {
    padding: 24px;
  }
}


/* ABOUT TAB PATCH: show full user-provided gallery images without card styling */
.about-story-copy p,
.about-story-lead {
  max-width: 820px;
  color: #39483f !important;
  font-size: 1.12rem !important;
  line-height: 1.75 !important;
}

.about-hero-photo-card span {
  display: none !important;
}

.about-photo-grid-clean {
  display: flex !important;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px !important;
  margin-top: 8px;
}

.about-photo-grid-clean .about-photo-gallery-card {
  flex: 1 1 0;
  min-height: auto;
  overflow: visible;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo-grid-clean .about-photo-gallery-card img {
  width: auto;
  height: 260px;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  transform: none !important;
  transition: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.about-photo-grid-clean .about-photo-gallery-card:hover img,
.about-photo-grid-clean .about-photo-gallery-card:hover,
.about-photo-grid-clean .about-photo:hover img {
  transform: none !important;
  transition: none !important;
}

@media (max-width: 1180px) {
  .about-photo-grid-clean {
    gap: 18px !important;
  }

  .about-photo-grid-clean .about-photo-gallery-card img {
    height: 220px;
  }
}

@media (max-width: 900px) {
  .about-photo-grid-clean {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    justify-items: center;
  }

  .about-photo-grid-clean .about-photo-gallery-card {
    width: 100%;
  }

  .about-photo-grid-clean .about-photo-gallery-card img {
    height: auto;
    max-height: 260px;
  }
}

/* ABOUT TAB PATCH: polished story and benefit cards */
.about-story-copy p {
  margin-bottom: 16px;
}

.about-story-copy p:last-child {
  margin-bottom: 0;
}

.about-benefits-panel {
  margin-top: 50px !important;
}

.about-benefits-panel .eyebrow {
  color: #e5bf68;
}

.about-benefit-grid article {
  min-height: 218px;
}

.about-benefit-grid strong {
  font-size: 1.12rem;
  line-height: 1.25;
}

.about-benefit-grid p {
  font-size: 0.98rem;
}


/* FINAL ABOUT PHOTO FORMAT LOCK: restored accepted no-card lower photo format */
.about-photo-grid-clean .about-photo-gallery-card {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  padding: 0 !important;
}

.about-photo-grid-clean .about-photo-gallery-card img {
  width: auto !important;
  height: 260px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

.about-photo-grid-clean .about-photo-gallery-card:hover img {
  transform: none !important;
  transition: none !important;
}


/* HOME + REQUEST DEMO FIT PATCH: no-scroll pages with footer visible */
#home.hero {
  min-height: calc(100vh - 96px - 76px);
  padding: clamp(26px, 4vh, 54px) 6vw clamp(24px, 3.5vh, 48px);
  align-items: center;
}

#home .hero-copy {
  max-width: 900px;
}

#home h1 {
  font-size: clamp(4.2rem, 9vw, 8.4rem);
  margin-bottom: 0.02em;
}

#home .hero-byline {
  margin: -4px 0 12px;
}

#home h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 4vw, 4rem);
}

#home .hero-text {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(1.08rem, 1.55vw, 1.45rem);
  line-height: 1.4;
}

#home .hero-subtext {
  max-width: 780px;
  font-size: clamp(0.96rem, 1.15vw, 1.06rem);
  line-height: 1.55;
}

#home .hero-buttons {
  margin-top: clamp(16px, 2.2vh, 24px);
}

/* Compact the footer only on Home and Request Demo so the whole page fits without scrolling. */
body:has(#home:not(.is-hidden)) .site-footer,
body:has(#contact:not(.is-hidden)) .site-footer {
  min-height: 76px;
  padding: 10px 6vw;
}

body:has(#home:not(.is-hidden)) .footer-brand img,
body:has(#contact:not(.is-hidden)) .footer-brand img {
  width: 44px;
  height: 44px;
}

body:has(#home:not(.is-hidden)) .site-footer p,
body:has(#contact:not(.is-hidden)) .site-footer p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.35;
}

body:has(#home:not(.is-hidden)) .footer-brand,
body:has(#contact:not(.is-hidden)) .footer-brand {
  gap: 10px;
  font-size: 0.9rem;
}

.contact-fit-section {
  min-height: calc(100vh - 96px - 76px);
  padding: clamp(22px, 3.5vh, 44px) 6vw;
  display: grid;
  align-items: center;
}

.contact-fit-layout {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 0.78fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.contact-fit-copy .eyebrow {
  margin-bottom: 12px;
}

.contact-fit-copy h2 {
  max-width: 640px;
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 4.7vw, 4.7rem);
}

.contact-fit-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--cream);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.6;
}

.contact-fit-copy .contact-actions {
  margin-top: 22px;
}

.contact-fit-form {
  max-width: 560px;
  margin: 0;
  gap: 10px;
}

.contact-fit-form input,
.contact-fit-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.96rem;
}

.contact-fit-form textarea {
  min-height: 108px;
  resize: vertical;
}

.contact-fit-form button {
  min-height: 46px;
  padding: 12px 18px;
}

@media (max-height: 760px) and (min-width: 860px) {
  #home.hero {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  #home h1 {
    font-size: clamp(3.6rem, 8vw, 7.1rem);
  }

  #home h2 {
    font-size: clamp(1.75rem, 3.6vw, 3.2rem);
    margin-bottom: 12px;
  }

  #home .hero-text {
    font-size: 1.05rem;
  }

  #home .hero-subtext {
    font-size: 0.94rem;
  }

  .contact-fit-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .contact-fit-copy h2 {
    font-size: clamp(2.1rem, 4vw, 3.8rem);
  }

  .contact-fit-form textarea {
    min-height: 86px;
  }
}

@media (max-width: 900px) {
  #home.hero,
  .contact-fit-section {
    min-height: auto;
  }

  .contact-fit-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-fit-form {
    max-width: 100%;
  }
}


/* REQUEST DEMO CONTACT DETAILS + SUBTLE AERIAL COURSE OUTLINE */
.contact-outline-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.contact-outline-section::before {
  content: "";
  position: absolute;
  inset: 3% 2% 4% 31%;
  background-image: url('assets/images/request-demo-course-outline.png');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  opacity: 0.11;
  filter: grayscale(100%) saturate(0) brightness(0.95) contrast(1.1);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.contact-outline-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 56, 33, 0.95) 0%, rgba(5, 56, 33, 0.92) 36%, rgba(5, 56, 33, 0.82) 56%, rgba(5, 56, 33, 0.88) 100%);
  pointer-events: none;
  z-index: 0;
}

.contact-outline-section .contact-fit-layout {
  position: relative;
  z-index: 1;
}

.contact-fit-copy .contact-fit-lead {
  margin-bottom: 0;
}

.contact-fit-details {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.contact-fit-details p {
  margin: 0;
}

.contact-location {
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.82);
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--cream);
  font-size: 1rem;
}

.contact-direct span {
  color: rgba(247, 242, 232, 0.78);
  min-width: 52px;
}

.contact-direct a {
  color: var(--gold);
  text-decoration: none;
}

.contact-direct a:hover {
  color: #f0ca72;
}

.contact-fit-copy .contact-actions {
  margin-top: 20px;
}

@media (max-height: 760px) and (min-width: 860px) {
  .contact-fit-details {
    gap: 6px;
    margin-top: 14px;
  }

  .contact-location,
  .contact-direct {
    font-size: 0.93rem;
  }
}

@media (max-width: 900px) {
  .contact-outline-section::before {
    inset: auto 0 4% 0;
    height: 40%;
    background-position: center bottom;
    opacity: 0.08;
  }

  .contact-outline-section::after {
    background: linear-gradient(180deg, rgba(5, 56, 33, 0.96) 0%, rgba(5, 56, 33, 0.94) 45%, rgba(5, 56, 33, 0.90) 100%);
  }
}


/* REQUEST DEMO FINAL PATCH: stronger aerial outline, no duplicate email button, forced headline break */
.contact-outline-section::before {
  inset: -2% -2% -2% 22% !important;
  background-position: center center !important;
  background-size: min(92vw, 1380px) auto !important;
  opacity: 0.46 !important;
  filter: saturate(0.95) brightness(0.92) contrast(1.2) !important;
  mix-blend-mode: screen !important;
}

.contact-outline-section::after {
  background:
    radial-gradient(circle at 68% 46%, rgba(5, 56, 33, 0.20), rgba(5, 56, 33, 0.50) 48%, rgba(5, 56, 33, 0.68) 100%),
    linear-gradient(90deg, rgba(5, 56, 33, 0.82) 0%, rgba(5, 56, 33, 0.56) 44%, rgba(5, 56, 33, 0.62) 100%) !important;
}

.contact-fit-copy h2 span {
  display: inline-block;
}

.contact-fit-copy .contact-actions {
  display: none !important;
}

.contact-fit-details {
  margin-top: 20px;
}

@media (max-height: 760px) and (min-width: 860px) {
  .contact-outline-section::before {
    opacity: 0.42 !important;
  }

  .contact-fit-details {
    margin-top: 16px;
  }
}

@media (max-width: 900px) {
  .contact-outline-section::before {
    inset: auto 0 1% 0 !important;
    height: 52% !important;
    background-position: center bottom !important;
    background-size: cover !important;
    opacity: 0.28 !important;
  }
}


/* PACE PAGE IMAGE REPLACEMENT PATCH */
.pace-live-image {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  object-fit: cover;
  object-position: center;
  background: #07110d;
}

.form-success-message,
.form-error-message {
  margin: 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.45;
}

.form-error-message {
  color: #ffd7d7;
}

/* EMERGENCY MOBILE SAFETY FIX ONLY — appended after restoring full current stylesheet */
@media (max-width: 760px) {
  #safety .safety-takeaway {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 24px 22px !important;
    overflow: hidden !important;
  }

  #safety .safety-takeaway strong {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(2rem, 11vw, 3rem) !important;
    line-height: 0.98 !important;
  }

  #safety .safety-takeaway p {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    color: rgba(247, 243, 232, 0.82) !important;
    font-size: 1.04rem !important;
    line-height: 1.6 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  #safety .safety-takeaway .btn {
    width: 100% !important;
    max-width: 100% !important;
    justify-self: stretch !important;
    white-space: normal !important;
    text-align: center !important;
  }
}
