:root {
  --brand-red: #ee4023;
  --brand-red-dark: #c43218;
  --brand-cream: #fbf6ee;
  --brand-ink: #1c1a17;
  --brand-teal: #1d7a73;
  --brand-orange: #ee8c2b;
  --brand-yellow: #f5c518;
  --background: #fbf6ee;
  --foreground: #1c1a17;
  --card: #fff;
  --muted: #f1ebe1;
  --muted-foreground: #6b6560;
  --radius: 1.25rem;
  --max: 720px;
  --wide: 1180px;
  --dock-h: 76px;
  --hero-orange: #e85a24;
  --hero-bar: #0e2c2a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  background:
    radial-gradient(120% 70% at 50% -10%, #f3e2c8 0%, var(--background) 58%);
  color: var(--foreground);
  font-family: Archivo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(238, 64, 35, 0.14);
  overflow-x: clip;
}

body.dock-visible {
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px));
}

body::before {
  content: "";
  pointer-events: none;
  z-index: 0;
  position: fixed;
  inset: 0;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23c45a2a' stroke-width='0.75'%3E%3Cpath d='M36 8l3.6 20.4L60 32l-20.4 3.6L36 56l-3.6-20.4L12 32l20.4-3.6Z'/%3E%3Ccircle cx='36' cy='32' r='5.5'/%3E%3Cpath d='M0 0h72M0 72h72M0 0v72M72 0v72'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 72px;
}

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

a {
  color: inherit;
  touch-action: manipulation;
}

button {
  touch-action: manipulation;
}

.wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.wrap--wide {
  width: min(100%, var(--wide));
}


/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--brand-cream);
  border-bottom: 1px solid rgba(28, 26, 23, 0.08);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding-top: max(10px, env(safe-area-inset-top, 0px));
  padding-bottom: 10px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.logo-crest {
  height: 42px;
  width: auto;
}

.logo-smiyli {
  height: 26px;
  width: auto;
}

.header-cta {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--hero-orange);
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}

.header-cta:hover {
  background: #d14d1c;
}

.header-cta:active {
  transform: scale(0.98);
}

.header-cta:focus-visible {
  outline: 2px solid var(--brand-teal);
  outline-offset: 3px;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background: #1a120e;
  color: var(--brand-cream);
}

.hero__scene {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-slide.is-leaving {
  opacity: 0;
  z-index: 1;
}

.hero-slide__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.92);
  will-change: transform;
}

.hero-slide:nth-child(1) .hero-slide__img {
  object-position: 50% 42%;
  transform-origin: 50% 38%;
}

.hero-slide:nth-child(2) .hero-slide__img {
  object-position: 50% 40%;
  transform-origin: 50% 45%;
}

.hero-slide:nth-child(3) .hero-slide__img {
  object-position: 50% 58%;
  transform-origin: 50% 70%;
}

.hero-slide:nth-child(4) .hero-slide__img {
  object-position: 48% 50%;
  transform-origin: 60% 45%;
}

.hero-slide.is-active .hero-slide__img,
.hero-slide.is-leaving .hero-slide__img {
  animation-duration: 9s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.hero-slide:nth-child(1).is-active .hero-slide__img,
.hero-slide:nth-child(1).is-leaving .hero-slide__img {
  animation-name: ken-in;
}

.hero-slide:nth-child(2).is-active .hero-slide__img,
.hero-slide:nth-child(2).is-leaving .hero-slide__img {
  animation-name: ken-pan;
}

.hero-slide:nth-child(3).is-active .hero-slide__img,
.hero-slide:nth-child(3).is-leaving .hero-slide__img {
  animation-name: ken-rise;
}

.hero-slide:nth-child(4).is-active .hero-slide__img,
.hero-slide:nth-child(4).is-leaving .hero-slide__img {
  animation-name: ken-into;
}

@keyframes ken-in {
  from { transform: scale(1.06); }
  to { transform: scale(1.2); }
}

@keyframes ken-into {
  from { transform: scale(1.08) translate3d(2%, 0, 0); }
  to { transform: scale(1.18) translate3d(-4%, -2%, 0); }
}

@keyframes ken-rise {
  from { transform: scale(1.12) translate3d(0, 5%, 0); }
  to { transform: scale(1.22) translate3d(0, -4%, 0); }
}

@keyframes ken-pan {
  from { transform: scale(1.22) translate3d(-3%, 0, 0); }
  to { transform: scale(1.3) translate3d(4%, -2%, 0); }
}

.hero h1,
.hero .lede,
.hero .eyebrow {
  text-shadow: 0 1px 2px rgba(10, 6, 4, 0.45);
}

.hero .accent {
  text-shadow: 0 1px 12px rgba(10, 6, 4, 0.55);
}

.hero__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(12, 8, 6, 0.78) 0%, rgba(12, 8, 6, 0.42) 48%, rgba(12, 8, 6, 0.28) 100%),
    linear-gradient(180deg, rgba(12, 8, 6, 0.18) 0%, rgba(12, 8, 6, 0.08) 40%, rgba(12, 8, 6, 0.45) 100%);
}

