:root {
  --bg: #110f0d;
  --bg-2: #17130f;
  --surface: rgba(28, 23, 19, .74);
  --surface-solid: #1e1915;
  --text: #fffaf3;
  --muted: #b8aa9b;
  --accent: #e99513;
  --accent-2: #ffc45c;
  --line: rgba(255, 239, 218, .10);
  --line-strong: rgba(255, 219, 162, .20);
  --shadow: 0 24px 70px rgba(0,0,0,.36);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(180, 112, 27, .08), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }

::selection { background: rgba(233,149,19,.35); color: white; }

.page-loader {
  position: fixed; inset: 0; z-index: 999;
  display: grid; place-items: center;
  background: #0e0c0a;
  transition: opacity .55s ease, visibility .55s ease;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader__backdrop {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(233,149,19,.14), transparent 26%),
    linear-gradient(180deg, #15110d, #0d0b09);
}
.page-loader__content { position: relative; width: min(430px, 84vw); display: grid; place-items: center; }
.page-loader__logo { width: min(270px, 62vw); filter: drop-shadow(0 18px 35px rgba(0,0,0,.38)); animation: loaderFloat 2.7s ease-in-out infinite; }
.page-loader__line { width: 100%; height: 6px; margin-top: 28px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.07); }
.page-loader__line span { display: block; width: 0%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #c77600, var(--accent), var(--accent-2)); box-shadow: 0 0 24px rgba(233,149,19,.46); transition: width .12s linear; }
.page-loader__label { margin-top: 12px; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
@keyframes loaderFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-7px) scale(1.015); } }

