/* [project]/src/app/_components/SiteHeader.module.css [app-client] (css) */
.SiteHeader-module__B9oE7a__header {
  z-index: 40;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: linear-gradient(#08161feb, #08161f99);
  border-bottom: 1px solid #d8a53a40;
  position: sticky;
  top: 0;
}

.SiteHeader-module__B9oE7a__inner {
  max-width: var(--maxw);
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
}

.SiteHeader-module__B9oE7a__brand {
  color: var(--parchment);
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.SiteHeader-module__B9oE7a__brand:hover {
  color: var(--gold-bright);
}

.SiteHeader-module__B9oE7a__mark {
  object-fit: contain;
  filter: drop-shadow(0 2px 4px #00000080);
  width: 38px;
  height: 38px;
}

.SiteHeader-module__B9oE7a__word {
  font-family: var(--font-display);
  letter-spacing: .02em;
  font-size: 1.5rem;
  line-height: 1;
}

.SiteHeader-module__B9oE7a__nav {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .12em;
  align-items: center;
  gap: 22px;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
}

.SiteHeader-module__B9oE7a__nav a {
  color: var(--bone);
}

.SiteHeader-module__B9oE7a__nav a:hover {
  color: var(--gold-bright);
}

.SiteHeader-module__B9oE7a__cta {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  padding: 8px 16px;
  color: #2a1c05 !important;
}

.SiteHeader-module__B9oE7a__cta:hover {
  filter: brightness(1.08);
}

@media (max-width: 640px) {
  .SiteHeader-module__B9oE7a__word {
    font-size: 1.2rem;
  }

  .SiteHeader-module__B9oE7a__nav {
    gap: 12px;
    font-size: .68rem;
  }
}

/* [project]/src/app/_landing/Hero.module.css [app-client] (css) */
.Hero-module__LiOwyq__hero {
  isolation: isolate;
  justify-content: center;
  align-items: center;
  min-height: calc(100dvh - 60px);
  padding: 48px 0 72px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Hero-module__LiOwyq__hero:before {
  content: "";
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(900px 500px at 50% 8%, #d8a53a24, #0000 60%), radial-gradient(700px 500px at 50% 100%, #12304399, #0000 70%);
  position: absolute;
  inset: 0;
}

.Hero-module__LiOwyq__inner {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  display: flex;
}

.Hero-module__LiOwyq__eyebrow {
  margin: 0;
}

.Hero-module__LiOwyq__logo {
  filter: drop-shadow(0 12px 34px #0000008c) drop-shadow(0 0 26px #d8a53a40);
  width: min(78vw, 340px);
  height: auto;
  margin: 4px 0;
}

.Hero-module__LiOwyq__title {
  margin: 0;
  font-size: clamp(3.2rem, 15vw, 7rem);
}

.Hero-module__LiOwyq__subtitle {
  max-width: 620px;
  color: var(--bone);
  opacity: .9;
  margin: 4px auto 6px;
  font-size: 1.08rem;
}

.Hero-module__LiOwyq__dateWrap {
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  display: flex;
}

.Hero-module__LiOwyq__dateLine {
  background: linear-gradient(90deg, transparent, var(--gold));
  width: clamp(28px, 12vw, 90px);
  height: 1px;
}

.Hero-module__LiOwyq__dateWrap .Hero-module__LiOwyq__dateLine:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.Hero-module__LiOwyq__date {
  font-family: var(--font-title);
  letter-spacing: .08em;
  color: var(--gold-bright);
  white-space: nowrap;
  text-shadow: 0 2px #0006;
  font-size: clamp(1.3rem, 5.5vw, 2rem);
  font-weight: 800;
}

.Hero-module__LiOwyq__dateNote {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--parchment-2);
  opacity: .8;
  margin: 0;
  font-size: .72rem;
}

.Hero-module__LiOwyq__cta {
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.Hero-module__LiOwyq__cta .btn {
  min-width: 220px;
}

.Hero-module__LiOwyq__deco {
  z-index: -1;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.Hero-module__LiOwyq__float {
  opacity: .16;
  filter: drop-shadow(0 4px 8px #00000080);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  animation: 9s ease-in-out infinite Hero-module__LiOwyq__heroFloat;
  position: absolute;
}

.Hero-module__LiOwyq__d1 {
  animation-delay: 0s;
  top: 12%;
  left: 8%;
}

.Hero-module__LiOwyq__d2 {
  animation-delay: 1.4s;
  top: 22%;
  right: 10%;
}

.Hero-module__LiOwyq__d3 {
  animation-delay: .8s;
  bottom: 20%;
  left: 12%;
}

.Hero-module__LiOwyq__d4 {
  animation-delay: 2.2s;
  bottom: 26%;
  right: 9%;
}

.Hero-module__LiOwyq__d5 {
  font-size: clamp(1.2rem, 4vw, 2rem);
  animation-delay: 1.9s;
  top: 46%;
  left: 4%;
}

@keyframes Hero-module__LiOwyq__heroFloat {
  0%, 100% {
    transform: translateY(0)rotate(-4deg);
  }

  50% {
    transform: translateY(-16px)rotate(4deg);
  }
}

.Hero-module__LiOwyq__fade {
  background: linear-gradient(180deg, transparent, var(--sea-abyss));
  z-index: -1;
  height: 90px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (max-width: 720px) {
  .Hero-module__LiOwyq__hero {
    min-height: auto;
    padding: 28px 0 52px;
  }

  .Hero-module__LiOwyq__cta .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .Hero-module__LiOwyq__float {
    animation: none;
  }
}

/* [project]/src/app/_landing/Countdown.module.css [app-client] (css) */
.Countdown-module__BMWpgq__heading {
  color: var(--parchment);
  margin-bottom: 28px;
  font-size: clamp(1.6rem, 6vw, 2.4rem);
}

.Countdown-module__BMWpgq__grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
  display: grid;
}

.Countdown-module__BMWpgq__card {
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 8px 16px;
  display: flex;
}

.Countdown-module__BMWpgq__value {
  font-family: var(--font-display);
  color: var(--wood-2);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px #7a3f1640;
  font-size: clamp(2.4rem, 11vw, 4rem);
  line-height: 1;
}

.Countdown-module__BMWpgq__label {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--rum);
  font-size: .66rem;
  font-weight: 700;
}

.Countdown-module__BMWpgq__note {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--parchment-2);
  opacity: .85;
  margin-top: 26px;
  font-size: .74rem;
}

.Countdown-module__BMWpgq__done {
  color: var(--gold-bright);
  margin: 12px 0 0;
  font-size: clamp(2rem, 8vw, 3.4rem);
}

@media (max-width: 520px) {
  .Countdown-module__BMWpgq__grid {
    gap: 8px;
  }

  .Countdown-module__BMWpgq__card {
    padding: 14px 4px 12px;
  }
}

/* [project]/src/app/_landing/Journey.module.css [app-client] (css) */
.Journey-module__GJMq5G__heading {
  color: var(--parchment);
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 7vw, 2.8rem);
}

.Journey-module__GJMq5G__lead {
  max-width: 620px;
  color: var(--bone);
  opacity: .88;
  margin: 0 auto 36px;
}

.Journey-module__GJMq5G__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.Journey-module__GJMq5G__card {
  border-radius: 12px;
  flex-direction: column;
  gap: 10px;
  padding: 26px 22px 24px;
  transition: transform .16s, box-shadow .16s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Journey-module__GJMq5G__card:hover {
  box-shadow: var(--shadow-deep);
  transform: translateY(-4px);
}

.Journey-module__GJMq5G__card:after {
  content: "";
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-deep));
  opacity: .8;
  height: 3px;
  position: absolute;
  inset: 0 0 auto;
}

.Journey-module__GJMq5G__icon {
  filter: drop-shadow(0 3px 6px #00000080);
  font-size: 2.2rem;
  line-height: 1;
}

.Journey-module__GJMq5G__tag {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-bright);
  font-size: .66rem;
  font-weight: 700;
}

.Journey-module__GJMq5G__cardTitle {
  font-family: var(--font-display);
  letter-spacing: .02em;
  color: var(--parchment);
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
}

.Journey-module__GJMq5G__cardText {
  color: var(--bone);
  opacity: .9;
  margin: 0;
  font-size: 1rem;
}

.Journey-module__GJMq5G__action {
  text-align: center;
  margin-top: 34px;
}

@media (max-width: 860px) {
  .Journey-module__GJMq5G__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* [project]/src/app/_landing/CrewSection.module.css [app-client] (css) */
.CrewSection-module__63Bt7G__heading {
  color: var(--parchment);
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 8vw, 3rem);
}

.CrewSection-module__63Bt7G__lead {
  max-width: 600px;
  color: var(--bone);
  opacity: .88;
  margin: 0 auto 36px;
}

.CrewSection-module__63Bt7G__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.CrewSection-module__63Bt7G__cell {
  min-width: 0;
}

.CrewSection-module__63Bt7G__poster {
  cursor: pointer;
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: center;
  background: none;
  border: none;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  transition: transform .16s;
  display: flex;
}

.CrewSection-module__63Bt7G__poster:hover {
  transform: translateY(-4px);
}

.CrewSection-module__63Bt7G__poster:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
  border-radius: 8px;
}

.CrewSection-module__63Bt7G__frame {
  border-radius: 6px;
  transition: box-shadow .16s, border-image-source .16s;
  display: block;
  position: relative;
  overflow: hidden;
}

.CrewSection-module__63Bt7G__poster:hover .CrewSection-module__63Bt7G__frame {
  box-shadow: var(--shadow-deep), 0 0 0 1px var(--team, var(--gold));
}

.CrewSection-module__63Bt7G__img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  width: 100%;
  display: block;
}

.CrewSection-module__63Bt7G__posterCaptain .CrewSection-module__63Bt7G__frame {
  box-shadow: var(--shadow-deep), 0 0 0 2px var(--gold), 0 0 26px #d8a53a66;
}

.CrewSection-module__63Bt7G__badge {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #2a1c05;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.2;
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  box-shadow: 0 3px 8px #00000080;
}

.CrewSection-module__63Bt7G__badgeGroom {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  border: 1px solid var(--gold-deep);
}

.CrewSection-module__63Bt7G__badgeHost {
  color: #04202e;
  background: linear-gradient(#7fc0e0, #2f7ba1);
  border: 1px solid #1d5e80;
}

.CrewSection-module__63Bt7G__badgeMaybe {
  background: linear-gradient(#e7d6ab, #c2a86f);
  border: 1px solid #93794a;
}

.CrewSection-module__63Bt7G__meta {
  flex-direction: column;
  align-items: center;
  gap: 2px;
  display: flex;
}

.CrewSection-module__63Bt7G__pirateName {
  font-family: var(--font-display);
  color: var(--parchment);
  font-size: 1.25rem;
  line-height: 1.1;
}

.CrewSection-module__63Bt7G__role {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  font-size: .64rem;
  font-weight: 700;
}

.CrewSection-module__63Bt7G__bounty {
  font-family: var(--font-title);
  color: var(--bone);
  opacity: .78;
  align-items: baseline;
  gap: 2px;
  font-size: .72rem;
  display: inline-flex;
}

.CrewSection-module__63Bt7G__berries {
  color: var(--gold-bright);
  font-weight: 800;
}

.CrewSection-module__63Bt7G__overlay {
  z-index: 100;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #040a0fd1;
  justify-content: center;
  align-items: center;
  padding: 18px;
  animation: .18s both CrewSection-module__63Bt7G__fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.CrewSection-module__63Bt7G__modal {
  background-color: var(--parchment);
  background-image: radial-gradient(140% 120% at 8% 0%, #ffffff59, transparent 42%),
    radial-gradient(120% 120% at 92% 100%, #7a3f164d, transparent 46%),
    linear-gradient(180deg, var(--parchment) 0%, var(--parchment-2) 100%);
  border: 1px solid var(--team-deep, #3a241480);
  border-top: 5px solid var(--team, var(--gold));
  width: min(760px, 100%);
  max-height: 92dvh;
  box-shadow: var(--shadow-deep);
  color: var(--ink);
  border-radius: 14px;
  animation: .2s both CrewSection-module__63Bt7G__popIn;
  position: relative;
  overflow-y: auto;
}

.CrewSection-module__63Bt7G__closeBtn {
  z-index: 2;
  width: 40px;
  height: 40px;
  color: var(--wood-2);
  cursor: pointer;
  background: #ffffff80;
  border: 1px solid #3a241466;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  transition: filter .12s, transform .12s;
  display: inline-flex;
  position: absolute;
  top: 10px;
  right: 10px;
}

.CrewSection-module__63Bt7G__closeBtn:hover {
  filter: brightness(.94);
  transform: rotate(90deg);
}

.CrewSection-module__63Bt7G__modalGrid {
  grid-template-columns: 240px 1fr;
  gap: 22px;
  padding: 22px;
  display: grid;
}

.CrewSection-module__63Bt7G__modalFrame {
  border-radius: 8px;
  align-self: start;
  overflow: hidden;
}

.CrewSection-module__63Bt7G__modalImg {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  width: 100%;
}

.CrewSection-module__63Bt7G__modalBody {
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.CrewSection-module__63Bt7G__modalTeam {
  align-self: start;
}

.CrewSection-module__63Bt7G__modalName {
  font-family: var(--font-display);
  color: var(--wood-2);
  margin: 4px 0 0;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.CrewSection-module__63Bt7G__modalRole {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rum);
  margin: 0 0 4px;
  font-size: .72rem;
  font-weight: 700;
}

.CrewSection-module__63Bt7G__modalStory {
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.02rem;
}

.CrewSection-module__63Bt7G__modalFacts {
  border-top: 1px dashed #3a241459;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
  padding-top: 12px;
  display: flex;
}

.CrewSection-module__63Bt7G__factLabel {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--rum);
  font-size: .66rem;
  font-weight: 700;
}

.CrewSection-module__63Bt7G__factValue {
  font-family: var(--font-title);
  color: var(--wood-2);
  align-items: baseline;
  gap: 3px;
  font-size: 1.05rem;
  font-weight: 800;
  display: inline-flex;
}

.CrewSection-module__63Bt7G__modalFacts .CrewSection-module__63Bt7G__berries {
  color: var(--gold-deep);
}

@keyframes CrewSection-module__63Bt7G__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes CrewSection-module__63Bt7G__popIn {
  from {
    opacity: 0;
    transform: translateY(16px)scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@media (min-width: 640px) {
  .CrewSection-module__63Bt7G__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 960px) {
  .CrewSection-module__63Bt7G__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 560px) {
  .CrewSection-module__63Bt7G__modalGrid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .CrewSection-module__63Bt7G__modalFrame {
    width: min(200px, 60%);
    margin: 4px auto 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .CrewSection-module__63Bt7G__overlay, .CrewSection-module__63Bt7G__modal {
    animation: none;
  }

  .CrewSection-module__63Bt7G__closeBtn:hover {
    transform: none;
  }
}

/* [project]/src/app/_landing/LandingFooter.module.css [app-client] (css) */
.LandingFooter-module__BJLrGG__footer {
  margin-top: 20px;
  padding-bottom: 40px;
}

.LandingFooter-module__BJLrGG__inner {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 32px;
  display: flex;
}

.LandingFooter-module__BJLrGG__mark {
  object-fit: contain;
  opacity: .9;
  filter: drop-shadow(0 3px 6px #00000080);
  width: 52px;
  height: 52px;
}

.LandingFooter-module__BJLrGG__brand {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  margin: 4px 0 0;
  font-size: .82rem;
  font-weight: 700;
}

.LandingFooter-module__BJLrGG__tagline {
  max-width: 460px;
  color: var(--bone);
  opacity: .65;
  margin: 0;
  font-size: .94rem;
  font-style: italic;
}

/*# sourceMappingURL=src_app_0tgm_ln._.css.map*/