:root {
  --page: #ffffff;
  --ink: #111111;
  --red: #ed2024;
  --line: #d8d8d8;
  --header-height: 4.75rem;
  --footer-height: 2.55rem;
  --page-pad: clamp(.9rem, 4vw, 1.45rem);
  --content-width: 42rem;
  --site-margin: clamp(.35rem, 1.4vw, .7rem);
}

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

html {
  min-width: 20rem;
  min-height: 100%;
  background: var(--page);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.3;
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: var(--site-margin);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow-x: hidden;
  background: var(--page);
}

body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

a[x-apple-data-detectors],
[x-apple-data-detectors] {
  color: inherit !important;
  font: inherit !important;
  text-decoration: none !important;
}
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .5rem;
  left: .5rem;
  padding: .65rem .9rem;
  border: 2px solid var(--ink);
  background: var(--page);
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: relative;
  z-index: 20;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 4.45rem minmax(0, 1fr) 4.45rem;
  align-items: center;
  gap: .18rem;
  padding: .16rem .42rem;
  border-bottom: 1px solid var(--line);
  background: var(--page);
}

.symbol-link, .wordmark-link { display: flex; align-items: center; }
.symbol-link { width: 4.35rem; height: 4.35rem; justify-content: flex-start; overflow: hidden; }
.exact-mark { overflow: visible; }
.exact-mark--header { width: 4.25rem; height: 4.12rem; overflow: hidden; pointer-events: none; }
.wordmark-link { min-width: 0; justify-content: center; }
.wordmark-link img { width: min(100%, 14.15rem); height: auto; }

.menu-button {
  width: 4rem;
  height: 4rem;
  margin-left: auto;
  padding: .78rem .28rem;
  display: grid;
  align-content: center;
  gap: .42rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button span { display: block; width: 100%; height: .18rem; background: var(--ink); }

.menu-button:focus-visible,
.menu-close:focus-visible,
.menu-nav a:focus-visible,
.hero-links a:focus-visible,
.page-link:focus-visible,
.symbol-link:focus-visible,
.wordmark-link:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.menu-layer { position: fixed; z-index: 100; inset: 0; display: flex; justify-content: flex-end; }
.menu-layer[hidden] { display: none; }
.menu-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(17, 17, 17, .50);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
}
.menu-panel {
  position: relative;
  z-index: 1;
  width: 60vw;
  min-width: 13.5rem;
  max-width: 25rem;
  height: 100%;
  overflow-y: auto;
  padding: .72rem clamp(1.15rem, 5vw, 2.25rem) 1.5rem;
  background: rgba(255, 255, 255, .98);
  box-shadow: -1rem 0 2.5rem rgba(0, 0, 0, .20);
}
.menu-panel-header {
  min-height: 3.65rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3rem;
  align-items: center;
  gap: .75rem;
  padding-bottom: .72rem;
  border-bottom: 1px solid var(--line);
}
.menu-panel-header img { width: min(100%, 12rem); margin-left: auto; }
.menu-close {
  width: 3rem;
  height: 3rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}
