/* ============================================================
   5NOOF — snuf.gg
   Design system translated from the Figma bento (frame 156:2)
   ============================================================ */

:root {
  --bg: #34372A;            /* deep olive drab canvas */
  --ink: #14150F;           /* text ink / dark surfaces */
  --ink-soft: #4A4C40;      /* body copy on light cards */
  --num-dim: #737663;       /* list numbers */
  --cream: #EAE8DC;         /* hero card */
  --pale: #D6DBC2;          /* list card */
  --sand: #E5D8C2;          /* squad card */
  --dark-hi: #2A2F1D;       /* dark card gradient top */
  --dark-lo: #0B0C08;       /* dark card gradient base */
  --olive: #7C8464;         /* brand accent */
  --dim-dark: #A6A899;      /* dim text on dark */
  --red: #E5484D;           /* live dot */
  --footer-txt: #A2A692;

  --r-card: 60px;
  --r-tile: 26px;
  --pad-x: clamp(26px, 2.8vw, 42px);
  --pad-y: clamp(22px, 2.4vw, 34px);
  --gap: clamp(24px, 2vw, 32px);
  --fillet: 40px;
  --fillet-overlap: 2px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font: inherit; }
a { text-decoration: none; color: inherit; }

.app {
  width: min(94vw, 2200px);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  margin: 0 auto;
}

/* ============ BENTO GRID — one template per view ============ */

.bento {
  position: relative;
  flex: none;
  width: 100%;
  height: clamp(760px, calc(100dvh - 118px), 1000px);
  min-height: 0;
  display: grid;
  grid-template-columns: 1.52fr 0.98fr;
  column-gap: var(--gap);
}

.bento[data-view="home"] {
  grid-template-rows: 72px var(--gap) 268fr var(--gap) 12fr var(--gap) 254fr;
}
.bento[data-view="home"] .navband { grid-area: 1 / 1 / 2 / 3; }
.bento[data-view="home"] .card-a  { grid-area: 2 / 1 / 4 / 2; }
.bento[data-view="home"] .card-b  { grid-area: 3 / 2 / 6 / 3; }
.bento[data-view="home"] .card-c  { grid-area: 5 / 1 / 8 / 2; margin-bottom: 56px; }
.bento[data-view="home"] .card-d  { grid-area: 7 / 2 / 8 / 3; margin-bottom: 56px; }

.bento[data-view="clips"] {
  grid-template-rows: 72px var(--gap) 130fr var(--gap) 12fr var(--gap) 300fr var(--gap) 72fr;
}
.bento[data-view="clips"] .navband { grid-area: 1 / 1 / 2 / 3; }
.bento[data-view="clips"] .card-a  { grid-area: 2 / 1 / 4 / 2; }
.bento[data-view="clips"] .card-c  { grid-area: 5 / 1 / 10 / 2; }
.bento[data-view="clips"] .card-b  { grid-area: 3 / 2 / 8 / 3; }
.bento[data-view="clips"] .card-d  { grid-area: 9 / 2 / 10 / 3; }
.bento[data-view="clips"] .card-c,
.bento[data-view="clips"] .card-d  { margin-bottom: 56px; }

.bento[data-view="about"] {
  grid-template-rows: 72px var(--gap) 270fr var(--gap) 110fr var(--gap) 200fr;
}
.bento[data-view="about"] .navband { grid-area: 1 / 1 / 2 / 3; }
.bento[data-view="about"] .card-a  { grid-area: 2 / 2 / 6 / 3; }
.bento[data-view="about"] .card-b  { grid-area: 5 / 1 / 8 / 2; }
.bento[data-view="about"] .card-c  { grid-area: 3 / 1 / 4 / 2; }
.bento[data-view="about"] .card-d  { grid-area: 7 / 2 / 8 / 3; }
.bento[data-view="about"] .card-b,
.bento[data-view="about"] .card-d  { margin-bottom: 56px; }
.bento[data-view="about"] .navband {
  border-radius: var(--r-card) var(--r-card) 0 var(--r-card);
}
.bento[data-view="about"] .card-a {
  border-radius: 0 0 var(--r-card) var(--r-card);
}
.bento[data-view="about"] .fillet-left {
  left: calc(
    ((100% - var(--gap)) * 0.608) + var(--gap) - var(--fillet)
  );
  opacity: 1;
}
.bento[data-view="about"] .fillet-right {
  left: 100%;
  opacity: 0;
}

