:root {
  color-scheme: dark;
  --ink: #08090b;
  --ink-soft: #101217;
  --paper: #f0ece3;
  --paper-soft: #c9c4ba;
  --muted: #8b8b8a;
  --line: rgba(240, 236, 227, 0.14);
  --red: #9d1d2e;
  --red-bright: #d53045;
  --red-dark: #4b101a;
  --gold: #b4945f;
  --max: 1380px;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 18%, rgba(157, 29, 46, 0.12), transparent 27rem),
    linear-gradient(180deg, #090a0d 0%, #07080a 100%);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  min-height: 84px;
  padding: 0 clamp(24px, 4vw, 72px);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease, min-height 240ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: var(--line);
  background: rgba(7, 8, 10, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
  width: max-content;
}

.brand img {
  width: 39px;
  height: 39px;
}

.brand span {
  display: grid;
  line-height: 0.86;
}

.brand strong,
.brand small {
  font-family: var(--display);
  letter-spacing: 0.17em;
}

.brand strong {
  font-size: 21px;
  font-weight: 800;
}

.brand small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 52px);
}

.main-nav a,
.quiet-link {
  position: relative;
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav a::after,
.quiet-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--red-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.quiet-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 25px;
}

.store-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(13, 14, 17, 0.65);
}

.store-pill span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-pill strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 5px rgba(213, 48, 69, 0.1);
}

.store-pill.is-ready i {
  background: #63d39d;
  box-shadow: 0 0 0 5px rgba(99, 211, 157, 0.1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  min-height: min(940px, 100svh);
  padding: 150px max(5vw, calc((100vw - var(--max)) / 2)) 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98) 0%, rgba(7, 8, 10, 0.89) 43%, rgba(7, 8, 10, 0.62) 100%),
    linear-gradient(0deg, #08090b 0%, transparent 26%),
    url("../images/vinland-atmosphere.png") center 35% / cover no-repeat;
  filter: saturate(0.66) contrast(1.08);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(240, 236, 227, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 236, 227, 0.08) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 9vw;
  z-index: -1;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(240, 236, 227, 0.25), transparent);
}

.hero-copy {
  z-index: 2;
  max-width: 810px;
  padding-right: 5vw;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 850px;
  margin: 27px 0 22px;
  font-family: var(--display);
  font-size: clamp(68px, 7.7vw, 132px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.79;
  text-transform: uppercase;
}

.hero h1 em {
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 236, 227, 0.72);
  font-style: italic;
  font-weight: 800;
}

.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--paper-soft);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
}

.primary-button,
.outline-button,
.ivory-button,
.buy-button,
.watch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 55px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.primary-button {
  border-color: var(--red-bright);
  color: #fff;
  background: var(--red);
  box-shadow: 8px 8px 0 rgba(75, 16, 26, 0.46);
}

.primary-button:hover,
.ivory-button:hover,
.buy-button:hover:not(.is-disabled) {
  transform: translate(-2px, -2px);
}

.outline-button,
.watch-button {
  border-color: var(--line);
  background: rgba(10, 11, 13, 0.48);
}

.outline-button:hover,
.watch-button:hover {
  border-color: rgba(240, 236, 227, 0.4);
  background: rgba(240, 236, 227, 0.06);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin-top: 47px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-meta b {
  margin-right: 7px;
  color: var(--red-bright);
}

.hero-art {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.art-panel {
  position: relative;
  width: min(43vw, 650px);
  aspect-ratio: 0.83;
  overflow: hidden;
  border: 1px solid rgba(240, 236, 227, 0.21);
  background:
    radial-gradient(circle at 68% 32%, rgba(213, 48, 69, 0.26), transparent 32%),
    linear-gradient(155deg, rgba(34, 36, 43, 0.92), rgba(7, 8, 10, 0.94));
  box-shadow: -38px 38px 0 rgba(157, 29, 46, 0.17);
  transform: rotate(2deg);
}

.art-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(240, 236, 227, 0.12);
}

.art-panel img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 117%;
  max-width: none;
  transform: translate(-50%, -46%) rotate(-2deg);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.54));
}

