:root {
  --orange: #ff8500;
  --orange-deep: #df6200;
  --purple: #8d00ff;
  --ink: #181512;
  --muted: #5f6671;
  --line: #e3e7ee;
  --paper: #f7f8fb;
  --white: #ffffff;
  --gray: #777777;
  --radius: 8px;
  --shadow: 0 16px 40px rgba(24, 21, 18, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "YuGothic",
    system-ui,
    sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(227, 231, 238, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand-logo {
  width: 54px;
  height: 40px;
  object-fit: contain;
}

.brand-text {
  white-space: nowrap;
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.text-link {
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.text-link:hover {
  border-bottom-color: var(--orange);
}

.header-cta,
.primary-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.25;
}

.header-cta,
.primary-button {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(255, 133, 0, 0.24);
}

.header-cta {
  padding: 10px 16px;
  font-size: 0.92rem;
}

.primary-button {
  padding: 14px 20px;
}

.header-cta:hover,
.primary-button:hover {
  background: var(--orange-deep);
}

.outline-button {
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
}

.outline-button:hover {
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(247, 248, 251, 0.9) 48%, rgba(247, 248, 251, 0.5) 100%),
    url("assets/ballers-bee-logo.jpg") right 6vw center / min(780px, 72vw) auto no-repeat,
    var(--paper);
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -90px;
  width: min(520px, 72vw);
  aspect-ratio: 1;
  content: "";
  border: 18px solid rgba(141, 0, 255, 0.2);
  border-radius: 50%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(255, 133, 0, 0.12) 58% 59%, transparent 59%),
    linear-gradient(65deg, transparent 0 72%, rgba(24, 21, 18, 0.09) 72% 73%, transparent 73%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 108px) 0 44px;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 12px;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #35302c;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.text-link {
  color: var(--ink);
  font-weight: 900;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 860px;
  margin: clamp(42px, 8vw, 76px) 0 0;
}

.hero-facts div,
.value-card,
.info-panel,
.trial-panel,
.contact-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-facts div {
  min-height: 96px;
  padding: 16px;
}

.hero-facts dt,
.info-list dt {
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-facts dd,
.info-list dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.section {
  padding: clamp(64px, 9vw, 106px) 0;
}

.section-inner,
.cta-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.section h2,
.cta-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.lead-block p,
.access-content p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.lead-block {
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.values-section,
.access-section {
  background: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

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

.value-card {
  min-height: 220px;
  padding: 22px;
}

.value-number {
  display: block;
  color: var(--purple);
  font-weight: 900;
}

.value-card h3 {
  margin: 20px 0 10px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 18px;
  align-items: start;
}

.info-panel,
.trial-panel {
  padding: clamp(20px, 4vw, 32px);
}

.info-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-list div:first-child {
  padding-top: 0;
}

.info-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.trial-panel h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.25;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
  padding-left: 1.35em;
  font-weight: 800;
}

.full-width {
  width: 100%;
}

.access-content {
  display: grid;
  gap: 16px;
}

address {
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 900;
}

.school-note {
  padding-left: 14px;
  border-left: 4px solid var(--orange);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list details[open] summary {
  margin-bottom: 10px;
}

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

.contact-card {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 4vw, 32px);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.muted-button {
  color: #8f959e;
  border-color: #cfd5dd;
  background: #f4f6f9;
  cursor: not-allowed;
  box-shadow: none;
}

.muted-button:hover {
  color: #8f959e;
  background: #f4f6f9;
}

.contact-email {
  overflow-wrap: anywhere;
  font-weight: 900;
}

.cta-section {
  padding: clamp(64px, 9vw, 106px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(24, 21, 18, 0.88), rgba(24, 21, 18, 0.62)),
    url("assets/ballers-bee-logo.jpg") right center / min(760px, 90vw) auto no-repeat,
    #181512;
}

.cta-inner {
  max-width: 920px;
}

.cta-section .section-kicker {
  color: #ffb866;
}

.cta-section h2 {
  max-width: 760px;
  margin-bottom: 28px;
}

.site-footer {
  display: grid;
  gap: 6px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #f6efe7;
  background: var(--ink);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .site-header {
    gap: 12px;
  }

  .site-nav {
    display: none;
  }

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

  .hero {
    min-height: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 248, 251, 0.98) 52%),
      url("assets/ballers-bee-logo.jpg") center 18px / min(520px, 112vw) auto no-repeat,
      var(--paper);
  }

  .hero-inner {
    padding-top: min(54vw, 280px);
  }

  .hero-facts,
  .two-column,
  .info-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 8px 14px;
  }

  .brand-logo {
    width: 44px;
    height: 34px;
  }

  .brand-text {
    max-width: 112px;
    white-space: normal;
    line-height: 1.1;
  }

  .header-cta {
    margin-left: auto;
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .section-inner,
  .cta-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .outline-button {
    width: 100%;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-facts {
    gap: 8px;
  }

  .hero-facts div {
    min-height: auto;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