.bento[data-view="contact"] {
  grid-template-rows: 72px var(--gap) 240fr var(--gap) 12fr var(--gap) 282fr;
}
.bento[data-view="contact"] .navband { grid-area: 1 / 1 / 2 / 3; }
.bento[data-view="contact"] .card-a  { grid-area: 2 / 1 / 4 / 2; }
.bento[data-view="contact"] .card-b  { grid-area: 3 / 2 / 6 / 3; }
.bento[data-view="contact"] .card-c  { grid-area: 5 / 1 / 8 / 2; }
.bento[data-view="contact"] .card-d  { grid-area: 7 / 2 / 8 / 3; }
.bento[data-view="contact"] .card-c,
.bento[data-view="contact"] .card-d  { margin-bottom: 56px; }

/* ============ NAV BAND (top of the L-shaped cream card) ============ */

.navband {
  background: var(--cream);
  border-radius: var(--r-card) var(--r-card) var(--r-card) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 var(--pad-x);
  position: relative;
  z-index: 3;
}

.brand { display: flex; align-items: center; }

.brand-mark {
  width: 68px;
  height: 68px;
  margin-left: -9px; /* optical: glyph has transparent margins */
  object-fit: contain;
  transition: transform .3s ease;
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.06); }

.nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); }

.nav-link {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 2px;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--olive);
  transform: translateX(-50%) scale(0);
  transition: transform .25s ease;
}
.nav-link.is-active { font-weight: 700; }
.nav-link.is-active::after { transform: translateX(-50%) scale(1); }
.nav-cta { margin-left: 6px; }

/* concave fillets that follow both exposed edges of the hero card */
.fillet {
  position: absolute;
  top: 72px;
  width: var(--fillet);
  height: var(--fillet);
  pointer-events: none;
  z-index: 2;
}
.fillet-left {
  left: calc(var(--fillet) * -1);
  opacity: 0;
  background: radial-gradient(circle at 0 100%, rgba(0,0,0,0) calc(var(--fillet) - 0.5px), var(--cream) var(--fillet));
}
.fillet-right {
  left: calc((100% - var(--gap)) * 0.608);
  opacity: 1;
  background: radial-gradient(circle at 100% 100%, rgba(0,0,0,0) calc(var(--fillet) - 0.5px), var(--cream) var(--fillet));
}
.fillet::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--fillet-overlap);
  background: var(--cream);
}
.fillet-left::after {
  right: calc(var(--fillet-overlap) * -1);
}
.fillet-right::after {
  left: calc(var(--fillet-overlap) * -1);
}

/* ============ CARDS ============ */

.card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  min-height: 0;
}
.card-a { background: var(--cream); border-radius: 0 0 var(--r-card) var(--r-card); }
.card-b { background: linear-gradient(180deg, var(--dark-hi) 0%, var(--dark-lo) 78%); }
.card-c { background: var(--pale); }
.card-d { background: var(--sand); }

.panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
.panel[hidden] { display: none !important; }
.panel-pad { padding: var(--pad-y) var(--pad-x); }

/* ============ TYPOGRAPHY ============ */

