@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #102630;
  --ink-soft: #52666d;
  --teal: #0f7078;
  --mist: #eef4f4;
  --line: #d5e1e2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #dfe8e8;
  color: var(--ink);
  font-family: "Geist", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.45;
}

.poster {
  width: 210mm;
  min-height: 297mm;
  margin: 20px auto;
  padding: 16mm 17mm 13mm;
  background: white;
  box-shadow: 0 12px 48px rgba(16, 38, 48, 0.15);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 9mm;
  border-bottom: 1px solid var(--line);
}

.poster-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.poster-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.poster-brand strong {
  font-size: 24px;
}

.poster-brand small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.poster-status {
  margin: 0;
  padding: 7px 10px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.poster-intro {
  padding: 11mm 0 8mm;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  max-width: 155mm;
  margin: 0;
  font-size: 35px;
  line-height: 1.08;
}

.poster-intro > p:last-child {
  max-width: 165mm;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.poster-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.poster-points article {
  display: flex;
  min-height: 44mm;
  gap: 10px;
  padding: 8mm 6mm;
}

.poster-points article + article {
  border-left: 1px solid var(--line);
}

.poster-points article > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.poster-points h2 {
  margin: 0 0 7px;
  font-size: 17px;
}

.poster-points p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.poster-qr {
  display: grid;
  grid-template-columns: 64mm 1fr;
  align-items: center;
  gap: 12mm;
  margin: 11mm 0 9mm;
  padding: 8mm;
  background: var(--mist);
}

.poster-qr img {
  width: 58mm;
  height: 58mm;
  background: white;
}

.poster-qr h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.poster-url {
  margin: 12px 0 0;
  color: var(--teal);
  font-size: 19px;
  font-weight: 700;
}

.poster-english {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 14mm;
  padding-top: 6mm;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
}

footer p {
  max-width: 80mm;
  margin: 0;
}

@page {
  size: A4;
  margin: 0;
}

@media print {
  body {
    background: white;
  }

  .poster {
    margin: 0;
    box-shadow: none;
  }
}

@media screen and (max-width: 820px) {
  .poster {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 28px 22px;
  }

  header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .poster-points,
  .poster-qr {
    grid-template-columns: 1fr;
  }

  .poster-points article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
