:root {
  color-scheme: dark;
  --bg-a: rgb(32, 32, 28);
  --bg-b: rgb(48, 46, 43);
  --brand-a: rgb(152, 192, 100);
  --brand-b: rgb(196, 212, 173);
  --text: rgb(255, 255, 255);
  --text-soft: rgba(255, 255, 255, 0.65);
  --boarder-r: 16px;
}

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

html {
  min-height: 100%;
  background: var(--bg-a);
}

body {
  min-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--bg-a);
  color: var(--text);
}

button {
  font: inherit;
  border-radius: var(--boarder-r);
}

.hero {
  position: relative;
  height: max(60dvh, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__brand {
  display: flex;
  margin: 0;
  align-items: end;
  justify-content: center;
  gap: 11px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--brand-a);
}
.hero__brand strong {
  color: var(--brand-b);
}

.hero__icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.hero__tagline {
  margin: 0.7rem 0;
  font-size: 1.495rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--brand-a);
}
.hero__tagline strong {
  color: var(--brand-b);
  font-weight: inherit;
}

.more-section {
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.read-more-button {
  margin-bottom: 1.6rem;
  padding: 0.4rem 1rem;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}
.read-more-button:hover {
  color: var(--brand-a);
}
.read-more-button:focus-visible {
  color: var(--brand-a);
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.more {
  width: 80%;
  color: var(--text);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.6;
}
.more p {
  margin: 0;
}

@media (max-width: 600px) {
  .hero {
    padding-right: 22px;
    padding-left: 22px;
    height: max(50dvh, 460px);
  }
  .hero__brand {
    font-size: 2rem;
  }
  .hero__tagline {
    font-size: 1.15rem;
  }
  .hero__more {
    width: calc(100% - 44px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__read-more {
    transition: none;
  }
}
.odd-section {
  background: var(--bg-b);
}

.story-section {
  padding: 3rem 2rem;
  min-height: 60dvh;
}

.story-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 6rem;
}

.story-name {
  margin: 0;
  font-size: 1.25rem;
  color: var(--brand-a);
}
.story-name strong {
  color: var(--brand-b);
}

.story-action {
  margin: 0;
  color: inherit;
  text-decoration: none;
  color: var(--brand-a);
  font-size: 1rem;
  padding: 0.4rem 1rem;
  border-radius: var(--boarder-r);
  border: 0.75px solid var(--brand-a);
  transform: translateY(2px);
}

.storyboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.story-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 250px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-number {
  display: flex;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.card-title {
  margin: 0;
  font-size: 1.25rem;
}

.card-text {
  margin: 1rem 0 1.5rem;
  line-height: 1.5;
}
.card-text strong {
  color: var(--brand-a);
}

.card-img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: auto;
}

@media (max-width: 900px) {
  .storyboard {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }
  .story-card:last-child {
    grid-column: 1;
  }
}
@media (max-width: 600px) {
  .story-section {
    padding: 2.5rem 1.5rem;
  }
  .storyboard {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .story-card {
    width: 100%;
    max-width: 340px;
  }
  .story-card:last-child {
    grid-column: auto;
  }
}
#soon-section {
  height: 10dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soon-text {
  margin: 20px 10px;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  text-align: center;
  color: var(text-soft);
}
.soon-text strong {
  color: var(--brand-a);
  font-weight: inherit;
}

/*# sourceMappingURL=styles.css.map */
