@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope Pier 5 Display";
  src: url("assets/fonts/ManropePier5-Display.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f1f1e4;
  --ink: #111111;
  --line: rgba(17, 17, 17, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  overflow: hidden;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.3);
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.panel-title {
  margin: 8px 0 14px;
  font-size: 28px;
  line-height: 1;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.field-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  font-size: 17px;
  background: #f8f8ef;
}

.button {
  margin-top: 14px;
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.status {
  margin: 10px 0 0;
  font-size: 13px;
}

.card-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.card {
  position: relative;
  width: 100%;
  aspect-ratio: 4022 / 2272;
  overflow: hidden;
  background: var(--bg);
}

.bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
}

.stripes {
  position: absolute;
  left: 0;
  top: 11.09%;
  width: 8.3%;
  height: 4.7%;
  object-fit: contain;
}

.hero {
  position: absolute;
  left: 54.97%;
  top: 5.19%;
  width: 41.74%;
  height: 89.58%;
  border-radius: 14%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-container {
  position: absolute;
  left: 69.72%;
  top: 38.82%;
  width: 14.92%;
  aspect-ratio: 1;
  border-radius: 26.33%;
  background: var(--bg);
}

.logo {
  position: absolute;
  left: 73.79%;
  top: 44.06%;
  width: 6.76%;
  height: 15.89%;
  object-fit: contain;
}

.title {
  position: absolute;
  left: 9.92%;
  top: 27.46%;
  width: 41.15%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--scale, 1) * 18px);
  font-family: "Manrope Pier 5 Display", "Manrope", sans-serif;
  font-weight: 400;
  font-size: calc(var(--scale, 1) * 155px);
  line-height: 0.95;
  text-transform: uppercase;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.body {
  position: absolute;
  left: 9.92%;
  top: 51.54%;
  width: 40.65%;
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: calc(var(--scale, 1) * 95px);
  line-height: calc(var(--scale, 1) * 110px);
  font-weight: 400;
  letter-spacing: -0.01em;
}

@media (max-width: 960px) {
  .layout {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .card-wrap {
    width: 100%;
  }

  .card-frame {
    width: 100%;
  }
}

.card-frame {
  width: min(100%, calc((100vh - 52px) * (4022 / 2272)));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

.card {
  border-radius: 12px;
}