.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 300;
  transform: translate(-50%, 24px);
  min-width: 220px; max-width: calc(100vw - 32px);
  padding: 12px 16px;
  border: 1px solid var(--line-strong); border-radius: 12px;
  background: rgba(22,18,15,.92); backdrop-filter: blur(14px);
  color: #fff; text-align: center; font-size: .82rem; font-weight: 700;
  opacity: 0; pointer-events: none;
  box-shadow: var(--shadow);
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* Login */
.login-modal { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .22s ease, visibility .22s ease; }
.login-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.login-modal__backdrop { position: absolute; inset: 0; border: 0; background: rgba(5,5,7,.78); backdrop-filter: blur(13px); }
.login-modal__panel {
  position: relative; width: min(590px, calc(100vw - 28px));
  padding: 42px 42px 34px; border-radius: 14px;
  background: #27232b; border: 1px solid rgba(255,255,255,.055);
  box-shadow: 0 28px 80px rgba(0,0,0,.48);
  text-align: center;
  transform: translateY(18px) scale(.975);
  transition: transform .24s cubic-bezier(.2,.8,.2,1);
}
.login-modal.is-open .login-modal__panel { transform: translateY(0) scale(1); }
.login-modal__close { position: absolute; top: 12px; right: 13px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: transparent; color: #a9a2ac; font-size: 1.35rem; cursor: pointer; }
.login-modal__close:hover { color: white; background: rgba(255,255,255,.07); }
.login-modal__brand { display: none; }
.login-modal h2 { color: #fff; font-size: 1.05rem; font-weight: 900; letter-spacing: -.01em; }
.login-modal__description { width: min(440px, 100%); margin: 5px auto 0; color: #bbb2bf; font-size: .86rem; line-height: 1.45; }
.login-form { margin-top: 14px; }
.username-field {
  height: 47px; display: flex; align-items: center;
  border: 1px solid transparent; border-radius: 5px;
  background: #302c35; overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.username-field:focus-within { border-color: rgba(229,145,0,.55); background: #342f38; box-shadow: 0 0 0 3px rgba(229,145,0,.08); }
.username-field.is-invalid { border-color: rgba(255,80,95,.7); box-shadow: 0 0 0 3px rgba(255,80,95,.08); }
.username-field__head { position: relative; width: 42px; height: 42px; margin-left: 7px; flex: 0 0 42px; display: grid; place-items: center; overflow: visible; background: transparent; }
.username-field__head img { width: 40px; height: 40px; object-fit: contain; image-rendering: pixelated; transition: opacity .18s ease, transform .18s ease; }
.username-field__head.is-loading img { opacity: .45; transform: scale(.9); }
.username-field input { width: 100%; height: 100%; min-width: 0; padding: 0 14px 0 7px; border: 0; outline: 0; background: transparent; color: white; font-size: .94rem; font-weight: 600; }
.username-field input::placeholder { color: #817a85; font-weight: 500; }
.username-message { min-height: 18px; margin-top: 5px; color: #817a85; text-align: left; font-size: .67rem; }
.username-message.is-error { color: #ff7d89; font-weight: 700; }
.login-continue { width: 100%; height: 49px; margin-top: 4px; border: 0; border-radius: 5px; background: #e58d00; color: white; font-size: .8rem; font-weight: 900; cursor: pointer; transition: transform .16s ease, background .16s ease, box-shadow .16s ease; }
.login-continue:hover { background: #f19a05; transform: translateY(-1px); box-shadow: 0 10px 25px rgba(229,141,0,.18); }
.edition-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 10px; color: #c4bac8; font-size: .83rem; }
.edition-toggle { display: flex; gap: 0; }
.edition-toggle__button { min-width: 42px; height: 31px; padding: 0 11px; border: 0; background: #35313a; color: #c8becb; font-size: .75rem; font-weight: 900; cursor: pointer; }
.edition-toggle__button:first-child { border-radius: 3px 0 0 3px; }
.edition-toggle__button:last-child { border-radius: 0 3px 3px 0; }
.edition-toggle__button.is-active { background: #ef344d; color: white; }

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 76px; padding: 0 5vw;
  display: grid; grid-template-columns: 170px 1fr 170px; align-items: center;
  border-bottom: 1px solid transparent;
  transition: height .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav.is-scrolled { height: 66px; background: rgba(13,11,9,.82); backdrop-filter: blur(18px); border-color: var(--line); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.nav__mini-logo { width: 80px; opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.nav.is-scrolled .nav__mini-logo { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav__links { justify-self: center; display: flex; align-items: center; gap: 30px; }
.nav__links a { position: relative; color: rgba(255,250,243,.7); font-size: .76rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; transition: color .18s ease; }
.nav__links a:hover, .nav__links a.is-active { color: white; }
.nav__links a::after { content:""; position: absolute; left: 50%; bottom: -9px; width: 0; height: 2px; border-radius: 999px; background: var(--accent); transform: translateX(-50%); transition: width .18s ease; }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 18px; }
.account { justify-self: end; display: flex; align-items: center; gap: 9px; border: 0; background: transparent; cursor: pointer; }
.account__copy { display: grid; text-align: right; line-height: 1; }
.account__copy strong { font-size: .88rem; font-weight: 800; }
.account__copy small { margin-top: 4px; color: var(--accent-2); font-size: .61rem; font-weight: 900; letter-spacing: .04em; }
.account__avatar { width: 34px; height: 34px; display: grid; place-items: center; background: transparent; overflow: visible; }
.account__avatar img { width: 34px; height: 34px; object-fit: contain; image-rendering: pixelated; }
.nav__menu { display: none; justify-self: end; width: 38px; height: 38px; border: 0; background: transparent; cursor: pointer; }
.nav__menu span { display: block; width: 22px; height: 2px; margin: 4px auto; border-radius: 999px; background: white; }

/* Hero */
.hero { position: relative; min-height: 100svh; overflow: hidden; isolation: isolate; display: grid; align-items: center; }
.hero__media { position: absolute; inset: 0; z-index: -5; overflow: hidden; background: #1a1714; }
.hero__poster, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__poster { z-index: 0; transform: scale(1.025); filter: saturate(.96) contrast(1.02); }
.hero__video { z-index: 1; transform: scale(1.025); opacity: 0; transition: opacity .6s ease; }
.hero__video.is-playing { opacity: 1; }
.hero__veil { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(14,12,10,.34), rgba(16,13,10,.12) 35%, rgba(13,11,9,.62) 76%, #110f0d 100%), radial-gradient(circle at 50% 42%, rgba(240,170,72,.05), transparent 32%); }
.hero__vignette { position: absolute; inset: -5%; z-index: 3; box-shadow: inset 0 0 180px 30px rgba(0,0,0,.48); }
.hero__grain { position: absolute; inset: 0; z-index: 4; pointer-events: none; opacity: .14; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.hero__inner { width: min(740px, 90vw); margin: 0 auto; padding-top: 58px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__eyebrow { padding: 8px 12px; border: 1px solid rgba(255,226,184,.16); border-radius: 999px; background: rgba(20,17,14,.26); backdrop-filter: blur(8px); color: rgba(255,243,226,.78); font-size: .67rem; font-weight: 900; letter-spacing: .22em; }
.hero__logo { width: min(390px, 73vw); margin-top: 20px; filter: drop-shadow(0 26px 34px rgba(0,0,0,.38)); animation: heroFloat 5s ease-in-out infinite; }
.hero__subtitle { max-width: 540px; margin-top: 4px; color: rgba(255,247,236,.76); font-size: clamp(.95rem, 1.5vw, 1.08rem); line-height: 1.65; text-shadow: 0 4px 18px rgba(0,0,0,.35); }
.hero__actions { display: flex; gap: 10px; margin-top: 23px; }
.button { min-height: 48px; padding: 0 18px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; font-size: .8rem; font-weight: 900; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease; }
.button svg { width: 18px; height: 18px; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: linear-gradient(180deg, #f2a11b, #dd8400); color: #1c1307; box-shadow: 0 12px 28px rgba(222,132,0,.18), inset 0 1px 0 rgba(255,255,255,.35); }
.button--primary:hover { box-shadow: 0 18px 34px rgba(222,132,0,.25), inset 0 1px 0 rgba(255,255,255,.4); }
.button--glass { background: rgba(17,14,12,.44); border-color: rgba(255,255,255,.12); color: white; backdrop-filter: blur(12px); }
.button--glass:hover { background: rgba(23,19,16,.62); border-color: rgba(255,221,169,.22); }
.button--dark { background: #17130f; border-color: var(--line-strong); }

.quick-card {
  position: absolute; bottom: 55px; z-index: 5;
  display: flex; align-items: center; gap: 12px;
  border: 0; background: transparent; cursor: pointer;
  transition: transform .2s ease;
}
.quick-card:hover { transform: translateY(-3px); }
.quick-card--ip { left: 6vw; text-align: left; }
.quick-card--discord { right: 6vw; text-align: right; }
.quick-card__icon { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 13px; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.quick-card__icon svg { width: 25px; height: 25px; }
.quick-card__icon--warm { background: #e99513; color: #25180a; }
.quick-card__icon--discord { background: #e99513; color: #25180a; }
.quick-card__copy { display: grid; gap: 1px; }
.quick-card__copy--right { justify-items: end; }
.quick-card small { color: rgba(255,250,243,.62); font-size: .58rem; font-weight: 900; letter-spacing: .14em; }
.quick-card strong { max-width: 250px; color: var(--accent-2); font-size: .88rem; font-weight: 900; letter-spacing: .02em; word-break: break-word; }
.quick-card em { color: white; font-size: .57rem; font-style: normal; font-weight: 900; letter-spacing: .12em; }
.hero__scroll { position: absolute; left: 50%; bottom: 22px; z-index: 5; transform: translateX(-50%); display: grid; place-items: center; gap: 6px; color: rgba(255,255,255,.42); font-size: .5rem; font-weight: 900; letter-spacing: .25em; }
.hero__scroll i { display: block; width: 1px; height: 26px; background: linear-gradient(180deg, rgba(255,255,255,.7), transparent); animation: scrollPulse 1.6s ease-in-out infinite; }
.ambient { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.ambient i { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: #ffc96c; box-shadow: 0 0 12px 3px rgba(255,190,90,.42); opacity: 0; animation: ember 8s infinite ease-in-out; }
.ambient i:nth-child(1){left:10%;top:72%;animation-delay:.3s}.ambient i:nth-child(2){left:20%;top:42%;animation-delay:2s}.ambient i:nth-child(3){left:34%;top:80%;animation-delay:4.4s}.ambient i:nth-child(4){left:54%;top:26%;animation-delay:1.2s}.ambient i:nth-child(5){left:66%;top:70%;animation-delay:5s}.ambient i:nth-child(6){left:78%;top:38%;animation-delay:3s}.ambient i:nth-child(7){left:88%;top:76%;animation-delay:6.1s}.ambient i:nth-child(8){left:47%;top:86%;animation-delay:7s}
@keyframes heroFloat { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }
@keyframes scrollPulse { 0%,100%{transform:scaleY(.25);transform-origin:top;opacity:.3}50%{transform:scaleY(1);opacity:.9} }
@keyframes ember { 0%,100%{opacity:0;transform:translate(0,20px)}20%{opacity:.8}55%{opacity:.3;transform:translate(22px,-42px)}78%{opacity:.8}90%{opacity:0;transform:translate(-12px,-74px)} }

/* Sections */
.section { position: relative; width: min(1180px, 90vw); margin: 0 auto; padding: 108px 0; }
.section__head { max-width: 720px; margin: 0 auto; text-align: center; }
.section__kicker { color: var(--accent-2); font-size: .66rem; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.section__head h2, .showcase__copy h2, .community h2 { margin-top: 10px; font-family: "Manrope", sans-serif; font-size: clamp(2rem, 4.2vw, 3.55rem); line-height: 1.04; letter-spacing: -.05em; }
.section__head p { margin-top: 15px; color: var(--muted); line-height: 1.8; font-size: .96rem; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-top: 42px; }
.feature-card { position: relative; min-height: 250px; padding: 28px 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(36,29,23,.72), rgba(25,21,17,.78)); box-shadow: 0 20px 50px rgba(0,0,0,.13); transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--line-strong); background: linear-gradient(180deg, rgba(43,34,26,.82), rgba(28,23,18,.84)); }
.feature-card::after { content:""; position:absolute; right:-40px; bottom:-50px; width:130px; height:130px; border-radius:50%; background: radial-gradient(circle, rgba(233,149,19,.12), transparent 68%); }
.feature-card__number { position: absolute; top: 20px; right: 20px; color: rgba(255,255,255,.14); font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.feature-card__icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: rgba(233,149,19,.12); border: 1px solid rgba(233,149,19,.16); color: var(--accent-2); font-size: 1.15rem; }
.feature-card h3 { margin-top: 22px; font-family: "Manrope", sans-serif; font-size: 1.08rem; }
.feature-card p { margin-top: 9px; color: var(--muted); font-size: .85rem; line-height: 1.65; }

.showcase { padding-top: 52px; }
.showcase__panel { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 500px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #1a1612; box-shadow: var(--shadow); }
.showcase__media { position: relative; min-height: 500px; overflow: hidden; }
.showcase__media > img:first-child { width: 100%; height: 100%; object-fit: cover; }
.showcase__media-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 45%, #1a1612 100%), linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.34)); }
.showcase__floating-logo { position: absolute; left: 50%; top: 52%; width: min(320px, 60%); transform: translate(-50%,-50%); filter: drop-shadow(0 22px 30px rgba(0,0,0,.32)); }
.showcase__copy { align-self: center; padding: 54px 52px 54px 20px; }
.showcase__copy p { margin-top: 16px; color: var(--muted); line-height: 1.85; }
.showcase__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.showcase__chips span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.025); color: #d8c8b8; font-size: .7rem; font-weight: 800; }

.section--join { padding-top: 72px; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 38px; }
.step { min-height: 200px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(28,23,19,.66); }
.step__index { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: #e99513; color: #25180a; font-size: .75rem; font-weight: 900; }
.step h3 { margin-top: 20px; font-family: "Manrope", sans-serif; font-size: 1.08rem; }
.step p { margin-top: 8px; color: var(--muted); font-size: .84rem; line-height: 1.7; }
.inline-copy { width: 100%; margin-top: 14px; padding: 11px 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--line); border-radius: 10px; background: #15120f; color: #f2dfc7; font-size: .76rem; font-weight: 700; cursor: pointer; }
.inline-copy span { color: var(--accent-2); font-size: .62rem; font-weight: 900; }

.community { min-height: 420px; margin-bottom: 90px; padding: 68px 76px; overflow: hidden; display: grid; grid-template-columns: 1fr 360px; align-items: center; border: 1px solid var(--line-strong); border-radius: var(--radius-xl); background: linear-gradient(135deg, #231a11, #17120e 58%, #15110e); box-shadow: var(--shadow); }
.community__glow { position: absolute; left: 48%; top: 50%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(233,149,19,.13), transparent 68%); transform: translate(-50%,-50%); filter: blur(12px); }
.community__content { position: relative; z-index: 2; }
.community__content p { margin-top: 14px; color: var(--muted); font-size: .95rem; }
.community__actions { display: flex; gap: 10px; margin-top: 22px; }
.community__logo { position: relative; z-index: 2; width: 320px; justify-self: end; filter: drop-shadow(0 24px 36px rgba(0,0,0,.34)); }

.footer { padding: 42px 5vw 34px; border-top: 1px solid var(--line); background: #0d0b09; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.footer__brand img { width: 92px; }
.footer__brand p { margin-top: 7px; color: #8f8275; font-size: .76rem; }
.footer__links { display: flex; gap: 20px; color: #b9aa9a; font-size: .72rem; font-weight: 700; }
.footer__links a:hover { color: var(--accent-2); }
.footer__legal { grid-column: 1 / -1; color: #665d54; font-size: .65rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .nav { grid-template-columns: 120px 1fr 150px; padding-inline: 3.5vw; }
  .nav__links { gap: 20px; }
  .quick-card--ip { left: 4vw; }
  .quick-card--discord { right: 4vw; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .showcase__panel { grid-template-columns: 1fr; }
  .showcase__media { min-height: 390px; }
  .showcase__media-overlay { background: linear-gradient(180deg, transparent 45%, #1a1612 100%); }
  .showcase__copy { padding: 36px 34px 42px; }
  .community { grid-template-columns: 1fr 290px; padding: 55px 50px; }
  .community__logo { width: 270px; }
}

@media (max-width: 820px) {
  .nav { height: 66px; grid-template-columns: 1fr auto auto; padding-inline: 18px; background: rgba(13,11,9,.68); backdrop-filter: blur(16px); border-color: var(--line); }
  .nav__mini-logo { opacity: 1; transform: none; pointer-events: auto; width: 68px; }
  .nav__links { position: absolute; top: 66px; left: 12px; right: 12px; display: grid; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: rgba(18,15,12,.97); backdrop-filter: blur(18px); box-shadow: var(--shadow); opacity: 0; transform: translateY(-10px); visibility: hidden; pointer-events: none; transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .nav__links.is-open { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
  .nav__links a { padding: 12px 10px; }
  .nav__links a::after { display: none; }
  .account { margin-right: 6px; }
  .account__copy { display: none; }
  .nav__menu { display: block; }
  .hero__inner { padding-top: 66px; }
  .hero__logo { width: min(345px, 72vw); }
  .quick-card { bottom: 30px; }
  .quick-card strong { max-width: 190px; font-size: .76rem; }
  .hero__scroll { display: none; }
  .steps { grid-template-columns: 1fr; }
  .community { grid-template-columns: 1fr; text-align: center; padding: 50px 28px; }
  .community__content { max-width: 640px; margin: 0 auto; }
  .community__actions { justify-content: center; }
  .community__logo { width: 250px; justify-self: center; margin-top: 28px; }
}

@media (max-width: 620px) {
  .login-modal__panel { padding: 42px 18px 28px; }
  .login-modal__description { font-size: .79rem; }
  .hero { min-height: 820px; }
  .hero__inner { width: min(92vw, 520px); padding-top: 72px; justify-self: center; align-self: start; margin-top: 84px; }
  .hero__eyebrow { font-size: .58rem; letter-spacing: .16em; }
  .hero__logo { width: min(310px, 76vw); margin-top: 14px; }
  .hero__subtitle { max-width: 350px; font-size: .9rem; }
  .hero__actions { width: 100%; flex-direction: column; }
  .button { width: 100%; }
  .quick-card { position: absolute; left: 18px; right: 18px; width: auto; justify-content: flex-start; padding: 12px; border: 1px solid rgba(255,255,255,.07); border-radius: 15px; background: rgba(17,14,12,.48); backdrop-filter: blur(12px); }
  .quick-card--ip { bottom: 90px; }
  .quick-card--discord { bottom: 22px; }
  .quick-card--discord .quick-card__copy { order: 2; align-items: start; text-align: left; justify-items: start; }
  .quick-card--discord .quick-card__icon { order: 1; }
  .quick-card strong { max-width: none; font-size: .78rem; }
  .section { width: min(92vw, 560px); padding: 82px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 210px; }
  .showcase { padding-top: 32px; }
  .showcase__media { min-height: 300px; }
  .showcase__copy { padding: 30px 24px 34px; }
  .community { margin-bottom: 54px; padding: 42px 22px; }
  .community__actions { flex-direction: column; }
  .footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer__brand img { margin: 0 auto; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
  .footer__legal { grid-column: auto; }
}

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