:root {
  --ink: #f6f4ff;
  --muted: #aaa9bd;
  --night: #080a14;
  --panel: rgba(20, 21, 39, 0.72);
  --violet: #9a7dff;
  --violet-light: #c3b4ff;
  --line: rgba(255,255,255,.12);
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.ambient-shimmer { position: fixed; z-index: 10; inset: 0; overflow: hidden; pointer-events: none; }
.ambient-shimmer::before { content: ""; position: absolute; top: -22%; right: -8%; width: min(78vw, 980px); height: 92%; opacity: .16; will-change: transform, opacity; background: repeating-linear-gradient(112deg, transparent 0 11%, rgba(255,224,157,.075) 11.4%, transparent 12.4% 21%); transform: rotate(-5deg); animation: sunShafts 24s ease-in-out infinite alternate; }
.ambient-shimmer::after { content: ""; position: absolute; left: -18%; bottom: -14%; width: min(86vw, 1050px); height: min(38vw, 430px); opacity: .18; will-change: transform, opacity; background: radial-gradient(ellipse, rgba(68,205,155,.13), rgba(69,116,225,.055) 48%, transparent 72%); animation: forestBreath 20s ease-in-out infinite alternate; }
.ambient-shimmer i { position: absolute; width: min(90vw, 1100px); height: min(42vw, 480px); border-radius: 50%; opacity: .42; will-change: transform, opacity; background: radial-gradient(ellipse, rgba(83,139,255,.13) 0, rgba(113,75,224,.07) 42%, transparent 72%); animation: worldShimmer 18s ease-in-out infinite alternate; }
.ambient-shimmer i:first-child { top: 2%; left: -25%; transform: rotate(-9deg); }
.ambient-shimmer i:last-child { right: -28%; bottom: 4%; background: radial-gradient(ellipse, rgba(85,218,181,.1), rgba(83,139,255,.055) 44%, transparent 72%); animation-delay: -9s; animation-duration: 22s; }
@keyframes worldShimmer { 0% { opacity: .24; transform: translate3d(-3%,2%,0) scale(.9) rotate(-7deg); } 100% { opacity: .68; transform: translate3d(8%,-5%,0) scale(1.12) rotate(4deg); } }
@keyframes sunShafts { 0% { opacity: .08; transform: translate3d(-4%,-2%,0) rotate(-7deg); } 100% { opacity: .25; transform: translate3d(5%,4%,0) rotate(-2deg); } }
@keyframes forestBreath { 0% { opacity: .1; transform: translate3d(-4%,3%,0) scale(.9); } 100% { opacity: .28; transform: translate3d(7%,-4%,0) scale(1.13); } }
.nav {
  position: fixed;
  z-index: 15;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 36px));
  min-height: 62px;
  padding: 8px 9px 8px 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(8, 10, 20, .58);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 50px rgba(0,0,0,.2);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 14px; letter-spacing: .12em; }
