/* src/css/base/reset.css */
*,
*::after,
*::before {
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a {
  color: currentColor;
  text-decoration: none;
}
audio,
canvas,
embed,
figure,
iframe,
img,
object,
svg,
video {
  display: block;
}
body {
  overflow-x: hidden;
}
button {
  font: inherit;
  background: none;
  color: currentColor;
  cursor: pointer;
  line-height: inherit;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
html {
  font-family: var(--font-sans);
  line-height: var(--leading-normal);
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  transform-style: preserve-3d;
}
input,
textarea {
  font: inherit;
}
ol,
ul {
  list-style: none;
}
strong,
b {
  font-weight: var(--font-bold);
}
summary {
  cursor: pointer;
}
summary:focus {
  outline: 0;
}
summary:focus-visible {
  outline: solid;
  outline: 5px auto -webkit-focus-ring-color;
}
table {
  font-variant-numeric: tabular-nums;
  border-spacing: 0;
  width: 100%;
}
th,
td {
  text-align: left;
  vertical-align: top;
}
mark {
  background: var(--color-yellow-300);
}

/* src/css/base/colors.css */
:root {
  --color-background: #222427;
  --color-text: #FFFFFF;
  --color-text-light: #CDCED0;
  --color-text-dark: #A7A7A9;
  --color-border: #343639;
  --color-primary: #C7FF61;
  --color-on-primary: #222427;
  --color-primary-hover: #91CA3C;
  --color-error: #FF6161;
  --color-input-background: #2A2B30;
}

/* src/css/base/base.css */
.evt-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.evt-banner {
  padding: 1rem 0;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  a {
    color: var(--color-primary);
    &:hover {
      color: var(--color-primary-hover);
    }
  }
}

/* src/css/base/breakpoints.css */

/* src/css/base/fonts.css */
@font-face {
  font-family: "TTHoves";
  src: url(../fonts/TTHovesBold/font.woff2) format("woff2"), url(../fonts/TTHovesBold/font.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "TTHoves";
  src: url(../fonts/TTHovesRegular/font.woff2) format("woff2"), url(../fonts/TTHovesRegular/font.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "TTRationalist";
  src: url(../fonts/TTRationalistRegular/font.woff2) format("woff2"), url(../fonts/TTRationalistRegular/font.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "TTRationalist";
  src: url(../fonts/TTRationalistItalic/font.woff2) format("woff2"), url(../fonts/TTRationalistItalic/font.woff) format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "TTRationalist";
  src: url(../fonts/TTRationalistMedium/font.woff2) format("woff2"), url(../fonts/TTRationalistMedium/font.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}

/* src/css/base/typo.css */
:root {
  --font-sans: "TTHoves", sans-serif;
  --font-serif: "TTRationalist", serif;
}
html {
  font-size: 20px;
}
body {
  font-family: var(--font-serif);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  text-wrap: balance;
  text-wrap: pretty;
}
h1 {
  font-size: 2.4rem;
}
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.2rem;
}
p {
  line-height: 1.6;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  color: var(--color-text-light);
  @media screen and (min-width: 576px) {
    margin-bottom: 1.5rem;
  }
  @media screen and (min-width: 768px) {
    margin-bottom: 2rem;
  }
}
strong {
  font-weight: 400;
  color: var(--color-primary);
}
ul {
  list-style: disc;
  li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
  }
}

/* src/css/components/landing-section.css */
.evt-landing-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
  @media screen and (min-width: 576px) {
    margin-bottom: 32px;
  }
  @media screen and (min-width: 768px) {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1.25rem;
    margin-bottom: 48px;
  }
  @media screen and (min-width: 992px) {
    margin-bottom: 72px;
  }
  h2 {
    @media screen and (min-width: 768px) {
      grid-column: span 3;
    }
    @media screen and (min-width: 992px) {
      grid-column: span 3;
    }
  }
  ul {
    margin-left: 1rem;
    @media screen and (min-width: 768px) {
      margin-left: 0;
    }
  }
  .evt-landing-section-content__content {
    @media screen and (min-width: 768px) {
      grid-column: 5 / span 5;
    }
  }
  a {
    text-decoration: underline;
    color: var(--color-primary);
    &:hover {
      color: var(--color-primary-hover);
    }
  }
}

/* src/css/components/landing-highlight.css */
.evt-landing-section--highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 48px 0 96px;
  @media screen and (min-width: 576px) {
    gap: 1.5rem;
  }
  @media screen and (min-width: 768px) {
    gap: 2rem;
    padding: 48px 0 96px;
  }
  @media screen and (min-width: 992px) {
    gap: 3rem;
    padding: 64px 0 120px;
  }
  @media screen and (min-width: 1200px) {
    padding: 72px 0 144px;
  }
  span {
    opacity: 0.8;
  }
  .large {
    opacity: 1;
    font-size: 2rem;
    font-weight: 500;
    strong {
      font-weight: 500;
    }
  }
}

/* src/css/components/landing-hero.css */
.evt-hero {
  display: flex;
  flex-direction: column;
  padding: 32px 0 48px;
  @media screen and (min-width: 768px) {
    padding: 48px 0 72px;
    h1 {
      max-width: 60%;
    }
    p {
      max-width: 60%;
      font-size: 1.2rem;
    }
  }
  @media screen and (min-width: 992px) {
    padding: 168px 0 168px;
  }
  h1 {
    display: flex;
    flex-direction: column;
  }
  .evt-title {
    color: var(--color-primary);
  }
}

/* src/css/components/landing-theses.css */
.evt-theses {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 3rem;
  @media screen and (min-width: 768px) {
    padding-bottom: 6rem;
  }
}
.evt-theses-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  @media screen and (min-width: 768px) {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1.5rem;
    row-gap: 2rem;
  }
  .evt-thesis {
    display: flex;
    flex-direction: column;
    h2 span {
      color: var(--color-primary);
      padding-right: 0.5rem;
    }
    @media screen and (min-width: 768px) {
      grid-column: span 4;
    }
    &:nth-of-type(even) {
      @media screen and (min-width: 768px) {
        grid-column: 6 / span 4;
      }
    }
  }
  .evt-thesis--full {
    grid-column: span 2;
    @media screen and (min-width: 768px) {
      padding-top: 3rem;
      grid-column: span 9;
    }
  }
}

/* src/css/components/formula.css */
.evt-landing-section {
  .evt-formula {
    list-style: none;
    margin-left: 1rem;
    @media screen and (min-width: 768px) {
      margin-left: -0.75rem;
    }
    li {
      padding-left: 0.75rem;
    }
    .multiplier {
      list-style: "\d7";
      opacity: 0.8;
      span {
        opacity: 1;
      }
    }
    .result {
      list-style: "\2192";
      color: var(--color-primary);
    }
  }
  .evt-formula-pre-formula {
    margin-bottom: 0.5rem;
  }
}

/* src/css/components/footer.css */
footer {
  width: 100%;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--color-text-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
  margin-top: 2rem;
  a {
    &:hover {
      color: var(--color-primary);
    }
  }
  @media screen and (min-width: 768px) {
    padding: 3rem 0;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  nav {
    ul {
      list-style: none;
      display: flex;
      gap: 0.5rem;
    }
  }
}

/* src/css/components/contact.css */
.evt-actions {
  margin-top: 1.25rem;
}
.evt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font: inherit;
  font-size: 0.875rem;
  color: var(--color-on-primary);
  background-color: var(--color-primary);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.15s ease;
  width: fit-content;
}
.evt-button:hover {
  background-color: var(--color-primary-hover);
}
.evt-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
#contact-dialog {
  max-width: min(32rem, calc(100vw - 2rem));
  padding: 1.5rem;
  margin: auto;
  color: var(--color-text);
  background-color: var(--color-background);
  box-shadow: 0 16px 48px rgb(0 0 0 / 0.45);
  &:focus-visible {
    outline: 1px solid var(--color-primary);
    outline-offset: 2px;
  }
}
#contact-dialog::backdrop {
  background: rgb(0 0 0 / 0.55);
}
#contact-dialog h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}
#contact-dialog > p {
  margin: 0 0 1rem;
  color: var(--color-text-light);
  font-size: 0.9375rem;
}
#contact-dialog .field {
  margin-bottom: 1.25rem;
}
#contact-dialog .field--required label::after {
  content: "*";
  color: var(--color-primary);
  margin-left: 0.25rem;
}
#contact-dialog .field.field--checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
  label {
    font-size: 0.75rem;
    line-height: 1.3;
    color: var(--color-text-dark);
    a {
      color: var(--color-primary);
      &:hover {
        color: var(--color-primary-hover);
      }
    }
  }
  input {
    display: inline-block;
    margin: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    &:checked {
      background-color: var(--color-primary);
    }
    &:focus-visible {
      outline: 2px solid var(--color-primary);
      outline-offset: 1px;
    }
  }
}
#contact-dialog .field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}
#contact-dialog .field input,
#contact-dialog .field textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 0.5rem 0.65rem;
  font: inherit;
  color: var(--color-text);
  background-color: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}