.hero__inner {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 16px 28px;
}

.hero__copy {
  max-width: 36rem;
}

.hero__visual {
  position: relative;
  width: min(100%, 280px);
  height: 280px;
  margin: 0 auto 8px;
  flex-shrink: 0;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  padding: 5px;
  border: 2px solid var(--hero-orange);
  box-shadow: 0 18px 40px rgba(8, 4, 2, 0.45);
}

.hero-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.hero-orbit--lg {
  width: 210px;
  height: 210px;
  top: 10px;
  left: 8px;
  outline: 1px solid rgba(232, 90, 36, 0.5);
  outline-offset: 8px;
}

.hero-orbit--lg img {
  object-position: 68% 42%;
}

.hero-orbit--sm {
  width: 108px;
  height: 108px;
  right: 0;
  bottom: 6px;
  z-index: 2;
  background: #1a120e;
}

.hero-orbit--sm img {
  object-position: 50% 45%;
}

.hero-bar {
  position: relative;
  z-index: 5;
  background: var(--hero-bar);
}

.hero-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.hero-bar__items {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero-bar__items::-webkit-scrollbar {
  display: none;
}

.hero-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.92);
}

.hero-bar__item svg {
  flex-shrink: 0;
  color: var(--hero-orange);
}

.hero-bar__nav {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hero-nav-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(251, 246, 238, 0.35);
  background: transparent;
  color: var(--brand-cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.hero-nav-btn:hover {
  border-color: var(--hero-orange);
  background: rgba(232, 90, 36, 0.12);
}

.hero-nav-btn:focus-visible {
  outline: 2px solid var(--hero-orange);
  outline-offset: 3px;
}

.presents {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.chip {
  border-radius: 999px;
  padding: 5px 12px;
  border: 1px solid rgba(232, 90, 36, 0.85);
  color: var(--brand-cream);
  background: transparent;
}

.presents__with {
  color: rgba(251, 246, 238, 0.7);
}

.eyebrow {
  margin: 22px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.82);
}

h1,
h2,
.success__title {
  font-family: "Archivo Black", Archivo, sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 {
  margin: 12px 0 0;
  font-size: clamp(2.35rem, 10vw, 3rem);
  line-height: 0.92;
}

.accent {
  color: var(--hero-orange);
}

.hero-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 22rem;
  margin-top: 22px;
}

.hero-rule__line {
  flex: 1;
  height: 1px;
  background: rgba(251, 246, 238, 0.28);
}

.hero-rule__icon {
  color: var(--hero-orange);
  display: grid;
  place-items: center;
}

.lede {
  margin: 20px 0 0;
  max-width: 32rem;
  color: var(--brand-cream);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.92);
}

.feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(232, 90, 36, 0.7);
  background: transparent;
  padding: 10px 14px;
}

.hero-cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--hero-orange);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(232, 90, 36, 0.38);
  transition: background 0.15s ease, transform 0.15s ease;
}

.hero-cta:hover {
  background: #d14d1c;
}

.hero-cta:active {
  transform: scale(0.98);
}

.hero-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.feature svg {
  color: var(--hero-orange);
  flex-shrink: 0;
}

/* Partner cards */

