@font-face {
  font-family: Cupra;
  font-display: swap;
  src: url("./fonts/cupra/Cupra-Book.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Cupra;
  font-display: swap;
  src: url("./fonts/cupra/Cupra-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Cupra;
  font-display: swap;
  src: url("./fonts/cupra/Cupra-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Cupra;
  font-display: swap;
  src: url("./fonts/cupra/Cupra-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

:root {
  --cupra-bg: #1b1b1b;
  --cupra-hero-bg: #282828;
  --cupra-fg: #ffffff;
  --cupra-muted: #a3a3a3;
  --outer-max: 1440px;
  --content-max: 1232px;
  --gutter: clamp(16px, 6vw, 80px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--cupra-bg);
  color: var(--cupra-fg);
  font-family: Cupra, Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  width: 100%;
  max-width: var(--outer-max);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 34px;
}

.site-header .logo {
  display: inline-flex;
  color: var(--cupra-fg);
}

.site-header .logo svg {
  width: 143px;
  height: 22px;
  display: block;
}

.hero {
  width: 100%;
  max-width: var(--outer-max);
  margin: 0 auto 16px;
  background: var(--cupra-hero-bg);
  display: flex;
  align-items: center;
  min-height: 160px;
}

.hero .content {
  width: 100%;
}

.hero h1 {
  margin: 0;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cupra-fg);
}

main {
  flex: 1;
  width: 100%;
  max-width: var(--outer-max);
  margin: 0 auto;
}

.content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.calculator {
  background: #ffffff;
}

#PON_OTM {
  display: block;
  width: 100%;
  border: 0;
  min-height: 600px;
}

.site-footer {
  width: 100%;
  max-width: var(--outer-max);
  margin: 0 auto;
  padding: 32px var(--gutter);
  text-align: center;
  font-size: 14px;
  color: var(--cupra-fg);
}

.site-footer ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.site-footer li {
  position: relative;
  padding: 4px 16px;
}

.site-footer li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.35);
}

.site-footer a {
  color: var(--cupra-muted);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .copyright {
  margin: 28px 0 0;
  color: var(--cupra-muted);
}

@media (max-width: 768px) {
  .site-footer ul {
    flex-direction: column;
  }

  .site-footer li + li::before {
    display: none;
  }
}
