:root {
  --bg: #f7f4ed;
  --bg-strong: #ebdfc8;
  --surface: #fffdf8;
  --surface-alt: #fff3dd;
  --ink: #112018;
  --ink-soft: #435248;
  --green: #0f5d46;
  --green-deep: #0b3f31;
  --orange: #d94f04;
  --blue: #1947d1;
  --yellow: #ffd25c;
  --line: rgba(17, 32, 24, 0.12);
  --shadow: 0 24px 50px rgba(17, 32, 24, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 79, 4, 0.18), transparent 22rem),
    radial-gradient(circle at 85% 0%, rgba(25, 71, 209, 0.14), transparent 26rem),
    linear-gradient(180deg, #fdf9f0 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(17, 32, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 32, 24, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 95%);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

p,
li {
  line-height: 1.72;
  font-size: 1rem;
}

.site-wrap {
  position: relative;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 242, 216, 0.92));
  box-shadow: var(--shadow);
  position: sticky;
  top: 0.8rem;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-badge {
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  border-radius: 22px 8px 22px 8px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fffef9;
  font-family: "Teko", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong,
.site-nav a,
h1,
h2,
h3,
.button,
.text-link {
  font-family: "Teko", sans-serif;
}

.brand-copy strong {
  font-size: 1.55rem;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-copy span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.site-nav a {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--ink);
  color: #fffdf8;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  padding: 0.82rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.split-showcase,
.wide-feature,
.page-banner,
.photo-story,
.signal-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.card-grid,
.lane-grid,
.pressure-grid,
.comparison-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.pressure-grid {
  grid-template-columns: 0.95fr 1.1fr 0.95fr;
  align-items: stretch;
}

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

.schedule-board {
  display: grid;
  gap: 1rem;
}

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

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.panel-card,
.panel-dark,
.panel-hero {
  padding: clamp(1.45rem, 3vw, 2rem);
}

.panel-hero {
  background:
    linear-gradient(150deg, rgba(255, 210, 92, 0.6), transparent 35%),
    linear-gradient(180deg, #fff9eb 0%, #f2eadb 100%);
}

.panel-card {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 244, 221, 0.98));
}

.panel-dark {
  color: #f9f6ee;
  background:
    linear-gradient(135deg, rgba(255, 210, 92, 0.12), transparent 30%),
    linear-gradient(180deg, var(--green-deep) 0%, #112d22 100%);
}

.panel-photo {
  background: #c9d6d1;
  min-height: 100%;
}

.panel-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(17, 32, 24, 0.72));
}

.panel-photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  color: #fffdf8;
  background: rgba(17, 32, 24, 0.72);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.hero-shot {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 83% 100%, 0 100%);
}

.tilt-card {
  transform: rotate(-1.2deg);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 0.7rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(17, 32, 24, 0.08);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-dark .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #ffd25c;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  max-width: 10.2ch;
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.lead {
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.button-solid {
  background: var(--green);
  color: #fffdf8;
}

.button-outline {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.score-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.score-ribbon span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 32, 24, 0.07);
  font-size: 0.92rem;
  font-weight: 600;
}

.ticker-strip {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), #15745a, var(--blue));
  color: #fffdf8;
}

.ticker-strip div {
  white-space: nowrap;
  padding: 0.85rem 0;
  animation: ticker-scroll 22s linear infinite;
}

.ticker-strip span {
  display: inline-block;
  padding-left: 100%;
  font-family: "Teko", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  align-items: end;
  margin-top: 1.4rem;
  min-height: 7rem;
}

.bar {
  border-radius: 18px 18px 8px 8px;
}

.bar-a {
  min-height: 54%;
  background: linear-gradient(180deg, #7ecb88, var(--green));
}

.bar-b {
  min-height: 82%;
  background: linear-gradient(180deg, #ff8f5a, var(--orange));
}

.bar-c {
  min-height: 68%;
  background: linear-gradient(180deg, #7ca7ff, var(--blue));
}

.bar-d {
  min-height: 92%;
  background: linear-gradient(180deg, #ffe08b, #d8a20c);
}

.accent-green {
  background: linear-gradient(180deg, #f4fbf6 0%, #def2e7 100%);
}

.accent-orange {
  background: linear-gradient(180deg, #fff2e9 0%, #ffe0cd 100%);
}

.accent-blue {
  background: linear-gradient(180deg, #eff4ff 0%, #dfe8ff 100%);
}

.wide-feature .panel-photo {
  min-height: 22rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 1.08rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link::after {
  content: "+";
  font-size: 1.3rem;
}

.banner-copy,
.story-copy,
.board-copy,
.pressure-card,
.lane-card,
.tall-card {
  min-height: 100%;
}

.bullet-points {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.bullet-points li + li {
  margin-top: 0.45rem;
}

.small-ticket {
  border-radius: 22px 22px 12px 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  padding: 1.1rem 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.9);
}

.site-footer p {
  margin: 0;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-showcase,
  .wide-feature,
  .page-banner,
  .photo-story,
  .signal-hero,
  .pressure-grid,
  .comparison-grid,
  .card-grid,
  .lane-grid,
  .board-grid {
    grid-template-columns: 1fr;
  }

  .hero-shot,
  .tilt-card {
    clip-path: none;
    transform: none;
  }

  .panel-photo,
  .wide-feature .panel-photo {
    min-height: 18rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    display: none;
    width: min(19rem, 100%);
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-wrap {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-top: 0.6rem;
  }

  .masthead {
    border-radius: 18px;
    padding: 0.9rem;
  }

  .brand-copy span {
    display: none;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  h3 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .panel,
  .site-footer {
    border-radius: 22px;
  }

  .panel-card,
  .panel-dark,
  .panel-hero {
    padding: 1.2rem;
  }

  .score-ribbon span {
    width: 100%;
  }

  .ticker-strip span {
    font-size: 1.1rem;
  }
}