#contact-dialog .field input:focus-visible,
#contact-dialog .field textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
#contact-dialog .field textarea {
  resize: vertical;
  min-height: 6rem;
}
#contact-dialog .evt-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
#contact-dialog button[type=button].evt-button--ghost {
  background-color: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
}
#contact-dialog button[type=button].evt-button--ghost:hover {
  color: var(--color-text);
  border-color: var(--color-text-dark);
}
.evt-contact-status {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--color-text-light);
}
.evt-contact-status--error {
  color: #f5a8a8;
}
.evt-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.evt-success-message {
  padding-top: 1.25rem;
  h2 {
    color: var(--color-primary);
  }
}

/* src/css/templates/article-page.css */
.evt-article-page {
  article {
    padding: 24px 0;
    @media screen and (min-width: 768px) {
      padding: 48px 0;
    }
    @media screen and (min-width: 992px) {
      padding: 72px 0;
    }
    h1 {
      margin-bottom: 2rem;
    }
    p {
      max-width: 720px;
      color: var(--color-text-light);
    }
    .intro {
      font-size: 1.25rem;
      color: var(--color-text);
    }
  }
  .evt-article-contact {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
  }
}

/* src/css/templates/landing-page.css */
.evt-landing-page {
  .evt-calc,
  .evt-text-section {
    padding-bottom: 3rem;
    @media screen and (min-width: 768px) {
      padding-bottom: 6rem;
    }
  }
  #evt-calculator {
    scroll-margin-top: 3rem;
  }
}

/* src/css/templates/legal-page.css */
.evt-legal-page {
  article {
    padding: 48px 0;
    ul {
      margin-bottom: 1.5rem;
      margin-left: 1rem;
    }
  }
}

/* src/css/index.css */
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--color-background);
  color: var(--color-text);
}
::selection {
  background-color: #434547;
}