.partners {
  scroll-margin-top: 88px;
  margin-top: 20px;
}

.partners__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.partner {
  background: #fff;
  color: var(--foreground);
  border: 0;
  border-radius: 20px;
  padding: 22px 20px 20px;
  box-shadow: 0 12px 32px rgba(28, 26, 23, 0.08);
}

.partner--red,
.partner--teal {
  background: #fff;
}

.partner img {
  height: 64px;
  width: auto;
}

.partner__smiyli {
  height: 44px !important;
}

.partner__meta {
  margin: 16px 0 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.partner--red .partner__meta {
  color: var(--brand-red);
}

.partner--teal .partner__meta {
  color: var(--brand-teal);
}

.partner h2 {
  margin: 4px 0 0;
  font-size: 1.125rem;
  line-height: 1.2;
}

.partner p:last-child {
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* Ticket */

.ticket {
  scroll-margin-top: 88px;
  margin-top: 28px;
  overflow: visible;
  background: transparent;
  color: var(--brand-cream);
  filter: drop-shadow(0 18px 28px rgba(28, 26, 23, 0.18));
}

.ticket__row {
  display: flex;
  flex-direction: column;
}

.ticket__body {
  --cut: 18px;
  padding: 22px 20px 24px;
  flex: 1;
  background: var(--brand-ink);
  border-radius: 20px 20px 0 0;
  -webkit-mask:
    radial-gradient(circle var(--cut) at 0 100%, #0000 99%, #000) left / 51% 100% no-repeat,
    radial-gradient(circle var(--cut) at 100% 100%, #0000 99%, #000) right / 51% 100% no-repeat;
  mask:
    radial-gradient(circle var(--cut) at 0 100%, #0000 99%, #000) left / 51% 100% no-repeat,
    radial-gradient(circle var(--cut) at 100% 100%, #0000 99%, #000) right / 51% 100% no-repeat;
}

.ticket__stub {
  --cut: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--brand-red);
  padding: 20px 24px;
  position: relative;
  border-radius: 0 0 20px 20px;
  -webkit-mask:
    radial-gradient(circle var(--cut) at 0 0, #0000 99%, #000) left / 51% 100% no-repeat,
    radial-gradient(circle var(--cut) at 100% 0, #0000 99%, #000) right / 51% 100% no-repeat;
  mask:
    radial-gradient(circle var(--cut) at 0 0, #0000 99%, #000) left / 51% 100% no-repeat,
    radial-gradient(circle var(--cut) at 100% 0, #0000 99%, #000) right / 51% 100% no-repeat;
}

.ticket__stub::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  border-top: 2px dashed rgba(251, 246, 238, 0.45);
}

.ticket__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ticket__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.ticket__smiyli {
  height: 20px;
  width: auto;
  opacity: 0.9;
}

.ticket__route {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  margin: 20px 0 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: clamp(1.05rem, 5.4vw, 1.25rem);
  line-height: 1;
}

.ticket__plane {
  flex-shrink: 0;
  color: var(--brand-orange);
  transform: rotate(90deg);
}

.ticket__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 0;
}

.ticket__details dt {
  margin: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.6);
}

.ticket__details dd {
  margin: 4px 0 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticket__details dd.ticket__pax {
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.9;
  margin-top: 6px;
}

.ticket__stub img {
  height: 44px;
  width: auto;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
}

.ticket__stub p {
  margin: 0;
  max-width: 12ch;
  text-align: center;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--brand-yellow);
}

/* Form */

.entry {
  margin-top: 28px;
  scroll-margin-top: 72px;
}

.entry-card {
  overflow: hidden;
  border-radius: 20px;
  border: 0;
  background: var(--card);
  box-shadow: 0 12px 32px rgba(28, 26, 23, 0.08);
}

.entry-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--brand-ink);
  padding: 14px 20px;
}

.entry-bar span {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}

.entry-bar img {
  height: 24px;
  width: auto;
}

.entry-body {
  padding: 22px 20px 24px;
}

#entry-title {
  margin: 0;
  font-size: 1.5rem;
}

.entry-intro {
  margin: 8px 0 0;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.field-row {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.field {
  margin-top: 16px;
}

.field-row .field {
  margin-top: 0;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid #e4ddd3;
  border-radius: 14px;
  background: var(--background);
  color: var(--foreground);
  font-family: Archivo, sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.field input::placeholder {
  color: #a39c94;
}

.field input:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 1px var(--brand-red);
}

.field input.is-invalid {
  border-color: var(--brand-red);
}

.field-error {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: var(--brand-red);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  min-height: 56px;
  border-radius: 16px;
  background: rgba(241, 235, 225, 0.6);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  -webkit-user-select: none;
  user-select: none;
}

.check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  accent-color: var(--brand-red);
}

.check__box {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  flex-shrink: 0;
  border: 1px solid #d7d0c6;
  border-radius: 7px;
  background: #fff;
  display: grid;
  place-items: center;
}

.check__box::after {
  content: "";
  width: 10px;
  height: 6px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg) translate(0, -1px);
  opacity: 0;
}

.check input:checked + .check__box {
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.check input:checked + .check__box::after {
  opacity: 1;
}

.check input:focus-visible + .check__box {
  box-shadow: 0 0 0 2px var(--brand-red);
}

.check.is-invalid .check__box {
  border-color: var(--brand-red);
}

.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-red);
  color: var(--brand-yellow);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(238, 64, 35, 0.25);
  transition: background 0.15s ease, transform 0.15s ease;
}

.submit:hover {
  background: var(--brand-red-dark);
}

.submit:active {
  transform: scale(0.98);
}

.submit:focus-visible {
  outline: 2px solid var(--brand-teal);
  outline-offset: 2px;
}

.fine-print {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--muted-foreground);
}

/* Success */

.success {
  text-align: center;
  padding: 16px 0 8px;
}

.success__badge {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-teal);
  color: #fff;
}

