@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #0c1513;
  --text: #f5f5ed;
  --muted: #aab9b1;
  --accent: #ff6393;
  --border: #2d3b35;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}
* {
  box-sizing: border-box;
}
html {
  background: var(--bg);
}
body {
  margin: 0;
  color: var(--text);
  font:
    400 16px/1.65 "DM Sans",
    sans-serif;
  background:
    radial-gradient(ellipse at 79% 40%, #1a3026 0, transparent 47%), var(--bg);
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
svg {
  display: block;
  flex-shrink: 0;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 6px;
}
.skip-link {
  position: absolute;
  top: 10px;
  left: 16px;
  z-index: 10;
  background: var(--text);
  color: var(--bg);
  padding: 10px 18px;
  transform: translateY(-150%);
  border-radius: 4px;
}
.skip-link:focus {
  transform: translateY(0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}
.page-shell {
  max-width: 1440px;
  min-height: 100svh;
  margin: auto;
  padding: 0 clamp(24px, 5.5vw, 80px);
  display: flex;
  flex-direction: column;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 122px;
  border-bottom: 1px solid var(--border);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  text-decoration: none;
  min-height: 48px;
}
.brand-shapes {
  width: 76px;
  color: var(--accent);
}
.brand-text {
  font:
    800 28px/1 Manrope,
    sans-serif;
  letter-spacing: -1.3px;
}
.brand-text span {
  display: block;
  font:
    500 9px/1.5 "DM Sans",
    sans-serif;
  letter-spacing: 0.6px;
  margin-top: 7px;
  text-transform: uppercase;
}
.construction {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c1cdc5;
  font-size: 13px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px #ff639312;
  flex-shrink: 0;
}
.main {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  align-items: center;
  gap: 35px;
  padding: 68px 0 80px;
  flex: 1;
}
.main:focus {
  outline: none;
}
.intro {
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: #bccbc1;
}
.line {
  width: 29px;
  height: 1px;
  background: var(--accent);
}
h1 {
  font:
    800 clamp(52px, 6.3vw, 88px)/1.07 Manrope,
    sans-serif;
  letter-spacing: -0.065em;
  margin: 0;
}
h1 span {
  color: var(--accent);
}
.description {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin: 27px 0 32px;
}
.launch-date {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 0 32px;
}
.date-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 58px;
  border: 1px solid #46574b;
  border-top: 3px solid var(--accent);
  border-radius: 4px;
  font:
    700 25px Manrope,
    sans-serif;
  background: #ffffff04;
}
.date-label {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 10px;
  margin-bottom: 5px;
  font-weight: 600;
}
time {
  font-size: 16px;
  font-weight: 600;
}
.community-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--accent);
  color: #220b14;
  font-weight: 700;
  padding: 15px 22px;
  min-height: 54px;
  border-radius: 5px;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    transform 140ms var(--ease-out);
}
.community-link svg {
  width: 20px;
  height: 20px;
}
.community-link:active {
  transform: scale(0.98);
}
.small-note {
  font-size: 13px;
  margin: 13px 0 0;
  color: var(--muted);
}
.scene {
  position: relative;
  isolation: isolate;
  height: 520px;
  min-width: 0;
}
.scene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#7894800b 1px, transparent 1px),
    linear-gradient(90deg, #7894800b 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse, black 15%, transparent 68%);
}
.frame {
  position: absolute;
  width: 68%;
  height: 95%;
  left: 16%;
  top: 0;
  border: 1px solid #34463a;
  border-radius: 190px 190px 2px 2px;
  box-shadow: inset 0 0 32px #00000030;
}
.frame-two {
  width: 59%;
  height: 86%;
  left: 20.5%;
  top: 4.5%;
  border-color: #3c5141;
}
.frame-three {
  width: 49%;
  height: 77%;
  left: 25.5%;
  top: 9%;
  border-color: #4e5b48;
}
.door {
  position: absolute;
  width: 40%;
  height: 67%;
  left: 30%;
  top: 14%;
  border: 1px solid #796152;
  border-radius: 130px 130px 0 0;
  background: linear-gradient(
    90deg,
    #38262a,
    #3f2830 47%,
    #7b3b4a 50%,
    #3c2630 52%,
    #302525
  );
  box-shadow: 0 0 58px #ff578515;
}
.door-seam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #ff87a0;
  opacity: 0.7;
  box-shadow: 0 0 15px 2px #ff638371;
}
.door-number {
  position: absolute;
  width: 100%;
  top: 58px;
  text-align: center;
  letter-spacing: 6px;
  font:
    400 14px "DM Sans",
    sans-serif;
  color: #e9b5ae;
}
.invitation {
  position: absolute;
  left: 9%;
  top: 34%;
  width: 86%;
  max-width: 440px;
  border-radius: 6px;
  color: #263327;
  background:
    radial-gradient(ellipse at 0 0, #f8edcb, transparent 70%), #dccba7;
  padding: 24px 30px;
  transform: rotate(-9deg);
  box-shadow:
    0 35px 65px #00000066,
    0 2px 1px #fff5 inset,
    0 -1px 0 #0003 inset;
}
.ticket-top,
.ticket-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font:
    600 10px/1.5 "DM Sans",
    sans-serif;
  letter-spacing: 2px;
}
.ticket-shapes {
  width: 75%;
  height: auto;
  margin: 27px auto 24px;
}
.ticket-title {
  font:
    800 clamp(24px, 2.8vw, 39px)/1.2 Manrope,
    sans-serif;
  letter-spacing: -1.8px;
  text-align: center;
}
.invitation p {
  text-align: center;
  font-size: 12px;
  margin: 8px 0 22px;
  color: #48533e;
}
.ticket-bottom {
  border-top: 1px solid #918668;
  padding-top: 15px;
}
.barcode {
  width: 90px;
  height: 22px;
  opacity: 0.65;
  background: repeating-linear-gradient(
    90deg,
    #263327 0 1px,
    transparent 1px 4px,
    #263327 4px 6px,
    transparent 6px 7px,
    #263327 7px 8px,
    transparent 8px 11px
  );
}
.scene-coordinate {
  position: absolute;
  top: 56px;
  right: 0;
  color: #829d89;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 3px;
}
.footer {
  padding: 28px 0 30px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.footer p {
  margin: 0;
  font-size: 15px;
}
.footer .legal {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 7px;
}
.footer a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  color: #bdcdc2;
  font-size: 14px;
  text-decoration: none;
}
.footer svg {
  width: 14px;
  height: 14px;
}
@media (hover: hover) and (pointer: fine) {
  .community-link:hover {
    background: #ff85ab;
    transform: translateY(-2px);
  }
  .footer a:hover {
    color: var(--text);
    text-decoration: underline;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .intro {
    animation: appear 700ms var(--ease-out) both;
  }
  .scene {
    animation: arrive 1100ms var(--ease-out) 80ms both;
  }
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .community-link {
    transition: background-color 180ms ease;
  }
  .community-link:hover,
  .community-link:active {
    transform: none;
  }
}
@media (min-width: 1600px) {
  .main {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}
@media (max-width: 1000px) {
  .page-shell {
    padding: 0 32px;
  }
  .brand-text span {
    font-size: 8px;
  }
  .main {
    gap: 15px;
    padding: 60px 0;
  }
  .scene {
    height: 440px;
  }
  .invitation {
    padding: 20px 23px;
    top: 33%;
  }
  .ticket-shapes {
    margin: 22px auto;
  }
  .ticket-top,
  .ticket-bottom {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .description {
    font-size: 16px;
  }
}
@media (max-width: 740px) {
  .header {
    min-height: 105px;
    gap: 16px;
    flex-wrap: wrap;
    padding: 25px 0;
  }
  .construction {
    font-size: 12px;
  }
  .brand-shapes {
    width: 62px;
  }
  .brand-text {
    font-size: 25px;
  }
  .main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 44px;
  }
  .intro {
    text-align: center;
  }
  .eyebrow,
  .launch-date {
    justify-content: center;
  }
  h1 {
    font-size: clamp(49px, 10vw, 74px);
  }
  .description {
    margin: 23px auto 29px;
  }
  .launch-date {
    text-align: left;
  }
  .scene {
    width: min(100%, 450px);
    height: 430px;
    margin: 0 auto;
  }
  .ticket-title {
    font-size: 32px;
  }
  .ticket-shapes {
    width: 65%;
    margin: 23px auto;
  }
  .invitation {
    padding: 23px 28px;
  }
  .ticket-top,
  .ticket-bottom {
    font-size: 9px;
  }
  .scene-coordinate {
    right: 8px;
  }
  .footer {
    padding-top: 23px;
  }
}
@media (max-width: 430px) {
  .page-shell {
    padding: 0 23px;
  }
  .header {
    justify-content: center;
  }
  .brand-text span {
    font-size: 8px;
  }
  .header .construction {
    width: 100%;
    justify-content: center;
  }
  .main {
    padding-top: 37px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.6px;
    gap: 8px;
  }
  .line {
    width: 20px;
  }
  .description {
    font-size: 15px;
  }
  time {
    font-size: 14px;
  }
  .launch-date {
    gap: 12px;
  }
  .date-mark {
    width: 47px;
    height: 52px;
    font-size: 23px;
  }
  .scene {
    height: 370px;
  }
  .invitation {
    top: 30%;
    padding: 20px;
  }
  .ticket-shapes {
    margin: 20px auto;
  }
  .ticket-title {
    font-size: 28px;
  }
  .invitation p {
    font-size: 10px;
    margin-bottom: 17px;
  }
  .ticket-top,
  .ticket-bottom {
    font-size: 8px;
  }
  .barcode {
    width: 66px;
    height: 17px;
  }
  .scene-coordinate {
    display: none;
  }
  .footer {
    display: block;
    text-align: center;
  }
  .footer a {
    margin-top: 12px;
  }
}
@media (forced-colors: active) {
  .community-link,
  .date-mark,
  .construction {
    border: 1px solid ButtonText;
  }
  .scene {
    display: none;
  }
  .main {
    grid-template-columns: 1fr;
  }
}