.display, .display-sm, .card-title, .media-title, .roster .name {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.display   { font-size: clamp(44px, 5vw, 78px);  line-height: 0.98; }
.display-sm{ font-size: clamp(34px, 3.6vw, 56px); line-height: 1.0; }
.card-title{ font-size: clamp(22px, 2vw, 31px);  line-height: 1.05; }
.card-title-sm { font-size: clamp(18px, 1.6vw, 24px); }

.lede {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 52ch;
}

.micro-note { font-size: 12.5px; color: var(--ink-soft); opacity: .8; }
.on-dark { color: var(--cream); }
.on-dark-dim { color: var(--dim-dark); }

/* ============ BUTTONS / CHIPS / PILLS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-ink   { background: var(--ink);   color: var(--cream); }
.btn-ink:hover   { box-shadow: 0 10px 24px rgba(10, 11, 8, .35); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { box-shadow: 0 10px 24px rgba(10, 11, 8, .45); }
.btn-lg { padding: 16px 30px; font-size: 15.5px; }

.chip-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 600;
  transition: transform .3s ease;
}
.chip-arrow:hover { transform: rotate(45deg); }
.chip-arrow-cream { background: var(--cream); color: var(--ink); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.pill-dark {
  background: rgba(0, 0, 0, .38);
  color: var(--cream);
  padding: 9px 16px;
  backdrop-filter: blur(6px);
}
.stream-status {
  transition: box-shadow .3s ease, background-color .3s ease;
}
.stream-status.is-live {
  background: rgba(27, 12, 11, .58);
  box-shadow:
    inset 0 0 0 1px rgba(229, 72, 77, .24),
    0 0 18px rgba(229, 72, 77, .12);
}
.pill-outline {
  border: 1px solid rgba(20, 21, 15, .3);
  color: var(--ink-soft);
  padding: 9px 16px;
}
.discord-status strong {
  color: var(--ink);
  font-weight: 700;
}

.dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dot-red {
  --pulse-color: rgba(229, 72, 77, .45);
  --pulse-clear: rgba(229, 72, 77, 0);
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}
.dot-offline {
  background: #7D8078;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.dot-olive {
  --pulse-color: rgba(124, 132, 100, .45);
  --pulse-clear: rgba(124, 132, 100, 0);
  background: var(--olive);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--pulse-color); }
  50%      { box-shadow: 0 0 0 5px var(--pulse-clear); }
}

/* ============ CARD A — hero / clips header / bio ============ */

.hero-copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 2vh, 26px);
  max-width: 62%;
}
.card-a [data-panel="home"] .hero-copy {
  gap: 14px;
  max-width: 82%;
}
.card-a [data-panel="home"] .display {
  font-size: clamp(44px, 4.35vw, 70px);
}
.card-a [data-panel="home"] .display span { white-space: nowrap; }
.card-a [data-panel="home"] .lede { max-width: 60ch; }
.hero-cta span {
  font-size: 18px;
  transition: transform .25s ease;
}
.hero-cta:hover span { transform: translateX(3px); }
.cta-row { display: flex; align-items: center; gap: 12px; }

.sparkle {
  position: absolute;
  fill: var(--olive);
  animation: twinkle 6s ease-in-out infinite;
  pointer-events: none;
}
.sparkle-1 { width: clamp(40px, 4vw, 62px); right: 23%; top: 44%; }
.sparkle-2 { width: clamp(20px, 2vw, 30px); right: 16%; top: 62%; opacity: .6; animation-delay: 1.6s; }

@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .95; }
  50%      { transform: scale(.82) rotate(14deg); opacity: .55; }
}

.tag-row { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
  border: 1px solid rgba(20, 21, 15, .3);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}

.bio-avatar {
  position: absolute;
  right: var(--pad-x);
  bottom: calc(var(--pad-y) * -0.2);
  width: clamp(160px, 24%, 300px);
  border-radius: var(--r-tile);
  transform: rotate(-4deg);
  box-shadow: 0 22px 44px rgba(10, 11, 8, .35);
}

/* ============ CARD B — featured media / clip / contact ============ */

.card-b .panel { padding: 13px 13px 20px; }
.card-b .panel-pad { padding: var(--pad-y) var(--pad-x); }
.card-b .panel[data-panel="home"] { padding: 0; }
.card-c [data-panel="home"] { padding-bottom: max(8px, calc(var(--pad-y) - 24px)); }

.media {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 42px 42px 22px 22px;
  background: linear-gradient(180deg, #2E331F 0%, #0A0B07 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.media .pill { position: absolute; top: 22px; left: 22px; z-index: 2; }
.media .chip-arrow { position: absolute; top: 18px; right: 18px; z-index: 2; }
.media .duration { z-index: 2; }
.media-feature { border-radius: var(--r-card); }

.media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
  filter: grayscale(70%);
}
.media-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(46, 51, 31, .58) 0%,
    rgba(30, 34, 20, .46) 50%,
    rgba(10, 11, 7, .64) 100%
  );
  pointer-events: none;
}