.success__kicker {
  margin: 0 0 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-teal);
}

.success__title {
  margin: 0 0 10px;
  font-size: 1.7rem;
}

.success__copy {
  margin: 0 auto;
  max-width: 28em;
  color: var(--muted-foreground);
}

/* Footer */

.site-footer {
  scroll-margin-top: 88px;
  margin-top: 40px;
  background: var(--brand-ink);
  color: var(--brand-cream);
  padding: 36px 0 calc(28px + env(safe-area-inset-bottom, 0px));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logos img {
  height: 48px;
  width: auto;
}

.footer-smiyli {
  height: 32px !important;
}

.site-footer p {
  margin: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(251, 246, 238, 0.55);
}

/* App dock — mobile enter bar */

.app-dock {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  z-index: 40;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.app-dock.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(120%);
  pointer-events: none;
}

.app-dock__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border-radius: 999px;
  background: var(--hero-orange);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(232, 90, 36, 0.42);
  transition: background 0.15s ease, transform 0.15s ease;
}

.app-dock__cta:hover {
  background: #d14d1c;
}

.app-dock__cta:active {
  transform: scale(0.98);
}

.app-dock__cta:focus-visible {
  outline: 2px solid var(--brand-teal);
  outline-offset: 3px;
}

@media (max-width: 360px) {
  .presents {
    letter-spacing: 0.14em;
  }

  .chip {
    padding: 4px 10px;
  }
}

