@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Oswald:wght@500;600;700&display=swap");

@font-face {
  font-family: "Drybrush";
  src: url("./fonts/drybrush/Drybrush.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #030708;
  --pink: #ff48a4;
  --line: rgba(255, 255, 255, .12);
  --muted: rgba(255, 255, 255, .67);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: #fff;
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 72, 164, .13), transparent 28%),
    linear-gradient(135deg, #030708 0%, #09070a 48%, #030708 100%);
  font-family: Montserrat, Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }

.shell-header,
.shell-main {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.shell-header {
  min-height: 76px;
  padding: 0 clamp(20px, 4.7vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(1, 4, 5, .94);
}

.shell-logo {
  font-family: Drybrush, Impact, sans-serif;
  font-size: clamp(25px, 3vw, 38px);
  font-style: italic;
  line-height: .8;
  letter-spacing: -.05em;
  transform: rotate(-1.5deg);
}

.shell-logo span { color: var(--pink); }

.shell-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.35vw, 28px);
  font-size: clamp(10px, 1.05vw, 13px);
  font-weight: 600;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.shell-nav a {
  padding: 6px 0;
  color: rgba(255, 255, 255, .72);
  border-bottom: 2px solid transparent;
}

.shell-nav a:hover,
.shell-nav a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--pink);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 36px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 5px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .22s ease, opacity .18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

.shell-buy,
.shell-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  color: #080709;
  background: var(--pink);
  font-family: Oswald, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.shell-buy {
  justify-self: end;
  min-width: 106px;
  min-height: 32px;
  padding: 8px 15px;
  font-size: clamp(12px, 1.42vw, 17px);
  line-height: 1;
  letter-spacing: .035em;
}

.shell-home {
  min-height: 36px;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: .045em;
}

.shell-main {
  min-height: calc(100vh - 76px);
  padding: 72px clamp(22px, 7vw, 84px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.shell-card { position: relative; width: min(760px, 100%); }

.shell-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -80px -120px;
  border: 1px solid rgba(255, 72, 164, .14);
  transform: rotate(-4deg);
}

.shell-kicker {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.shell-title {
  margin: 0;
  font-family: Drybrush, Impact, sans-serif;
  font-size: clamp(66px, 11vw, 132px);
  font-style: italic;
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.045em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.shell-title span { color: var(--pink); }

.shell-copy {
  max-width: 540px;
  margin: 30px auto 28px;
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .shell-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 8px;
    row-gap: 0;
    padding: 12px 14px;
  }
  .menu-toggle { display: inline-flex; grid-column: 3; justify-self: end; }
  .shell-buy { grid-column: 2; }
  .shell-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    padding: 12px 0 5px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }
  .shell-nav.is-open { display: flex; }
  .shell-nav a {
    width: 100%;
    padding: 10px 6px;
    text-align: center;
    border-bottom-color: rgba(255, 255, 255, .07);
  }
  .shell-nav a:last-child { border-bottom-color: transparent; }
}

@media (max-width: 760px) {
  .shell-main { min-height: calc(100vh - 120px); }
}

@media (max-width: 520px) {
  .shell-logo { font-size: clamp(27px, 8.4vw, 34px); }
  .shell-buy { min-width: 94px; padding-inline: 11px; }
  .menu-toggle { width: 38px; height: 34px; }
  .shell-main { min-height: calc(100vh - 76px); }
  .shell-title { font-size: clamp(58px, 20vw, 88px); }
}

@media (max-width: 900px) {
  html:not(.menu-ready) .menu-toggle { display: none; }
  html:not(.menu-ready) .shell-nav { display: flex; }
}
