@import url("https://use.typekit.net/jcv3hbh.css");

:root {
  --bg: #1F1F1F;
  --bg-panel: #282a29;
  --fg: #FFFFFF;
  --accent: #00E300;
  --accent-dim: #1f8a3d;
  --muted: #8aa08a;
  --frame: #00E300;
  --maxw: 720px;
  --maxw-wide: 960px;
  --font-mono: "Courier New", ui-monospace, "SF Mono", Menlo, monospace;
  --font-main: "redaction-35", Helvetica, sans-serif;
  --font-weight-main: 400;
  --font-weight-bold: 700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-main);
  font-weight: var(--font-weight-main);
  font-style: normal;
  line-height: 1.5;
  font-size: 20px;
}

section {
  padding: 3rem 1.35rem;
}

section p,
section p span {
  font-size: 1.5rem;
}

h1 {
  text-transform: uppercase;
}

h2 {
  font-size: 2.55rem;
}

.container {
  margin: 0 auto;
}

.container-wide {
  margin: 0 auto;
}

.hero .hero-headline {
  width: 100%;
  height: auto;
  margin: 1rem auto;
  text-align: center;
  padding: 0 0 1.5rem 0;
}

.hero .hero-grid.terminal-frame {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .hero-inner {
  padding: 1rem;

  h3 {
    line-height: 1.5;
    font-size: 1.65rem;

    @media (max-width: 990px) {
      font-size: 1.5rem;
    }
  }
}

/* .hero-media-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  height: auto;
} */

.hero-media-grid figure {
  margin: 0 auto;
}

.hero-media-grid figure img,
.hero-media figure {
  width: 100%;
  height: auto;
}

.hero-media {
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  gap: 2rem;
  flex-direction: column;
  /* height: 75vh; */
  min-height: 400px;
}

.hero-media figure {
  margin: 0 auto;
  flex: 1 1 100%;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media figure img {
  height: 100%;
  width: auto;
  max-width: 75%;
  max-height: 300px;
}

/* @media(min-width: 960px) {
  .hero-media figure.text img {
    max-height: 80%;
  }
} */

.hero .headline-sub {
  color: var(--fg);
  font-weight: 400;
  margin: 0.25rem 0 1rem;
}

.clip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.clip-row.center {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
  text-align: center;
}

.clip-row .quote {
  font-size: 1.15rem;
}

.clip-row.reverse .quote {
  order: 2;
}

blockquote.quote {
  margin: 0;
  border: 0;
  padding: 0;
}

blockquote.quote p {
  margin: 0;
}

blockquote.quote cite {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-style: normal;
}

.terminal-frame {
  border: 6px solid var(--frame);
  border-radius: 2px;
  background: var(--bg-panel);
  box-shadow: 0 0 15px rgba(51, 255, 102, 0.65);
  padding: 1.5rem;
}

/* h1,
h2,
h3 {
  line-height: 1.15;
} */

h1 {
  color: var(--accent);
  font-size: clamp(2rem, 6vw, 3.25rem);
}

.accent {
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.photo-band {
  padding: 0;
  position: relative;
  display: block;
  overflow-x: hidden;
}

.photo-band img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.photo-band img.divider {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 200px;
}

.photo-band .container {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 2rem 1.5rem;
}

.photo-band .container .clip-row {
  height: 100%;
}

.divider {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

figure.clip {
  margin: 0;
  position: relative;
  border: 2px solid var(--frame);
  background: #000;
}

figure.clip img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

figure.clip figcaption {
  padding: 0.75rem 1rem;
  color: var(--muted);
}

audio,
video {
  width: 100%;
}

.embed-16x9 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--frame);
  background: #000;
  box-shadow: 0 0 12px rgba(51, 255, 102, 0.25);
}

.embed-16x9 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ohio-quote .vert-offset-video {
  margin-top: -10rem;
}

.ohio-quote .embed-9x16 {
  position: relative;
  margin: 0 auto;
  border: 2px solid var(--frame);
  background: #000;
  box-shadow: 0 0 12px rgba(51, 255, 102, 0.25);
  width: 100%;
}

@media (max-width: 990px) {
  .ohio-quote .embed-9x16 {
    max-width: calc(80vh * 9 / 16);
    margin-bottom: 2rem;
  }
}

.ohio-quote .embed-9x16 iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  border: 0;
}


.clip-placeholder {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #f4f4f4;
  border: 2px solid var(--frame);
  display: grid;
  place-items: center;
}

.clip-placeholder::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 0 22px 36px;
  border-color: transparent transparent transparent #111;
}

.clip-placeholder .todo-tag {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 0.7rem;
  color: #111;
  background: rgba(51, 255, 102, 0.85);
  padding: 0.1rem 0.4rem;
}

.audio-player {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 460px;
  margin: 1rem auto 0;
  background: var(--accent);
  color: #061a0c;
  border-radius: 999px;
  padding: 0.5rem 1rem;
}

.audio-player .play {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: #061a0c;
  display: grid;
  place-items: center;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.audio-player .play::after {
  content: "";
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--accent);
}

.audio-player.is-playing .play::after {
  border-style: solid;
  border-width: 0 4px;
  border-color: var(--accent);
  height: 14px;
  width: 6px;
}

.audio-player .waveform {
  position: relative;
  flex: 1 1 auto;
  height: 24px;
  cursor: pointer;
  overflow: hidden;
  background: repeating-linear-gradient(90deg, rgba(6, 26, 12, 0.35) 0 2px, transparent 2px 5px);
}

.audio-player .waveform-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: repeating-linear-gradient(90deg, #061a0c 0 2px, transparent 2px 5px);
}

.bottom-photos img {
  width: 100%;
  height: auto;
  z-index: 100;
  position: relative;
}

.bottom-photos .bottom-line {
  margin-top: -15%;
  z-index: 10;
}

@media (max-width: 700px) {

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

  .clip-row.reverse .quote {
    order: 0;
  }
}

.bottom-line {
  text-align: center;
  border: 2px solid var(--frame);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 16px rgba(51, 255, 102, 0.3);
}

.bottom-line h2 {
  color: var(--accent);
}

a {
  color: var(--accent);
}

.deregulate {
  padding-bottom: 6rem;
}

footer {
  background-color: transparent;
  padding: 6rem 0 2rem 0;
}

footer .disclaimer {
  text-align: center;
  width: fit-content;
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.75rem;
  opacity: 0.6;
  text-transform: uppercase;
  padding: 8px 2rem;
  border: 1px solid var(--fg);
}