.art-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 7px, rgba(240, 236, 227, 0.025) 8px 9px);
}

.art-index {
  position: absolute;
  top: calc(50% - 310px);
  right: 0;
  z-index: 4;
  display: grid;
  justify-items: end;
  gap: 5px;
  font-family: var(--display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.art-index span {
  color: var(--red-bright);
  font-size: 11px;
}

.art-index b {
  font-size: 12px;
}

.scroll-cue {
  position: absolute;
  left: max(5vw, calc((100vw - var(--max)) / 2));
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.scroll-cue span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--red-bright);
  animation: pulse-line 1.8s ease-in-out infinite;
}

.manifesto,
.release,
.process,
.faq,
.contact-card,
.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(260px, 0.72fr) minmax(380px, 1.25fr);
  gap: clamp(30px, 5vw, 85px);
  align-items: start;
  padding: 145px 0 150px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-code {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--paper-soft);
  font-family: var(--display);
  letter-spacing: 0.16em;
}

.section-code span {
  color: var(--red-bright);
  font-size: 12px;
}

.section-code b {
  font-size: 11px;
}

.manifesto p {
  margin: 0;
  color: var(--paper-soft);
  font-size: 15px;
  line-height: 1.9;
}

.manifesto h2,
.release-heading h2,
.faq-intro h2,
.contact-card h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.89;
  text-transform: uppercase;
}

.manifesto h2 {
  font-size: clamp(54px, 6vw, 92px);
  text-align: right;
}

.release {
  padding: 135px 0;
}

.release-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.release-heading h2 {
  margin-top: 12px;
  font-size: clamp(70px, 8vw, 124px);
}

.release-heading > p {
  margin: 0 0 10px;
  padding-left: 24px;
  border-left: 1px solid var(--red-bright);
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.8;
}

.product-sheet {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  min-height: 640px;
  border: 1px solid var(--line);
  background: #0d0f12;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.product-visual {
  min-width: 0;
  padding: 14px;
  border-right: 1px solid var(--line);
}

.video-poster {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 610px;
  padding: 0;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  background: #111318;
}

.video-poster > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.1);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 400ms ease;
}

.video-poster:hover > img {
  transform: scale(1.035);
  filter: saturate(0.8) contrast(1.08);
}

.video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.04), rgba(7, 8, 10, 0.88)),
    linear-gradient(90deg, rgba(157, 29, 46, 0.13), transparent 58%);
}

.play-mark {
  position: absolute;
  left: 42px;
  bottom: 40px;
  display: grid;
  grid-template-columns: 57px auto;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  text-align: left;
}

.play-mark i {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 57px;
  height: 57px;
  border: 1px solid rgba(240, 236, 227, 0.58);
  background: rgba(7, 8, 10, 0.38);
  font-style: normal;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.video-poster:hover .play-mark i {
  border-color: var(--red-bright);
  background: var(--red);
}

.play-mark b {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.play-mark small {
  margin-top: 4px;
  color: var(--paper-soft);
  font-size: 11px;
}

.poster-code {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 9px 10px;
  border: 1px solid rgba(240, 236, 227, 0.24);
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.15em;
  background: rgba(7, 8, 10, 0.48);
}

.product-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 4.5vw, 68px);
}

.product-topline,
.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-topline span {
  color: var(--red-bright);
}

.product-copy h3 {
  margin: 28px 0 18px;
  font-family: var(--display);
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
  text-transform: uppercase;
}

.product-copy > p {
  margin: 0;
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.8;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 27px;
}

.badge-row span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 15px 10px 15px 21px;
  border-bottom: 1px solid var(--line);
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.feature-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 5px;
  width: 6px;
  height: 2px;
  background: var(--red-bright);
}

.release-status {
  margin-top: auto;
  padding: 24px 0 20px;
}