.caption-glass {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  min-height: 96px;
  padding: 18px clamp(18px, 2vw, 30px);
  background: rgba(10, 11, 7, .26);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  backdrop-filter: blur(14px) saturate(115%);
}
.caption-glass .caption-copy { transform: translateY(-8px); }
.caption-glass .btn { transform: translateY(-8px); }
.caption-glass .btn:hover { transform: translateY(-10px); }

.media-glow {
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  top: -45%;
  left: 5%;
  background: radial-gradient(circle, rgba(124, 132, 100, .34) 0%, rgba(124, 132, 100, 0) 65%);
  filter: blur(30px);
  pointer-events: none;
}
.media-mark {
  position: absolute;
  width: 36%;
  aspect-ratio: 1;
  right: 3%;
  top: 7%;
  background: var(--cream);
  opacity: .12;
  -webkit-mask: url("../assets/icon.png") center / contain no-repeat;
  mask: url("../assets/icon.png") center / contain no-repeat;
  pointer-events: none;
}
.media-title {
  position: relative;
  color: var(--cream);
  font-size: clamp(26px, 2.5vw, 42px);
  text-align: center;
  padding: 0 10%;
}

.caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 2vw, 30px) 2px;
}
.caption-copy { min-width: 0; }
.caption-copy h4 { color: var(--cream); font-size: clamp(16px, 1.4vw, 21px); font-weight: 600; }
.caption-copy p  {
  color: var(--dim-dark);
  display: -webkit-box;
  overflow: hidden;
  max-width: 52ch;
  margin-top: 4px;
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.duration {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, .45);
  color: var(--cream);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
}

.play {
  width: 46px;
  height: 46px;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}
.play:hover { transform: translate(-50%, -50%) scale(1.12); }
.play-lg { width: 64px; height: 64px; }
.play-tri {
  width: 0; height: 0;
  border-left: 13px solid var(--ink);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}
.play-lg .play-tri {
  border-left-width: 17px;
  border-top-width: 11px;
  border-bottom-width: 11px;
}

.contact {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  max-width: 58ch;
}
.contact p { font-size: clamp(14px, 1.1vw, 16px); line-height: 1.6; }
.contact-primary .pill { align-self: flex-start; }

/* ============ CONTACT VIEW ============ */

.contact-hero-copy { max-width: 68%; }

.panel-contact-form {
  padding: 14px;
}

.contact-form-shell {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(180px, .68fr) minmax(0, 1.72fr);
  gap: 14px;
}

.contact-form-intro {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(19px, 2vw, 30px);
  border-radius: 46px;
  background:
    radial-gradient(circle at 88% 12%, rgba(124, 132, 100, .34), transparent 34%),
    linear-gradient(145deg, #25291b 0%, var(--ink) 72%);
  color: var(--cream);
}
.contact-form-intro::after {
  content: "";
  position: absolute;
  right: -28%;
  bottom: -48%;
  width: 90%;
  aspect-ratio: 1;
  border: 1px solid rgba(234, 232, 220, .11);
  border-radius: 50%;
}
.contact-form-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dim-dark);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.contact-form-title {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-family: "Anton", sans-serif;
  font-size: clamp(27px, 2.3vw, 39px);
  font-weight: 400;
  letter-spacing: .4px;
  line-height: .93;
  text-transform: uppercase;
}
.contact-form-intro p {
  position: relative;
  z-index: 1;
  max-width: 24ch;
  margin-top: 10px;
  color: var(--dim-dark);
  font-size: 11.5px;
  line-height: 1.45;
}
.contact-form-mark {
  position: absolute;
  right: 20px;
  bottom: 14px;
  color: rgba(234, 232, 220, .16);
  font-size: clamp(42px, 4vw, 66px);
  font-weight: 300;
  line-height: 1;
}

.contact-form {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 8px 10px 3px 2px;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 12px;
}
.contact-form label {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-form label > span {
  color: var(--ink-soft);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .65px;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 21, 15, .14);
  border-radius: 14px;
  outline: none;
  background: rgba(234, 232, 220, .72);
  color: var(--ink);
  font: inherit;
  font-size: 12.5px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}
