/* Brand tokens from ryco.io: Poppins, vivid purple, yellow, black, and white. */
:root {
  color-scheme: light;
  --purple: #7405cc;
  --purple-bright: #c205ff;
  --purple-dark: #9301c2;
  --yellow: #f0ce19;
  --ink: #111111;
  --body: #444444;
  --muted: #666666;
  --line: #e6e6e6;
  --surface: #f7f7f7;
  --gutter: clamp(20px, 4vw, 40px);
  --section-space: clamp(48px, 7vw, 80px);
  --card-padding: clamp(22px, 3vw, 36px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(28px, 3.6vw, 42px);
}
h3 {
  font-size: clamp(23px, 2.5vw, 28px);
}
a {
  color: inherit;
}
svg {
  display: block;
  flex: none;
}
::selection {
  background: var(--yellow);
  color: #000000;
}
:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 5px;
}

.wrap {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000000;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}

.wordmark {
  flex: none;
  font-family: "Open Sans", "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-decoration: none;
}

/* The same full-bleed purple and rounded shapes as the ryco.io homepage. */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--purple) 0%,
    var(--purple-bright) 100%
  );
  color: #ffffff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 44% 56% 62% 38% / 48% 45% 55% 52%;
}

.hero::before {
  width: 420px;
  height: 420px;
  left: -180px;
  top: -230px;
  background: var(--purple-bright);
  transform: rotate(-20deg);
}

.hero::after {
  width: 580px;
  height: 580px;
  right: -310px;
  top: -190px;
  background: var(--purple-dark);
  transform: rotate(20deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.nav-links a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.nav-links .nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--purple);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.nav-links .nav-cta:hover {
  background: #fff7ce;
  transform: translateY(-2px);
  text-decoration: none;
}
.hero :focus-visible {
  outline-color: var(--yellow);
}

.hero-copy {
  padding-block: clamp(36px, 5vw, 64px) clamp(60px, 8vw, 96px);
  text-align: center;
}
.eyebrow {
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}
.hero .eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #ffffff;
  font-size: 11px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.13;
}
.hero h1 span {
  color: var(--yellow);
}
.hero .lede {
  max-width: 750px;
  margin: 26px auto 0;
  color: #ffffff;
  font-size: clamp(16px, 1.65vw, 18px);
  line-height: 1.8;
  text-wrap: pretty;
}
.hero .meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #ffffff;
  font-size: 12px;
}
.hero .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

section {
  padding-block: var(--section-space);
}
.section-head {
  margin-bottom: 20px;
}
.section-head h2 {
  margin-top: 12px;
}
.body {
  max-width: 86ch;
  color: var(--body);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f5eaff;
  color: #5f02a4;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.chip::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: var(--purple);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 40px;
  margin-top: 36px;
  padding-block: 28px;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.stat-strip b {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.3;
}
.stat-strip .stat-note {
  grid-column: 1 / -1;
}

.equation {
  margin-top: 32px;
  padding: var(--card-padding);
  border-radius: 24px;
  background: var(--surface);
}
.equation .row {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.eq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.eq-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 8px 20px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
}
.calculation {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
}
.calculation > span {
  white-space: nowrap;
}
.eq-row .op {
  color: var(--muted);
}
.eq-row .result {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.eq-row.featured {
  margin-top: 4px;
  padding-block: 20px;
  border-radius: 16px;
  background: var(--purple);
  color: #ffffff;
}
.eq-row.featured .op {
  color: #ffffff;
}
.eq-row.featured .result {
  color: var(--yellow);
  font-size: clamp(22px, 2.7vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.equation .caption {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.pricing {
  background: var(--surface);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.pcard {
  padding: var(--card-padding);
  border: 1px solid var(--line);
  border-top: 5px solid var(--card-accent);
  border-radius: 24px;
  background: #ffffff;
}
.pcard.seats {
  --card-accent: var(--purple);
  --icon-bg: #f5eaff;
}
.pcard.credits {
  --card-accent: var(--yellow);
  --icon-bg: #fff7ce;
}
.card-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--icon-bg);
  color: var(--ink);
}
.tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.5;
}
.pcard p {
  margin-top: 16px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.85;
}
.pcard ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 24px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}
.pcard li {
  position: relative;
  padding-left: 24px;
  color: var(--body);
  font-size: 13px;
  line-height: 1.7;
}
.pcard li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.4em;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: rotate(45deg);
}

.close-band {
  background: #000000;
  color: #ffffff;
  text-align: center;
}
.close-band .eyebrow {
  color: var(--yellow);
}
.close-band blockquote {
  max-width: 880px;
  margin: 24px auto 0;
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

footer {
  padding-block: 28px;
  border-top: 1px solid #333333;
  background: #000000;
  color: #ffffff;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
footer .wordmark {
  font-size: 30px;
}
footer .brand {
  color: #bcbcbc;
  font-size: 12px;
}
footer :focus-visible {
  outline-color: var(--yellow);
}

@media (max-width: 760px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links .nav-secondary {
    display: none;
  }
  .hero-copy {
    padding-top: 36px;
  }
  .hero::before {
    width: 300px;
    height: 300px;
    left: -180px;
    top: -130px;
  }
  .hero::after {
    width: 350px;
    height: 350px;
    right: -250px;
    top: -80px;
  }
}

@media (max-width: 600px) {
  .site-nav {
    padding-block: 20px;
    gap: 16px;
  }
  .wordmark {
    font-size: 30px;
  }
  .nav-links .nav-cta {
    padding-inline: 15px;
    font-size: 12px;
  }
  .hero .eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .hero h1 {
    font-size: clamp(32px, 7.2vw, 43px);
  }
  .hero h1 span {
    display: inline-block;
    margin-top: 8px;
  }
  .hero .lede {
    margin-top: 22px;
    font-size: 15px;
  }
  .stat-strip {
    gap: 20px;
  }
  .stat-strip b {
    font-size: 28px;
  }
  .eq-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
    font-size: 14px;
  }
  .calculation {
    gap: 4px 8px;
  }
  .eq-row .result {
    font-size: 20px;
  }
  .eq-row + .eq-row {
    border-top: 1px solid var(--line);
  }
  .eq-row.featured {
    padding: 18px;
    border: 0;
  }
  footer .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .nav-links .nav-cta {
    transition: none;
  }
}