.release-status > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.release-status > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
}

.release-status strong {
  display: block;
  margin: 10px 0 6px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.release-status p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.product-actions {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 8px;
}

.buy-button {
  justify-content: space-between;
  border-color: var(--red-bright);
  background: var(--red);
}

.buy-button.is-disabled {
  cursor: not-allowed;
  border-color: var(--line);
  color: #777;
  background: #14161a;
}

.buy-button.is-loading {
  cursor: wait;
  pointer-events: none;
}

.buy-button.is-loading i {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  font-size: 0;
  animation: checkout-spin 650ms linear infinite;
}

@keyframes checkout-spin {
  to { transform: rotate(360deg); }
}

.watch-button {
  color: var(--paper-soft);
}

.price-line {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.price-line strong {
  color: var(--paper);
  font-size: 13px;
}

.process {
  padding: 120px 0 145px;
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid article {
  min-height: 260px;
  padding: 42px 38px;
}

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

.process-grid span {
  display: block;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.process-grid h3 {
  margin: 40px 0 12px;
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(48px, 8vw, 140px);
  padding: 120px 0 140px;
}

.faq-intro h2 {
  margin-top: 20px;
  font-size: clamp(60px, 7vw, 96px);
}

.faq-intro p {
  max-width: 420px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  min-height: 84px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 11px;
}

.faq-list summary b {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.faq-list summary i {
  color: var(--muted);
  font-style: normal;
  font-size: 20px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -4px 35px 28px 38px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: clamp(48px, 7vw, 96px);
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(157, 29, 46, 0.96), rgba(82, 13, 25, 0.96)),
    url("../images/vinland-atmosphere.png") center / cover;
}

.contact-card::after {
  content: "VINLAND";
  position: absolute;
  right: -20px;
  bottom: -58px;
  color: rgba(240, 236, 227, 0.055);
  font-family: var(--display);
  font-size: clamp(110px, 18vw, 250px);
  font-weight: 900;
  line-height: 0.8;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card .kicker {
  color: rgba(240, 236, 227, 0.64);
}

.contact-card h2 {
  margin-top: 18px;
  font-size: clamp(60px, 7vw, 96px);
}

.contact-card p {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(240, 236, 227, 0.76);
  font-size: 13px;
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ivory-button {
  min-width: 160px;
  color: #101114;
  background: var(--paper);
}

.text-link {
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.text-link.is-disabled {
  cursor: default;
  opacity: 0.56;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 78px 0 45px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 42px;
}

.footer-brand div {
  display: grid;
  gap: 5px;
}

.footer-brand strong,
.footer-brand span,
.footer-links,
.footer-end {
  font-family: var(--display);
  text-transform: uppercase;
}

.footer-brand strong {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.footer-brand span,
.footer-end {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.footer-links {
  display: flex;
  gap: 28px;
  color: var(--paper-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-links a:hover {
  color: var(--red-bright);
}

.footer-end {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 220ms ease, opacity 220ms ease;
}

.video-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 5, 7, 0.78);
  backdrop-filter: blur(12px);
}

.video-dialog {
  position: relative;
  width: min(1080px, 96vw);
  border: 1px solid rgba(240, 236, 227, 0.2);
  background: #0b0c0f;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.68);
  transform: translateY(15px) scale(0.985);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-modal.is-open .video-dialog {
  transform: translateY(0) scale(1);
}

.video-dialog-head,
.video-dialog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.video-dialog-head {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.video-dialog-head button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  color: var(--paper);
  cursor: pointer;
  background: transparent;
  font-size: 20px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #050507;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-dialog-foot {
  border-top: 1px solid var(--line);
}

.video-dialog-foot a {
  color: var(--red-bright);
}

.release-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  grid-template-columns: 1fr 34px;
  width: min(390px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid rgba(213, 48, 69, 0.48);
  background: rgba(13, 14, 18, 0.96);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  animation: toast-in 240ms ease both;
}

.release-toast:not([hidden]) {
  display: grid;
}

.release-toast span,
.release-toast strong {
  grid-column: 1;
  font-family: var(--display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.release-toast span {
  color: var(--red-bright);
  font-size: 9px;
}

.release-toast strong {
  margin-top: 5px;
  font-size: 15px;
}

.release-toast button {
  grid-column: 2;
  grid-row: 1 / 3;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  font-size: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-line {
  0%, 100% { transform: scaleX(0.5); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
    justify-items: end;
    gap: 7px;
    width: 42px;
    height: 42px;
    padding: 13px 6px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 26px;
    height: 1px;
    background: var(--paper);
    transition: transform 180ms ease, width 180ms ease;
  }

  .menu-toggle span:last-child {
    width: 18px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    width: 24px;
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    width: 24px;
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
    visibility: hidden;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 8, 10, 0.97);
    opacity: 0;
    transform: translateY(-8px);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  }

  .art-panel {
    width: min(41vw, 480px);
  }

  .art-index {
    top: 16%;
  }

  .manifesto {
    grid-template-columns: 130px 1fr;
  }

  .manifesto h2 {
    grid-column: 1 / 3;
    margin-top: 15px;
    text-align: left;
  }

  .product-sheet {
    grid-template-columns: 1fr;
  }

  .product-visual {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .video-poster {
    min-height: 550px;
  }

  .product-copy {
    min-height: 570px;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 68px;
    padding-inline: 20px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 18px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 125px 24px 95px;
  }

  .hero-backdrop {
    background:
      linear-gradient(90deg, rgba(7, 8, 10, 0.97), rgba(7, 8, 10, 0.76)),
      linear-gradient(0deg, #08090b 0%, transparent 34%),
      url("../images/vinland-atmosphere.png") 58% center / cover no-repeat;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(61px, 19vw, 95px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .outline-button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
  }

  .hero-art {
    margin-top: 70px;
  }

  .art-panel {
    width: min(80vw, 460px);
  }

  .art-index {
    top: -22px;
    right: 0;
  }

  .scroll-cue {
    display: none;
  }

  .manifesto,
  .release,
  .process,
  .faq,
  .contact-card,
  .site-footer {
    width: min(calc(100% - 36px), var(--max));
  }

  .manifesto {
    display: block;
    padding: 90px 0;
  }

  .manifesto p {
    margin: 32px 0;
  }

  .manifesto h2 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .release {
    padding: 90px 0;
  }

  .release-heading {
    display: block;
    margin-bottom: 35px;
  }

  .release-heading h2 {
    font-size: clamp(64px, 20vw, 90px);
  }

  .release-heading > p {
    margin-top: 24px;
  }

  .product-sheet {
    min-height: 0;
  }

  .product-visual {
    padding: 8px;
  }

  .video-poster {
    min-height: 360px;
  }

  .play-mark {
    left: 22px;
    bottom: 24px;
  }

  .poster-code {
    top: 18px;
    right: 18px;
  }

  .product-copy {
    min-height: 0;
    padding: 32px 24px;
  }

  .product-copy h3 {
    font-size: 56px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list li:nth-child(odd) {
    border-right: 0;
  }

  .release-status {
    margin-top: 24px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .process {
    padding: 80px 0 90px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: 220px;
  }

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

  .faq {
    display: block;
    padding: 80px 0 100px;
  }

  .faq-list {
    margin-top: 50px;
  }

  .faq-list summary {
    grid-template-columns: 32px 1fr 20px;
  }

  .faq-list summary b {
    font-size: 16px;
  }

  .faq-list details p {
    margin-left: 32px;
  }

  .contact-card {
    display: block;
    padding: 54px 28px;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 35px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-end {
    justify-items: start;
  }

  .video-modal {
    padding: 12px;
  }

  .video-dialog-head,
  .video-dialog-foot {
    min-height: 48px;
  }

  .video-dialog-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 13px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 58px;
  }

  .eyebrow,
  .kicker {
    letter-spacing: 0.15em;
  }

  .art-panel {
    width: 82vw;
    box-shadow: -18px 18px 0 rgba(157, 29, 46, 0.17);
  }

  .video-poster {
    min-height: 300px;
  }

  .play-mark i {
    width: 48px;
    height: 48px;
  }

  .play-mark b {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.quiet-button {
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
}

.main-nav a.is-current {
  color: var(--paper);
}

.main-nav a.is-current::after {
  transform: scaleX(1);
}

.featured {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 118px 0 135px;
}

.featured-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.featured-heading > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.featured-star {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--ink);
  background: var(--paper);
  font-size: 25px;
  transform: rotate(-4deg);
}

.featured-heading h2 {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-transform: uppercase;
}

.featured-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--red-bright);
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.package-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0f12;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.package-card:hover {
  border-color: rgba(213, 48, 69, 0.55);
  box-shadow: 12px 12px 0 rgba(157, 29, 46, 0.16);
  transform: translateY(-4px);
}

.package-card[hidden] {
  display: none;
}

.package-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #13151a;
}

.package-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 8, 10, 0.82));
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.05);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 350ms ease;
}

.package-card:hover .package-image img {
  transform: scale(1.04);
  filter: saturate(0.9) contrast(1.05);
}

.featured-label,
.package-image-code {
  position: absolute;
  z-index: 2;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-label {
  top: 16px;
  right: 16px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--paper);
}

.package-image-code {
  left: 17px;
  bottom: 16px;
  color: var(--paper);
}

.package-body {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 22px;
}

.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 17px;
}

.package-tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.package-title {
  width: max-content;
  max-width: 100%;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.package-title:hover {
  color: var(--red-bright);
}

.package-body > p {
  display: -webkit-box;
  margin: 13px 0 22px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.package-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.package-footer strong {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.package-footer a {
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-page {
  min-height: 100vh;
  padding-top: 70px;
}

.catalog-hero {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98), rgba(7, 8, 10, 0.76)),
    url("../images/vinland-atmosphere.png") center 38% / cover no-repeat;
}

.catalog-hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding-top: 125px;
}

.catalog-hero h1 {
  margin: 20px 0 20px;
  font-family: var(--display);
  font-size: clamp(82px, 10vw, 144px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.76;
  text-transform: uppercase;
}

.catalog-hero h1 em {
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 236, 227, 0.7);
  font-style: italic;
}

.catalog-hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.8;
}

.catalog-hero-art {
  position: absolute;
  top: 40px;
  right: 7vw;
  width: min(44vw, 600px);
  opacity: 0.16;
  transform: rotate(4deg);
}

.catalog-shell {
  width: min(calc(100% - 48px), var(--max));
  min-height: 590px;
  margin: 0 auto;
  padding: 78px 0 120px;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 48px;
}

.catalog-search {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(240, 236, 227, 0.035);
}

.catalog-search span {
  color: var(--red-bright);
  font-size: 20px;
}

.catalog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--paper);
  background: transparent;
  font-size: 13px;
}

.catalog-search input::placeholder {
  color: #777;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.catalog-filters button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--paper-soft);
  cursor: pointer;
  background: rgba(240, 236, 227, 0.035);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-filters button:hover,
.catalog-filters button.is-active {
  border-color: var(--red-bright);
  color: var(--paper);
  background: rgba(157, 29, 46, 0.22);
}

.catalog-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.catalog-line span {
  color: var(--paper-soft);
}

.catalog-line b {
  color: var(--red-bright);
  text-transform: uppercase;
}

.catalog-results {
  align-items: start;
}

.catalog-empty {
  display: grid;
  place-items: center;
  min-height: 270px;
  border: 1px dashed var(--line);
  color: var(--muted);
  text-align: center;
}

.catalog-empty[hidden] {
  display: none;
}

.catalog-empty strong {
  font-family: var(--display);
  font-size: 25px;
  text-transform: uppercase;
}

.catalog-empty span {
  margin-top: -100px;
  font-size: 12px;
}

.catalog-note {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 45px;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 110px;
  padding: 52px;
  border: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(157, 29, 46, 0.18), rgba(13, 15, 18, 0.88));
}

.catalog-note > span,
.catalog-note > a {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.catalog-note h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 43px;
  line-height: 0.95;
  text-transform: uppercase;
}

.catalog-note p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.product-page {
  padding-top: 70px;
}

.product-page-intro {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 95px 0 54px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb a:hover,
.breadcrumb b {
  color: var(--paper);
}

.product-page-intro > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.product-page-intro .kicker {
  grid-column: 1 / 3;
}

.product-page-intro h1 {
  margin: 13px 0 0;
  font-family: var(--display);
  font-size: clamp(78px, 10vw, 142px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.78;
  text-transform: uppercase;
}

.product-page-intro p {
  max-width: 370px;
  margin: 0;
  padding-left: 20px;
  border-left: 1px solid var(--red-bright);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.product-release {
  padding-top: 30px;
}

.product-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 48px), var(--max));
  margin: -60px auto 130px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-notes > div {
  min-height: 240px;
  padding: 38px;
}

.product-notes > div + div {
  border-left: 1px solid var(--line);
}

.product-notes span {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.product-notes h2 {
  margin: 48px 0 11px;
  font-family: var(--display);
  font-size: 29px;
  line-height: 1;
  text-transform: uppercase;
}

.product-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.payment-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(157, 29, 46, 0.2), transparent 35rem),
    #07080a;
}

.payment-card {
  position: relative;
  width: min(100%, 680px);
  padding: clamp(34px, 6vw, 66px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(12, 13, 16, 0.94);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
}

.payment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 125px;
  height: 3px;
  background: var(--red-bright);
}

.payment-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
}

.payment-card .kicker {
  display: block;
  margin-bottom: 14px;
}

.payment-card h1 {
  max-width: 560px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 9vw, 82px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.payment-card p {
  max-width: 520px;
  margin: 25px 0 0;
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.75;
}

.payment-card .payment-note {
  margin-top: 30px;
  padding: 16px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(180, 148, 95, 0.08);
  color: var(--muted);
  font-size: 11px;
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.payment-actions a {
  min-width: 180px;
  justify-content: center;
}

@media (max-width: 980px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .catalog-filters {
    justify-content: flex-start;
  }

  .catalog-note {
    grid-template-columns: 1fr;
  }

  .product-page-intro > div {
    display: block;
  }

  .product-page-intro p {
    margin-top: 26px;
  }
}

@media (max-width: 680px) {
  .featured,
  .catalog-hero-copy,
  .catalog-shell,
  .catalog-note,
  .product-page-intro,
  .product-notes {
    width: min(calc(100% - 36px), var(--max));
  }

  .featured {
    padding: 85px 0 95px;
  }

  .featured-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-star {
    width: 45px;
    height: 45px;
  }

  .featured-heading h2 {
    font-size: 47px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero {
    min-height: 470px;
  }

  .catalog-hero-copy {
    padding-top: 105px;
  }

  .catalog-hero h1 {
    font-size: 84px;
  }

  .catalog-shell {
    padding: 58px 0 80px;
  }

  .catalog-filters button {
    flex: 1 1 calc(50% - 7px);
  }

  .catalog-note {
    margin-bottom: 80px;
    padding: 34px 26px;
  }

  .catalog-note h2 {
    font-size: 36px;
  }

  .product-page-intro {
    padding-top: 80px;
  }

  .breadcrumb {
    margin-bottom: 45px;
  }

  .product-page-intro h1 {
    font-size: 74px;
  }

  .product-notes {
    grid-template-columns: 1fr;
    margin-top: -25px;
    margin-bottom: 90px;
  }

  .product-notes > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