.contact-form input,
.contact-form select {
  height: 37px;
  padding: 0 12px;
}
.contact-form textarea {
  flex: 1;
  min-height: 54px;
  padding: 10px 12px;
  resize: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(20, 21, 15, .46);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(124, 132, 100, .16);
  transform: translateY(-1px);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(74, 76, 64, .55); }
.contact-message-field {
  flex: 1;
  min-height: 0;
}
.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.contact-form-footer .btn {
  min-height: 38px;
  padding: 9px 17px;
  font-size: 12.5px;
}
.contact-form-footer .btn span {
  font-size: 15px;
  transition: transform .2s ease;
}
.contact-form-footer .btn:hover span { transform: translate(2px, -2px); }
.form-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 10.5px;
  white-space: nowrap;
}
.form-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--olive);
}
.form-status.is-error { color: #8f3034; }
.form-status.is-error .form-status-dot { background: #8f3034; }

.panel-contact-social {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.panel-contact-social p {
  max-width: 34ch;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: clamp(13.5px, 1.05vw, 16px);
  line-height: 1.5;
}
.contact-social-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============ CARD C — roster / clips grid / gear ============ */

.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}
.head-note { font-size: 13px; font-weight: 500; color: var(--ink-soft); }

.roster {
  list-style: none;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.roster li {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(20, 21, 15, .12);
  transition: padding-left .25s ease;
}
.roster li:first-child { border-top: 0; }
.roster li:hover { padding-left: 6px; }
.roster li.is-current::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: -9px;
  border-radius: 50%;
  background: var(--olive);
}
.roster .num  { width: 28px; font-size: 13px; font-weight: 600; color: var(--num-dim); }
.roster .name { flex: 1; font-size: clamp(17px, 1.5vw, 23px); }
.roster .meta { font-size: 13px; color: var(--ink-soft); }
.rotation-badge {
  flex: none;
  border: 1px solid rgba(20, 21, 15, .22);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 9px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.clip-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.clip { display: flex; flex-direction: column; min-height: 0; }
.clip-thumb {
  flex: 1;
  min-height: 0;
  position: relative;
  border-radius: var(--r-tile);
  background: linear-gradient(135deg, #262B17 0%, #0B0C08 100%);
  overflow: hidden;
}
.clip-thumb .duration { top: 12px; right: 12px; padding: 4px 10px; font-size: 11.5px; }
.clip-cap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 4px 0;
}
.clip-cap h5 { font-size: 13.5px; font-weight: 600; }
.clip-cap span { font-size: 12px; color: var(--ink-soft); }
.clip:hover .play { transform: translate(-50%, -50%) scale(1.12); }

.more-link {
  align-self: flex-end;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
}

/* ============ CARD D — squad / strip / badges ============ */

.squad-copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 60%;
}
.squad-copy p { font-size: clamp(13.5px, 1.05vw, 16px); line-height: 1.55; color: var(--ink-soft); }

.emote-row { display: flex; gap: 8px; }
.emote-row img {
  width: clamp(38px, 3.2vw, 50px);
  border-radius: 11px;
  transition: transform .25s ease;
}
.emote-row img:hover { transform: scale(1.18) rotate(-4deg); }

.mascot {
  position: absolute;
  right: -6%;
  bottom: -5%;
  width: 52%;
  max-width: 380px;
  transform: rotate(2deg);
  filter:
    drop-shadow(0 18px 18px rgba(10, 11, 8, .07))
    drop-shadow(0 5px 6px rgba(10, 11, 8, .07));
  transition: transform .35s ease;
  pointer-events: none;
}
.card-d:hover .mascot { transform: rotate(2deg) translateY(-6px); }

.panel-strip {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.panel-strip .card-title-sm { font-size: clamp(16px, 1.3vw, 20px); }
.panel-strip p { font-size: 12.5px; }
.strip-copy p { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }
.strip-actions { display: flex; align-items: center; gap: 14px; }
.strip-emote { width: 44px; border-radius: 10px; }

.badge-row {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.badge-row figure { text-align: center; }
.badge-row img {
  width: clamp(38px, 3.4vw, 58px);
  border-radius: 12px;
  transition: transform .25s ease;
}
.badge-row figure:hover img { transform: translateY(-4px) scale(1.08); }
.badge-row figcaption { font-size: 11px; font-weight: 500; color: var(--ink-soft); margin-top: 6px; }
.badge-row .gold { color: var(--olive); font-weight: 700; }

/* ============ FOOTER ============ */

.footer {
  flex: none;
  height: 54px;
  margin-top: var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--footer-txt);
  font-size: 13px;
  padding: 0 14px;
}
.footer-links { display: flex; gap: 18px; }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: var(--cream); }

/* ============ RESPONSIVE ============ */

@media (max-width: 1300px) and (min-width: 941px) {
  .discord-status .discord-status-label { display: none; }
  .squad-copy .cta-row { gap: 8px; }
  .squad-copy .btn { padding-right: 18px; padding-left: 18px; }
  .discord-status { padding-right: 12px; padding-left: 12px; }
}

@media (max-width: 940px) {
  .app { width: 100%; height: auto; min-height: 100dvh; padding: 14px 14px 0; }

  .bento,
  .bento[data-view="home"],
  .bento[data-view="clips"],
  .bento[data-view="about"],
  .bento[data-view="contact"] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: auto;
  }
  .bento[data-view="home"] .card-c,
  .bento[data-view="home"] .card-d,
  .bento[data-view="clips"] .card-c,
  .bento[data-view="clips"] .card-d,
  .bento[data-view="about"] .card-b,
  .bento[data-view="about"] .card-d,
  .bento[data-view="contact"] .card-c,
  .bento[data-view="contact"] .card-d { margin-bottom: 0; }
  .card-c [data-panel="home"] { padding-bottom: 26px; }

  .fillet { display: none; }

  .navband {
    position: sticky;
    top: 10px;
    z-index: 30;
    border-radius: 24px;
    height: 64px;
    padding: 0 10px 0 20px;
    box-shadow: 0 10px 30px rgba(10, 11, 8, .25);
  }
  .bento[data-view="about"] .navband { border-radius: 24px; }
  .brand-mark { width: 52px; height: 52px; margin-left: 0; }
  .nav { gap: 14px; }
  .nav-cta { padding: 10px 16px; font-size: 13px; }

  .card { border-radius: 32px; min-height: 0; }
  .card-a { border-radius: 32px; }
  .panel { position: static; }
  .panel-pad { padding: 26px 24px; }

  .hero-copy { max-width: 100%; gap: 14px; padding: 6px 0; }
  .contact-hero-copy { max-width: 100%; }
  .display { font-size: clamp(40px, 11vw, 56px); }
  .sparkle-1 { right: 8%; top: 12%; width: 34px; }
  .sparkle-2 { display: none; }

  .card-b .panel { padding: 10px 10px 16px; }
  .media { min-height: 230px; border-radius: 26px 26px 16px 16px; }

  .roster li { padding: 11px 0; }
  .clip-grid { grid-template-rows: none; }
  .clip-thumb { min-height: 130px; }

  .squad-copy { max-width: 100%; gap: 14px; }
  .mascot { position: static; width: 150px; margin: 10px 0 -40px auto; transform: rotate(-3deg); }

  .badge-row { flex-wrap: wrap; justify-content: flex-start; gap: 12px; }
  .panel-contact-social { flex-direction: column; align-items: flex-start; }
  .panel-contact-form { padding: 12px; }
  .contact-form-shell {
    grid-template-columns: minmax(170px, .62fr) minmax(0, 1.38fr);
    min-height: 300px;
  }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form textarea { min-height: 90px; }

  .footer { flex-direction: column; gap: 8px; height: auto; padding: 16px 4px 18px; }
}

@media (max-width: 620px) {
  .nav { gap: 11px; }
  .nav-link { font-size: 14px; }
  .nav-cta { display: none; }
  .roster .rotation-badge { display: none; }

  .contact-form-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .contact-form-intro {
    min-height: 210px;
    border-radius: 28px;
  }
  .contact-form-title { font-size: 38px; }
  .contact-form {
    gap: 12px;
    padding: 10px 4px 4px;
  }
  .contact-form-grid { gap: 10px; }
  .contact-form-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ============ REDUCED MOTION ============ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