.brand-icon {
  width: 31px;
  height: 31px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(151,122,255,.18);
}
.nav nav { display: flex; gap: 36px; color: #c3c2cf; font-size: 13px; }
.nav nav a { transition: color .2s; }
.nav nav a:hover { color: white; }
.network-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 10px 5px 6px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 11px;
  background: rgba(255,255,255,.045);
  transition: transform .2s, border-color .2s, background .2s;
}
.network-link:hover {
  transform: translateY(-2px);
  border-color: rgba(195,180,255,.38);
  background: rgba(154,125,255,.1);
}
.network-link img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 16px rgba(154,125,255,.25);
}
.network-link span { display: grid; gap: 3px; }
.network-link small { color: #7d7b8b; font: 500 7px/1 var(--mono); letter-spacing: .12em; }
.network-link strong { font-size: 10px; line-height: 1; letter-spacing: .11em; }
.network-link b { margin-left: 2px; color: var(--violet-light); font-size: 11px; }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform .2s, background .2s;
}
.nav-cta { padding: 13px 17px; background: #f5f2ff; color: #151020; font-size: 13px; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-art, .join-bg {
  position: absolute;
  z-index: -3;
  inset: -10%;
  background: url("assets/whycraft-world.jpg") center 55% / cover no-repeat;
  will-change: transform;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,7,15,.91) 0%, rgba(5,7,15,.57) 42%, rgba(5,7,15,.1) 75%),
              linear-gradient(0deg, var(--night) 0%, transparent 24%, rgba(7,8,17,.2) 100%);
}
.hero-glow {
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 440px;
  right: 10%;
  top: 20%;
  border-radius: 50%;
  background: rgba(130,91,255,.17);
  filter: blur(90px);
  will-change: transform;
}
.hero-content { width: min(1180px, calc(100% - 48px)); margin: 70px auto 0; }
.eyebrow, .kicker, .card-label, .section-number {
  font: 500 11px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--violet-light);
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 24px; height: 1px; background: var(--violet-light); }
.hero-logo {
  width: clamp(240px, 32vw, 470px);
  height: auto;
  margin: 25px 0 -8px;
  display: block;
  filter: drop-shadow(0 18px 25px rgba(0,0,0,.45));
}
h1, h2 { margin: 0; letter-spacing: -.065em; line-height: .92; }
h1 { max-width: 850px; margin-top: 28px; font-size: clamp(58px, 7.4vw, 108px); font-weight: 700; }
h1 em { color: var(--violet-light); font-style: normal; font-weight: 500; }
.hero-copy { max-width: 510px; margin: 33px 0 0; color: #c5c3d0; font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button { min-height: 53px; padding: 0 23px; font-size: 13px; }
.primary { color: #161021; background: #f7f4ff; }
.ghost { border: 1px solid var(--line); background: rgba(13,14,27,.45); backdrop-filter: blur(10px); }
.play { color: var(--violet-light); font-size: 10px; }
.hero-meta {
  position: absolute;
  bottom: 25px;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8b8997;
  font: 10px var(--mono);
  letter-spacing: .13em;
}
.mouse { width: 20px; height: 31px; border: 1px solid #706e7a; border-radius: 12px; padding-top: 6px; display: flex; justify-content: center; }
.mouse i { width: 2px; height: 6px; border-radius: 2px; background: white; animation: scroll 1.7s infinite; }
@keyframes scroll { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }
.intro {
  position: relative;
  min-height: 880px;
  padding: 150px max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background: radial-gradient(circle at 22% 55%, rgba(105,71,200,.14), transparent 28%), #0a0b15;
}
.ambient-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(143,109,255,.13);
  filter: blur(75px);
  will-change: transform;
}
.intro-orb { width: 420px; height: 420px; top: 220px; left: 12%; }
.section-number { color: #656473; }
.intro-copy { position: relative; z-index: 2; max-width: 670px; margin: 150px auto 0; }
.intro h2, .join h2 { font-size: clamp(55px, 7vw, 100px); font-weight: 600; }
.intro-copy > p:last-child { max-width: 560px; margin: 35px 0 0 110px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.floating-card {
  position: absolute;
  overflow: hidden;
  width: 290px;
  height: 390px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background-image: linear-gradient(0deg, rgba(6,7,15,.7), transparent), url("assets/whycraft-world.jpg");
  background-size: 900px auto;
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
  will-change: transform;
}
.floating-card span { position: absolute; bottom: 22px; left: 24px; font: 11px var(--mono); letter-spacing: .2em; }
.card-one { top: 110px; right: -80px; background-position: 65% center; filter: blur(.2px); }
.card-two { bottom: 40px; left: -95px; width: 250px; height: 330px; background-position: 10% center; filter: blur(1px); opacity: .72; }
.features {
  position: relative;
  padding: 145px max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: radial-gradient(circle at 82% 14%, rgba(103,74,194,.13), transparent 27%), #080914;
}
.features::before {
  content: "";
  position: absolute;
  top: 260px;
  left: 50%;
  width: 1px;
  height: 190px;
  background: linear-gradient(var(--violet), transparent);
  opacity: .3;
}
.feature-scenery { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.scenery-slice {
  position: absolute;
  width: 260px;
  height: 370px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background-image: linear-gradient(0deg, rgba(8,9,20,.65), transparent), url("assets/whycraft-world.jpg");
  background-size: 1050px auto;
  box-shadow: 0 35px 80px rgba(0,0,0,.28);
  opacity: .2;
  filter: saturate(.7) blur(.4px);
  will-change: transform;
}
.slice-one { top: 90px; left: -125px; background-position: 8% center; rotate: -6deg; }
.slice-two { top: 420px; right: -150px; width: 310px; height: 440px; background-position: 65% center; rotate: 5deg; }
.slice-three { bottom: 10px; left: 6%; width: 190px; height: 260px; background-position: 90% center; opacity: .11; rotate: 3deg; }
.feature-orb { width: 520px; height: 520px; right: 3%; top: 35%; background: rgba(74,116,255,.1); }
.features-heading { max-width: 800px; margin: 0 auto; text-align: center; }
.features-heading .section-number { margin-bottom: 70px; }
.features-heading h2 { font-size: clamp(55px, 7vw, 96px); font-weight: 600; }
.features-heading > p:last-child { max-width: 670px; margin: 30px auto 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.feature-showcase {
  position: relative;
  height: clamp(420px, 53vw, 620px);
  margin-top: 80px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #090a14;
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
}
.feature-showcase::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,7,16,.92), rgba(5,7,16,.22) 63%, transparent), linear-gradient(0deg, rgba(5,7,16,.75), transparent 45%); }
.cinematic-image { width: 100%; height: 118%; margin-top: -9%; display: block; object-fit: cover; will-change: transform; }
.showcase-caption { position: absolute; z-index: 2; left: clamp(25px, 6vw, 72px); bottom: clamp(30px, 7vw, 80px); max-width: 520px; }
.showcase-caption h3 { margin: 15px 0 18px; font-size: clamp(35px, 4.5vw, 61px); line-height: 1.03; letter-spacing: -.05em; }
.showcase-caption > p:last-child { max-width: 480px; margin: 0; color: #aaa8b7; font-size: 13px; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 22px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--line); }
.feature-card {
  position: relative;
  min-height: 355px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: #0d0e1b;
  transition: background .3s;
}
.feature-card:hover { background: #121326; }
.feature-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 25% 10%, rgba(151,122,255,.11), transparent 35%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.feature-card:hover::after { opacity: 1; }
.feature-number { position: absolute; top: 25px; right: 27px; color: #4f4d5d; font: 9px var(--mono); }
.feature-symbol {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 45px;
  border: 1px solid rgba(193,177,255,.2);
  border-radius: 11px;
  color: var(--violet-light);
  background: rgba(151,122,255,.07);
  font: 18px var(--mono);
}
.feature-card h3 { margin: 0 0 15px; font-size: 22px; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: #9997a8; font-size: 13px; line-height: 1.75; }
.feature-tag { margin-top: auto; padding-top: 28px; color: #666474; font: 8px var(--mono); letter-spacing: .13em; }
.feature-ribbon {
  margin-top: 30px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #8f8d9d;
  background: rgba(255,255,255,.018);
  font: 9px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.feature-ribbon i { width: 3px; height: 3px; flex: 0 0 auto; border-radius: 50%; background: var(--violet); }
.artifact-showcase {
  position: relative;
  height: clamp(390px, 49vw, 570px);
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #090a14;
}
.artifact-showcase::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 25%, rgba(7,7,16,.13) 48%, rgba(7,7,16,.9) 76%), linear-gradient(0deg, rgba(6,6,14,.65), transparent 50%); }
.artifact-copy { position: absolute; z-index: 2; top: 50%; right: clamp(25px, 6vw, 70px); width: min(420px, 42%); transform: translateY(-50%); }
.artifact-copy .feature-number { position: static; color: #b698ff; letter-spacing: .14em; }
.artifact-copy h3 { margin: 16px 0 20px; font-size: clamp(35px, 4vw, 57px); line-height: 1.04; letter-spacing: -.05em; }
.artifact-copy p { margin: 0; color: #aaa8b6; font-size: 13px; line-height: 1.75; }
.reputation {
  position: relative;
  min-height: 900px;
  padding: 145px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, #0a1320, #090a14 48%, #190c12);
}
.reputation::before { content: ""; position: absolute; inset: -8%; background: url("assets/whycraft-reputation.jpg") center / cover no-repeat; }
.reputation::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,12,21,.91), rgba(8,9,19,.61) 52%, rgba(23,8,13,.68)); }
.reputation-glow { position: absolute; z-index: 1; right: 3%; top: 18%; width: 450px; height: 450px; border-radius: 50%; background: rgba(208,55,69,.12); filter: blur(90px); will-change: transform; }
.reputation-copy, .reputation-panel { position: relative; z-index: 2; }
.reputation-copy .section-number { margin-bottom: 75px; }
.reputation-copy h2 { max-width: 720px; font-size: clamp(52px, 6vw, 88px); font-weight: 600; }
.reputation-copy > p:not(.section-number):not(.kicker) { max-width: 650px; margin: 30px 0 0; color: #aaa9b6; font-size: 16px; line-height: 1.8; }
.reputation-copy > p strong { color: #f1c4c7; }
.reputation-points { margin-top: 45px; border-top: 1px solid var(--line); }
.reputation-points > div { padding: 18px 0; display: grid; grid-template-columns: 38px 1fr; gap: 10px; border-bottom: 1px solid var(--line); }
.reputation-points span { padding-top: 4px; color: #666574; font: 9px var(--mono); }
.reputation-points p { margin: 0; color: #8f8d9d; font-size: 12px; line-height: 1.55; }
.reputation-points strong { display: block; margin-bottom: 3px; color: white; font-size: 13px; }
.reputation-panel { padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(13,13,25,.72); backdrop-filter: blur(20px); box-shadow: 0 40px 100px rgba(0,0,0,.35); }
.alignment-labels { display: flex; justify-content: space-between; color: #686675; font: 8px var(--mono); letter-spacing: .12em; }
.alignment-track { position: relative; height: 7px; margin: 18px 2px 48px; display: grid; grid-template-columns: 1fr .65fr 1fr; gap: 3px; }
.alignment-track i { display: block; }
.track-good { border-radius: 5px 0 0 5px; background: linear-gradient(90deg, #4a9de1, #7083c7); }
.track-neutral { background: #767482; }
.track-bad { border-radius: 0 5px 5px 0; background: linear-gradient(90deg, #a35a69, #d04c54); }
.alignment-marker { position: absolute; top: -9px; left: 74%; padding: 4px 6px; transform: translateX(-50%); border: 2px solid #fff; border-radius: 5px; color: #18101a; background: white; box-shadow: 0 0 20px rgba(255,255,255,.3); font: 7px var(--mono); }
.outlaw-card { position: relative; padding: 32px 26px; display: grid; grid-template-columns: 55px 1fr; gap: 20px; border: 1px solid rgba(224,83,93,.24); border-radius: 14px; background: linear-gradient(135deg, rgba(130,37,48,.19), rgba(255,255,255,.02)); }
.wanted { position: absolute; top: 14px; right: 15px; padding: 6px 8px; border-radius: 99px; color: #ff9ca3; background: rgba(222,71,82,.12); font: 8px var(--mono); letter-spacing: .14em; }
.outlaw-icon { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(224,83,93,.3); border-radius: 13px; color: #ff8d95; background: rgba(224,83,93,.1); font-size: 20px; }
.outlaw-card small { color: #986c73; font: 7px var(--mono); letter-spacing: .12em; }
.outlaw-card h3 { margin: 8px 0 10px; font-size: 25px; }
.outlaw-card p { margin: 0; color: #9c929b; font-size: 12px; line-height: 1.7; }
.mercy-note { margin-top: 12px; padding: 18px; display: flex; gap: 14px; align-items: center; border: 1px solid var(--line); border-radius: 12px; }
.mercy-note > span { color: var(--violet-light); }
.mercy-note p { margin: 0; color: #898795; font-size: 11px; line-height: 1.55; }
.mercy-note strong { color: #d3d1dc; }
.about {
  min-height: 760px;
  padding: 130px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  border-top: 1px solid var(--line);
  background: linear-gradient(145deg, #0d0e1d, #090a14 65%);
}
.about-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(193,177,255,.18);
  border-radius: 24px;
  box-shadow: 0 35px 90px rgba(0,0,0,.4);
}
.about-art::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 60px rgba(4,5,12,.3); pointer-events: none; }
.about-art img { width: 100%; height: 116%; margin-top: -8%; display: block; object-fit: cover; will-change: transform; }
.about-copy h2 { max-width: 700px; font-size: clamp(50px, 6vw, 84px); font-weight: 600; }
.about-copy > p:not(.kicker) { max-width: 630px; margin: 30px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.social-links { display: flex; gap: 12px; margin-top: 38px; }
.social-links a {
  min-width: 190px;
  padding: 15px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s, border-color .2s, background .2s;
}
.social-links a:hover { transform: translateY(-3px); border-color: rgba(193,177,255,.35); background: rgba(151,122,255,.09); }
.social-links small { display: block; margin-bottom: 3px; color: #737181; font: 7px var(--mono); letter-spacing: .13em; }
.social-links b { color: #777485; font-size: 12px; }
.social-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; color: #17111f; background: #ff6170; font-size: 11px; }
.discord-icon { color: white; background: #796cff; font-size: 18px; }
.reddit-icon { color: white; background: #ff4500; font: 700 13px var(--mono); }
.join {
  position: relative;
  overflow: hidden;
  padding: 145px max(24px, calc((100vw - 1180px) / 2)) 170px;
  isolation: isolate;
}
.join-bg { inset: -15%; opacity: .16; filter: blur(5px) saturate(.7); background-position: center bottom; }
.join::before { content: ""; position: absolute; z-index: -2; inset: 0; background: linear-gradient(#090a14 0%, rgba(9,10,20,.7) 45%, #080914 100%); }
.join-mist {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(95px);
  will-change: transform;
}
.mist-one { top: 300px; left: -220px; background: rgba(116,81,220,.13); }
.mist-two { bottom: 80px; right: -260px; background: rgba(255,155,67,.08); }
.join-heading { text-align: center; }
.join-heading > p:last-child { color: var(--muted); }
.version-note {
  width: fit-content;
  max-width: 620px;
  margin: 22px auto 0;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(195,180,255,.18);
  border-radius: 10px;
  background: rgba(15,16,33,.56);
  text-align: left;
}
.version-note strong {
  flex: 0 0 auto;
  color: var(--violet-light);
  font: 500 9px/1.4 var(--mono);
  letter-spacing: .1em;
}
.version-note span { color: #9290a3; font-size: 11px; line-height: 1.5; }
.join-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 70px; }
.join-card {
  position: relative;
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  transition: transform .3s, border-color .3s;
}
.join-card:hover { transform: translateY(-8px); border-color: rgba(194,178,255,.42); }
.join-card.featured { background: linear-gradient(145deg, rgba(74,58,126,.7), rgba(20,21,39,.8)); }
.recommended { position: absolute; top: 18px; right: 18px; border-radius: 99px; padding: 7px 10px; color: #d8cfff; background: rgba(169,143,255,.16); font: 9px var(--mono); letter-spacing: .15em; }
.edition-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 34px; border: 1px solid rgba(193,177,255,.28); border-radius: 12px; color: var(--violet-light); background: rgba(151,122,255,.09); font: 500 17px var(--mono); }
.card-label { color: #89869a; }
.join-card h3 { margin: 15px 0 10px; font-size: 25px; letter-spacing: -.035em; }
.join-card > p:not(.card-label) { min-height: 48px; color: #9d9bac; font-size: 13px; line-height: 1.7; }
.copy-row {
  width: 100%;
  min-width: 0;
  margin-top: 24px;
  padding: 15px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: white;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(2,3,10,.4);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.copy-row:hover { background: rgba(151,122,255,.12); border-color: rgba(193,177,255,.3); }
.copy-row span:first-child { min-width: 0; }
.copy-row small { display: block; margin-bottom: 6px; color: #716f81; font: 8px var(--mono); letter-spacing: .13em; }
.copy-row strong { display: block; overflow: hidden; text-overflow: ellipsis; font: 500 12px var(--mono); }
.copy-icon { color: var(--violet-light); font-size: 19px; }
.cracked-server {
  margin-top: 70px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(250px, .72fr) 1.28fr;
  border: 1px solid rgba(255,185,65,.2);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(57,31,20,.82), rgba(20,21,39,.86) 55%);
  backdrop-filter: blur(20px);
}
.cracked-poster { position: relative; min-height: 410px; overflow: hidden; }
.cracked-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(24,20,29,.9)); }
.cracked-poster img { width: 100%; height: 118%; margin-top: -9%; display: block; object-fit: cover; will-change: transform; }
.cracked-content { padding: clamp(35px, 5vw, 70px); align-self: center; }
.cracked-content .kicker { color: #ffc56b; }
.cracked-content h3 { margin: 14px 0 18px; font-size: clamp(34px, 4vw, 55px); line-height: 1.05; letter-spacing: -.045em; }
.cracked-content > p:not(.kicker) { max-width: 590px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.cracked-addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.cracked-addresses .copy-row { margin-top: 0; }
footer {
  padding: 40px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #73717f;
  font-size: 12px;
}
.footer-brand { color: white; }
.footer-links { display: flex; align-items: center; gap: 24px; }
.footer-links a { font: 10px var(--mono); letter-spacing: .08em; transition: color .2s; }
.footer-links a:hover { color: white; }
footer small { color: #777687; font: 9px var(--mono); letter-spacing: .06em; }
.toast {
  position: fixed;
  z-index: 30;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(23,22,38,.9);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  font-size: 12px;
  transition: opacity .25s, transform .25s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 850px) {
  .nav nav { display: none; }
  .hero-content { margin-top: 30px; }
  .hero-copy { max-width: 420px; }
  .intro { min-height: 760px; }
  .floating-card { opacity: .3; }
  .intro-copy { margin-top: 110px; }
  .intro-copy > p:last-child { margin-left: 0; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .scenery-slice { opacity: .11; }
  .feature-ribbon { flex-wrap: wrap; justify-content: center; }
  .artifact-showcase::after { background: linear-gradient(0deg, rgba(7,7,16,.94), transparent 80%); }
  .artifact-copy { top: auto; right: 25px; bottom: 28px; left: 25px; width: auto; transform: none; }
  .reputation { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-art { width: min(390px, 80vw); margin: 0 auto; }
  .join-grid { grid-template-columns: 1fr; }
  .join-card > p:not(.card-label) { min-height: 0; }
  .cracked-server { grid-template-columns: 1fr; }
  .cracked-poster { min-height: 330px; max-height: 500px; }
  .cracked-poster::after { background: linear-gradient(0deg, rgba(24,20,29,.9), transparent 50%); }
}
@media (max-width: 520px) {
  .nav { top: 10px; width: calc(100% - 20px); min-height: 55px; padding-left: 12px; }
  .network-link { margin-left: auto; padding: 4px; }
  .network-link span, .network-link b { display: none; }
  .network-link img { width: 31px; height: 31px; }
  .nav-cta { padding: 11px 13px; }
  .nav-cta span { display: none; }
  .version-note { align-items: flex-start; flex-direction: column; gap: 6px; }
  h1 { font-size: clamp(53px, 18vw, 78px); }
  .hero-content { width: calc(100% - 36px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-meta { width: calc(100% - 36px); }
  .hero-meta .mouse { display: none; }
  .intro { padding-top: 105px; }
  .intro-copy { margin-top: 80px; }
  .card-one { right: -170px; }
  .join { padding-top: 110px; padding-bottom: 110px; }
  .join-card { padding: 27px 22px; }
  .hero-logo { width: min(310px, 82vw); }
  .cracked-addresses { grid-template-columns: 1fr; }
  .cracked-content { padding: 30px 22px; }
  .about { padding-top: 100px; padding-bottom: 100px; }
  .features { padding-top: 105px; padding-bottom: 105px; }
  .features-heading .section-number { margin-bottom: 50px; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .feature-showcase { height: 540px; }
  .feature-showcase::after { background: linear-gradient(0deg, rgba(5,7,16,.95), rgba(5,7,16,.12) 90%); }
  .showcase-caption { right: 24px; left: 24px; bottom: 28px; }
  .feature-card { min-height: 320px; }
  .feature-ribbon i { display: none; }
  .feature-ribbon span { width: calc(50% - 8px); text-align: center; }
  .artifact-showcase { height: 520px; }
  .artifact-showcase .cinematic-image { object-position: 38% center; }
  .reputation { padding-top: 105px; padding-bottom: 105px; }
  .reputation-copy .section-number { margin-bottom: 50px; }
  .reputation-panel { padding: 20px; }
  .outlaw-card { grid-template-columns: 1fr; padding: 26px 20px; }
  .social-links { flex-direction: column; }
  .social-links a { width: 100%; }
  footer { flex-direction: column; gap: 22px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ambient-shimmer i { animation-duration: 14s !important; animation-iteration-count: infinite !important; }
  .ambient-shimmer::before { animation-duration: 17s !important; animation-iteration-count: infinite !important; }
  .ambient-shimmer::after { animation-duration: 15s !important; animation-iteration-count: infinite !important; }
}