.menu-nav { display: grid; justify-items: end; padding-top: clamp(1.75rem, 7vh, 4.5rem); text-align: right; }
.menu-nav a {
  width: 100%;
  padding: .56rem 0;
  text-decoration: none;
  font-size: clamp(1.45rem, 6.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.03em;
}
.menu-nav a:hover, .menu-nav a[aria-current="page"] { color: var(--red); }

.home-main, .page-main { min-height: 0; display: flex; }
.hero {
  width: min(100%, 72rem);
  min-height: 100%;
  margin-inline: auto;
  padding: .25rem var(--page-pad) .55rem;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: .45rem;
}
.hero h1 {
  margin: 0;
  text-align: center;
  color: var(--red);
  font-size: clamp(2.05rem, 9.4vw, 4.3rem);
  font-weight: 650;
  line-height: 1.01;
  letter-spacing: -.042em;
}
.page-copy h1 {
  margin: 0;
  text-align: center;
  color: var(--red);
  font-size: clamp(1.5rem, 5.3vw, 2.4rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.025em;
}
.hero h1 span { display: block; white-space: nowrap; }
.hero-rotator {
  position: relative;
  width: 75vw;
  max-width: 26rem;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
}
.hero-slide.is-active { display: grid; }
.hero-slide img, .exact-mark--rotator { width: 100%; height: 100%; }
.hero-slide img { object-fit: contain; }
.exact-mark--rotator { aspect-ratio: 457 / 443; }
.hero-links {
  width: 100%;
  display: grid;
  gap: .9rem;
  padding-top: 1.15rem;
  padding-left: clamp(.6rem, 3vw, 1.2rem);
  text-align: left;
  justify-items: start;
}
.hero-links a {
  width: fit-content;
  max-width: 100%;
  font-size: clamp(1.42rem, 6.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.13;
  text-align: left;
  text-decoration-thickness: .07em;
  text-underline-offset: .17em;
}
.hero-links a span { display: block; }
.hero-links a:hover, .page-link:hover { color: var(--red); }

.page-main { padding: 1.1rem var(--page-pad) 1.5rem; }
.page-copy {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  display: grid;
  gap: .95rem;
  align-content: start;
}
.page-copy--wide { --content-width: 52rem; }
.page-copy .lead {
  margin: 0;
  font-size: clamp(1.2rem, 4.7vw, 1.5.95rem);
  line-height: 1.24;
  text-align: center;
}
.page-copy p, .page-copy li {
  margin: 0;
  font-size: clamp(1rem, 4.2vw, 1.12rem);
  line-height: 1.5.9;
}
.guitar-list {
  margin: .2rem 0 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 1rem;
}
.guitar-list li {
  font-size: clamp(1.12rem, 4.7vw, 1.35rem);
  line-height: 1.35;
}
.page-actions { padding-top: .35rem; display: flex; justify-content: center; }
.page-actions--sentence { text-align: center; }
.page-link {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration-thickness: .07em;
  text-underline-offset: .17em;
}
.trim-grid { display: grid; gap: .9rem; padding-top: .35rem; }
.trim-card, .cost-section, .plan-section { padding: 1rem 1rem 1.05rem; border: 1px solid var(--line); }
.trim-card h2, .cost-section h2, .plan-section h2 {
  margin: 0 0 .45rem;
  font-size: clamp(1.15rem, 5vw, 1.4rem);
  line-height: 1.15;
}
.cost-section, .plan-section { display: grid; gap: .7rem; }

.keith-feature {
  margin: 1rem auto 0;
  width: min(100%, 30rem);
  display: grid;
  gap: .7rem;
}
.keith-feature img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}
.keith-feature figcaption {
  margin: 0;
  text-align: center;
  font-size: clamp(1rem, 4.2vw, 1.12rem);
  line-height: 1.45;
}
.gag-aside {
  font-size: .9em;
  text-align: center;
}
.gag-aside--block {
  display: block;
  margin-top: .28rem;
}

.keith-feature figcaption a,
.page-copy p a {
  text-decoration-thickness: .07em;
  text-underline-offset: .17em;
}

.keith-proof-stack {
  display: grid;
  gap: .9rem;
}
.proof-frame {
  margin: 0;
}
.proof-frame img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}
.video-link {
  text-align: center;
  font-weight: 700;
}
.video-link a {
  text-decoration-thickness: .07em;
  text-underline-offset: .17em;
}

.keith-feature--system {
  margin-top: .2rem;
}
.keith-feature--system figcaption {
  font-size: clamp(1.3rem, 5.4vw, 1.6rem);
  font-weight: 700;
  line-height: 1.12;
}

.plan-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: .55rem;
}

.plan-list li {
  font-size: clamp(1rem, 4.2vw, 1.12rem);
  line-height: 1.5.9;
}

.site-footer {
  min-height: var(--footer-height);
  margin: 0;
  padding: .52rem var(--page-pad);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .74rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--page);
}
.site-footer p { margin: 0; }

@media (min-width: 36rem) {
  .hero { padding-top: .375rem; gap: .7rem; }
  .hero-rotator { width: min(68vw, 27rem); }
  .hero-links { width: min(100%, 38rem); margin-inline: auto; }
  .trim-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 48rem) {
  :root { --header-height: 5.25rem; }
  .site-header { grid-template-columns: 5rem minmax(0, 1fr) 5rem; padding-inline: 1rem; }
  .symbol-link, .exact-mark--header { width: 4.75rem; height: 4.6rem; }
  .wordmark-link img { width: min(100%, 18rem); }
  .menu-button { width: 4.35rem; }
  .menu-panel { width: min(60vw, 30rem); }
  .hero { align-content: center; gap: 1rem; padding-block: .5rem; }
  .page-main { padding-block: 1.6rem 2rem; }
}

@media (min-width: 70rem) {
  .hero-links { width: min(100%, 42rem); }
}

.keith-thumbs-red {
  color: var(--red);
}

.keith-aside {
  margin-top: .35rem;
  font-size: clamp(1rem, 4.2vw, 1.18rem);
  font-weight: 700;
}

.model-link {
  text-decoration-thickness: .07em;
  text-underline-offset: .17em;
}
.model-link:hover {
  color: var(--red);
}

.business-offer-rule {
  width: 100%;
  margin: 1rem 0 .25rem;
  border: 0;
  border-top: 1px solid var(--ink);
}
.business-offer-copy h2 {
  margin: .35rem 0 0;
  font-size: clamp(1.1rem, 4.6vw, 1.35rem);
  line-height: 1.2;
}


.yet-offer-link {
  display: block;
  width: min(50%, 15.5rem);
  margin: -.15rem auto -.2rem;
  text-decoration: none;
}
.yet-rotator {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.yet-slide {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  width: 100%;
  height: 100%;
}
.yet-slide.is-active { display: grid; }
.yet-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
}
.keith-only-note {
  margin-top: -.25rem !important;
  text-align: center;
  font-size: .9rem !important;
  line-height: 1.25 !important;
}