@media (min-width: 560px) {
  body,
  body.dock-visible {
    padding-bottom: 0;
  }

  .app-dock {
    display: none;
  }

  .logo-crest {
    height: 52px;
  }

  .logo-smiyli {
    height: 32px;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-cta {
    display: inline-flex;
    width: auto;
  }

  .hero__inner {
    padding: 48px 16px 48px;
  }

  .hero__visual {
    width: 400px;
    height: 400px;
  }

  .hero-orbit--lg {
    width: 300px;
    height: 300px;
  }

  .hero-orbit--sm {
    width: 150px;
    height: 150px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .lede {
    font-size: 1.125rem;
  }

  .features {
    margin-top: 32px;
  }

  .feature {
    padding: 8px 14px;
  }

  .hero-bar__nav {
    display: flex;
  }

  .hero-bar__items {
    overflow: visible;
    flex-wrap: wrap;
  }

  .partners {
    margin-top: 24px;
  }

  .partners__track {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .partner {
    border-radius: 16px;
    padding: 24px 22px 22px;
  }

  .ticket__row {
    flex-direction: row;
  }

  .ticket__body {
    padding: 32px;
    border-radius: 16px 0 0 16px;
    -webkit-mask:
      radial-gradient(circle var(--cut) at 100% 0, #0000 99%, #000) top / 100% 51% no-repeat,
      radial-gradient(circle var(--cut) at 100% 100%, #0000 99%, #000) bottom / 100% 51% no-repeat;
    mask:
      radial-gradient(circle var(--cut) at 100% 0, #0000 99%, #000) top / 100% 51% no-repeat,
      radial-gradient(circle var(--cut) at 100% 100%, #0000 99%, #000) bottom / 100% 51% no-repeat;
  }

  .ticket__route {
    font-size: 1.875rem;
  }

  .ticket__details {
    grid-template-columns: repeat(3, 1fr);
  }

  .ticket__stub {
    width: 9rem;
    flex-shrink: 0;
    flex-direction: column;
    border-radius: 0 16px 16px 0;
    padding: 28px 16px;
    -webkit-mask:
      radial-gradient(circle var(--cut) at 0 0, #0000 99%, #000) top / 100% 51% no-repeat,
      radial-gradient(circle var(--cut) at 0 100%, #0000 99%, #000) bottom / 100% 51% no-repeat;
    mask:
      radial-gradient(circle var(--cut) at 0 0, #0000 99%, #000) top / 100% 51% no-repeat,
      radial-gradient(circle var(--cut) at 0 100%, #0000 99%, #000) bottom / 100% 51% no-repeat;
  }

  .ticket__stub::before {
    left: 0;
    right: auto;
    top: 22px;
    bottom: 22px;
    width: 0;
    border-top: 0;
    border-left: 2px dashed rgba(251, 246, 238, 0.45);
  }

  .entry-bar {
    padding: 12px 40px;
  }

  .entry-body {
    padding: 40px;
  }

  .entry-card {
    border-radius: 16px;
    border: 2px solid rgba(28, 26, 23, 0.1);
    box-shadow: 0 4px 16px rgba(28, 26, 23, 0.04);
  }

  #entry-title {
    font-size: 1.875rem;
  }

  .field-row {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    margin-top: 56px;
    padding: 40px 0;
  }
}

@media (min-width: 960px) {
  .header-cta {
    padding: 0 18px;
    letter-spacing: 0.14em;
  }

  .logo-crest {
    height: 56px;
  }

  .logo-smiyli {
    height: 36px;
  }

  .hero__glow {
    background:
      linear-gradient(90deg, rgba(12, 8, 6, 0.72) 0%, rgba(12, 8, 6, 0.38) 42%, rgba(12, 8, 6, 0.22) 100%),
      linear-gradient(180deg, rgba(12, 8, 6, 0.12) 0%, rgba(12, 8, 6, 0.04) 45%, rgba(12, 8, 6, 0.28) 100%);
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: calc(100svh - 72px - 64px);
    padding: 48px 24px 56px;
  }

  .hero__copy {
    max-width: 34rem;
  }

  .hero__visual {
    width: 520px;
    height: 500px;
    margin: 0;
  }

  .hero-orbit--lg {
    width: 380px;
    height: 380px;
    top: 16px;
    left: 16px;
    outline-offset: 12px;
  }

  .hero-orbit--sm {
    width: 188px;
    height: 188px;
    right: 12px;
    bottom: 16px;
  }

  h1 {
    font-size: 4.25rem;
  }

  h1 .accent {
    font-size: 1.06em;
  }

  .hero-bar__inner {
    min-height: 64px;
  }

  .hero-bar__items {
    gap: 12px 40px;
  }

  .hero-bar__item {
    font-size: 11px;
    letter-spacing: 0.18em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide__img {
    animation: none !important;
  }

  .hero-slide {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .submit,
  .hero-cta,
  .header-cta,
  .hero-nav-btn,
  .app-dock,
  .app-dock__cta,
  .field input,
  .check__box {
    transition: none;
  }
}
