:root {
  --bg: #050914;
  --bg-soft: #081120;
  --panel: rgba(12, 22, 38, 0.78);
  --panel-strong: rgba(13, 25, 43, 0.92);
  --border: rgba(151, 177, 210, 0.16);
  --border-blue: rgba(91, 178, 255, 0.36);
  --text: #f7fbff;
  --muted: #9aa9bd;
  --muted-strong: #c3cfdd;
  --blue: #3da2ff;
  --cyan: #50d8ff;
  --purple: #8368ff;
  --green: #52d88a;
  --radius: 22px;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --soft-glow: 0 0 46px rgba(61, 162, 255, 0.18);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% -8%, rgba(61, 162, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 86% 14%, rgba(80, 216, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, #040711 0%, #07101e 48%, #050812 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

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

img,
svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  width: min(calc(100% - 32px), 1220px);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(180, 204, 232, 0.12);
  border-radius: 18px;
  background: rgba(5, 11, 22, 0.7);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(91, 178, 255, 0.28);
  background: rgba(6, 13, 25, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  gap: 0;
}

.brand-wordmark {
  width: clamp(178px, 16vw, 238px);
  max-height: 44px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(61, 162, 255, 0.18));
}

.brand-avatar {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(113, 188, 255, 0.38);
  border-radius: 14px;
  background: #081223;
  box-shadow: 0 0 28px rgba(61, 162, 255, 0.22);
}

.brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy strong {
  display: block;
  color: #ffffff;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 0.98rem;
  line-height: 1;
  font-weight: 800;
}

.brand-copy small {
  display: block;
  margin-top: 5px;
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(220, 230, 241, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #ffffff;
}

.nav-button,
.button,
.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(91, 178, 255, 0.28);
  background: rgba(61, 162, 255, 0.1);
  color: #e8f6ff;
  font-size: 0.85rem;
}

.auth-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: max-content;
}

.auth-text-button {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(232, 246, 255, 0.86);
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.auth-text-button:hover,
.auth-text-button:focus-visible {
  color: #ffffff;
  background: rgba(61, 162, 255, 0.08);
  transform: translateY(-2px);
}

.account-button {
  background: rgba(61, 162, 255, 0.12);
  color: #e8f6ff;
}

.nav-button:hover,
.button:hover,
.plan-cta:hover,
.nav-button:focus-visible,
.button:focus-visible,
.plan-cta:focus-visible {
  transform: translateY(-2px);
}

body.auth-open {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 150px 24px 76px;
}

.hero-shell {
  width: min(100%, var(--max));
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.84fr);
  align-items: center;
  gap: 56px;
  margin: 0 auto;
}

.hero-content {
  max-width: 660px;
}

.eyebrow,
.section-heading span,
.final-cta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(91, 178, 255, 0.22);
  border-radius: 999px;
  background: rgba(61, 162, 255, 0.08);
  color: #bfe7ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1 {
  margin-top: 24px;
  color: var(--text);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(3.4rem, 5.35vw, 4.25rem);
  line-height: 1.01;
  font-weight: 900;
  text-wrap: balance;
}

.hero p {
  max-width: 590px;
  margin-top: 24px;
  color: var(--muted-strong);
  font-size: 1.12rem;
  line-height: 1.78;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.primary {
  border: 1px solid rgba(119, 203, 255, 0.55);
  background: linear-gradient(135deg, #46b5ff, #2e78ff);
  color: #03101d;
  box-shadow: 0 16px 40px rgba(46, 120, 255, 0.22);
}

.button.secondary {
  border: 1px solid rgba(180, 204, 232, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: #eaf3ff;
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 18px 48px rgba(46, 120, 255, 0.34);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(91, 178, 255, 0.34);
  background: rgba(61, 162, 255, 0.08);
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-badges span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid rgba(180, 204, 232, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #c9d6e6;
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-badges span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(82, 216, 138, 0.35);
}

.creator-visual {
  position: relative;
}

.visual-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(180, 204, 232, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 70% 18%, rgba(61, 162, 255, 0.24), transparent 20rem),
    rgba(9, 18, 34, 0.78);
  box-shadow: var(--shadow), var(--soft-glow);
  isolation: isolate;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 31px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%);
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 65% center;
  filter: saturate(1.02) contrast(1.02);
}

.visual-stat {
  position: absolute;
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(180, 204, 232, 0.16);
  border-radius: 18px;
  background: rgba(7, 14, 26, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.visual-stat strong {
  font-size: 0.95rem;
  font-weight: 900;
}

.visual-stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.stat-a {
  left: 22px;
  bottom: 28px;
}

.stat-b {
  right: 22px;
  top: 28px;
}

.access-band {
  width: min(calc(100% - 32px), var(--max));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.access-band article,
.price-card,
.benefit-grid article,
.final-cta {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 26, 45, 0.78), rgba(9, 18, 32, 0.72));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.access-band article {
  padding: 24px;
}

.access-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 850;
}

.access-band span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 600;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding-top: 110px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  margin-top: 16px;
  color: #ffffff;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 900;
  text-wrap: balance;
}

.section-heading p,
.final-cta p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 486px;
  flex-direction: column;
  padding: 30px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-blue);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.3), var(--soft-glow);
}

.price-card.featured {
  border-color: rgba(91, 178, 255, 0.44);
  background: linear-gradient(180deg, rgba(16, 37, 63, 0.88), rgba(10, 20, 36, 0.84));
}

.price-card.value {
  border-color: rgba(131, 104, 255, 0.32);
}

.card-badge {
  align-self: flex-start;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 11px;
  border: 1px solid rgba(91, 178, 255, 0.34);
  border-radius: 999px;
  background: rgba(61, 162, 255, 0.11);
  color: #bfe7ff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-badge {
  border-color: rgba(131, 104, 255, 0.36);
  background: rgba(131, 104, 255, 0.1);
  color: #d3ccff;
}

.plan-label {
  color: #dce9f8;
  font-size: 1.05rem;
  font-weight: 850;
}

.price-card h3 {
  margin-top: 22px;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 900;
}

.billing {
  margin-top: 8px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.5;
  font-weight: 650;
}

.price-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.plan-cta {
  min-height: 52px;
  margin-top: auto;
  border: 1px solid rgba(180, 204, 232, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: #eef7ff;
  font-size: 0.92rem;
}

.primary-plan {
  border-color: rgba(119, 203, 255, 0.55);
  background: linear-gradient(135deg, #46b5ff, #2e78ff);
  color: #03101d;
}

.showcase {
  width: 100%;
  max-width: none;
  overflow: hidden;
}

.showcase .section-heading {
  width: min(calc(100% - 32px), var(--max));
}

.showcase-rows {
  display: grid;
  gap: 18px;
}

.marquee-row {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: marquee 46s linear infinite;
}

.marquee-row.reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 54s;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

.download-card {
  width: 280px;
  overflow: hidden;
  border: 1px solid rgba(180, 204, 232, 0.13);
  border-radius: 22px;
  background: rgba(10, 19, 34, 0.82);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease;
}

.download-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 178, 255, 0.36);
}

.thumb {
  height: 148px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--thumb-a), var(--thumb-b)),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.thumb::before,
.thumb::after {
  content: "";
  position: absolute;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  transform: rotate(8deg);
}

.thumb::before {
  width: 88px;
  height: 74px;
  left: 34px;
  top: 38px;
}

.thumb::after {
  width: 116px;
  height: 94px;
  right: 22px;
  bottom: -20px;
  background: rgba(0, 0, 0, 0.22);
}

.download-card h3 {
  padding: 18px 18px 0;
  font-size: 1rem;
  font-weight: 850;
}

.download-card span {
  display: block;
  padding: 7px 18px 20px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.gold { --thumb-a: #5a3d13; --thumb-b: #e9b64b; }
.raid { --thumb-a: #17472c; --thumb-b: #58b079; }
.iron { --thumb-a: #303b47; --thumb-b: #aeb9c8; }
.xp { --thumb-a: #113b37; --thumb-b: #4cd9a3; }
.storage { --thumb-a: #173a64; --thumb-b: #55adff; }
.trading { --thumb-a: #4a3420; --thumb-b: #c89054; }
.survival { --thumb-a: #1d3b25; --thumb-b: #72b86b; }
.redstone { --thumb-a: #421b22; --thumb-b: #ff5b6c; }

.farm-grid {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 46px auto 0;
}

.farm-vault-tools {
  width: min(100%, var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 34px auto 0;
}

.farm-search-input {
  width: min(100%, 420px);
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(91, 178, 255, 0.24);
  border-radius: 15px;
  outline: none;
  background:
    radial-gradient(circle at 0% 0%, rgba(80, 216, 255, 0.1), transparent 14rem),
    rgba(8, 18, 32, 0.86);
  color: #f7fbff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 750;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.farm-search-input::placeholder {
  color: rgba(195, 207, 221, 0.7);
}

.farm-search-input:focus {
  border-color: rgba(80, 216, 255, 0.58);
  background: rgba(8, 18, 32, 0.95);
  box-shadow: 0 0 26px rgba(80, 216, 255, 0.16), 0 18px 48px rgba(46, 120, 255, 0.2);
}

.farm-results-status {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: right;
}

.farm-vault-tools + .farm-grid {
  margin-top: 22px;
}

.farm-pagination {
  width: min(100%, var(--max));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 0;
}

.farm-page-button,
.farm-page-ellipsis {
  min-width: 44px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}

.farm-page-button {
  border: 1px solid rgba(91, 178, 255, 0.22);
  background: rgba(8, 18, 32, 0.78);
  color: #dff6ff;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.farm-page-step {
  min-width: 96px;
  padding: 0 16px;
}

.farm-page-button:hover,
.farm-page-button:focus-visible,
.farm-page-button.is-active {
  border-color: rgba(80, 216, 255, 0.54);
  background: rgba(61, 162, 255, 0.16);
  box-shadow: 0 0 22px rgba(80, 216, 255, 0.18), 0 16px 40px rgba(46, 120, 255, 0.18);
  transform: translateY(-2px);
}

.farm-page-button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
  box-shadow: none;
}

.farm-page-ellipsis {
  min-width: 26px;
  color: rgba(195, 207, 221, 0.72);
}

.farm-loading {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid rgba(91, 178, 255, 0.18);
  border-radius: 18px;
  background: rgba(8, 18, 32, 0.72);
  color: var(--muted-strong);
  text-align: center;
  font-weight: 800;
}

.farm-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid rgba(91, 178, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(80, 216, 255, 0.12), transparent 16rem),
    rgba(8, 18, 32, 0.86);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.farm-card:hover,
.farm-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(80, 216, 255, 0.46);
  box-shadow: 0 24px 80px rgba(46, 120, 255, 0.18);
}

.farm-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(180, 204, 232, 0.12);
  background:
    radial-gradient(circle at 50% 35%, rgba(80, 216, 255, 0.18), transparent 12rem),
    linear-gradient(135deg, rgba(8, 18, 32, 0.96), rgba(12, 35, 62, 0.88));
}

.farm-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.farm-card:hover .farm-card-media img,
.farm-card:focus-visible .farm-card-media img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.farm-card-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(223, 246, 255, 0.95);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(80, 216, 255, 0.28);
}

.farm-card-media.is-image-missing img {
  display: none;
}

.farm-card-media.is-image-missing .farm-card-fallback {
  display: flex;
}

.farm-card-body {
  padding: 18px;
}

.farm-card h3 {
  color: #ffffff;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.16rem;
  line-height: 1.18;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.farm-card-label {
  display: inline-flex;
  margin-top: 10px;
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 850;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-grid article {
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.benefit-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 178, 255, 0.28);
}

.benefit-grid svg,
.footer-actions svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--cyan);
}

.benefit-grid h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 850;
}

.benefit-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 600;
}

.final-cta {
  width: min(calc(100% - 32px), var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin: 110px auto 0;
  padding: 40px;
}

.final-cta div {
  max-width: 730px;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  margin: 64px auto 0;
  padding: 34px 0 44px;
  border-top: 1px solid rgba(180, 204, 232, 0.12);
}

.site-footer p {
  max-width: 520px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 600;
}

.site-footer .brand-wordmark {
  width: 230px;
  max-height: 54px;
}

.footer-actions {
  display: flex;
  gap: 12px;
  align-items: start;
}

.footer-actions a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(180, 204, 232, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  color: #cbeeff;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.footer-actions a:hover,
.footer-actions a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(91, 178, 255, 0.34);
  background: rgba(61, 162, 255, 0.08);
}

.footer-actions .social-youtube:hover,
.footer-actions .social-youtube:focus-visible {
  border-color: rgba(255, 42, 42, 0.48);
  background: rgba(255, 42, 42, 0.1);
  color: #ffd7d7;
  box-shadow: 0 0 28px rgba(255, 42, 42, 0.22);
}

.footer-actions .social-discord:hover,
.footer-actions .social-discord:focus-visible {
  border-color: rgba(88, 101, 242, 0.58);
  background: rgba(88, 101, 242, 0.12);
  color: #e0e3ff;
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.28);
}

.footer-actions svg {
  width: 22px;
  height: 22px;
}

.copyright {
  grid-column: 1 / -1;
  color: #718197;
  font-size: 0.82rem;
  font-weight: 650;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.auth-modal[hidden] {
  display: none;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 12, 0.72);
  backdrop-filter: blur(14px);
}

.auth-dialog {
  position: relative;
  width: min(100%, 460px);
  max-height: min(760px, calc(100vh - 32px));
  overflow-y: auto;
  padding: 28px;
  border: 1px solid rgba(91, 178, 255, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 12%, rgba(61, 162, 255, 0.18), transparent 14rem),
    linear-gradient(180deg, rgba(14, 26, 45, 0.96), rgba(8, 16, 30, 0.96));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52), 0 0 54px rgba(61, 162, 255, 0.18);
}

.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(180, 204, 232, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #ccecff;
  cursor: pointer;
}

.auth-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.auth-panel-heading {
  padding-right: 42px;
}

.auth-kicker {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-panel-heading h2 {
  margin-top: 10px;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 900;
}

.auth-panel-heading p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  font-weight: 650;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 22px;
  padding: 5px;
  border: 1px solid rgba(180, 204, 232, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.auth-tabs button {
  min-height: 38px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease;
}

.auth-tabs button.is-active {
  background: linear-gradient(135deg, rgba(70, 181, 255, 0.24), rgba(46, 120, 255, 0.24));
  color: #ffffff;
}

.auth-status {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(91, 178, 255, 0.2);
  border-radius: 14px;
  background: rgba(61, 162, 255, 0.08);
  color: #cbeeff;
  font-size: 0.86rem;
  line-height: 1.5;
  font-weight: 700;
}

.auth-status[data-status-type="success"] {
  border-color: rgba(82, 216, 138, 0.32);
  background: rgba(82, 216, 138, 0.09);
  color: #bdf6d3;
}

.auth-status[data-status-type="error"] {
  border-color: rgba(255, 102, 128, 0.34);
  background: rgba(255, 102, 128, 0.09);
  color: #ffd1da;
}

.auth-status[data-status-type="warning"] {
  border-color: rgba(255, 202, 91, 0.34);
  background: rgba(255, 202, 91, 0.09);
  color: #ffe1a5;
}

.payment-inline-status {
  width: min(100%, 560px);
  margin-inline: auto;
  text-align: center;
}

.auth-form {
  display: grid;
  gap: 15px;
  margin-top: 18px;
}

.auth-form[hidden] {
  display: none;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: #dce9f8;
  font-size: 0.82rem;
  font-weight: 850;
}

.auth-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(180, 204, 232, 0.14);
  border-radius: 14px;
  background: rgba(2, 8, 17, 0.62);
  color: var(--text);
  outline: none;
  padding: 0 14px;
  font: inherit;
  font-size: 0.96rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.auth-form input::placeholder {
  color: #617184;
}

.auth-form input:focus {
  border-color: rgba(91, 178, 255, 0.58);
  background: rgba(3, 11, 22, 0.82);
  box-shadow: 0 0 0 4px rgba(61, 162, 255, 0.1);
}

.auth-submit {
  min-height: 52px;
  margin-top: 4px;
  border: 1px solid rgba(119, 203, 255, 0.55);
  border-radius: 14px;
  background: linear-gradient(135deg, #46b5ff, #2e78ff);
  color: #03101d;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.auth-submit:hover,
.auth-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(46, 120, 255, 0.34);
}

.auth-submit:disabled,
.auth-text-button:disabled,
[data-auth-logout]:disabled {
  cursor: wait;
  opacity: 0.58;
}

.auth-helper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.auth-helper button {
  border: 0;
  background: none;
  color: var(--cyan);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.member-main {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 150px 0 72px;
}

.auth-gate,
.account-panel,
.member-vault {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 26, 45, 0.86), rgba(9, 18, 32, 0.78));
  box-shadow: var(--shadow);
}

.auth-gate,
.account-panel {
  padding: 42px;
}

.auth-gate {
  max-width: 780px;
  margin: 0 auto;
}

.auth-gate h1,
.account-panel h1,
.member-hero h1 {
  margin-top: 16px;
  color: #ffffff;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 3.25rem;
  line-height: 1.04;
  font-weight: 900;
  text-wrap: balance;
}

.auth-gate p,
.account-panel p,
.member-hero p,
.vault-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
  font-weight: 650;
}

.member-vault {
  padding: 34px;
}

.member-hero,
.account-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.member-hero strong,
.account-panel strong {
  color: #dff5ff;
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.vault-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(180, 204, 232, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.vault-grid span {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.vault-grid h2 {
  margin-top: 16px;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 900;
}

.vault-grid button {
  min-height: 42px;
  margin-top: auto;
  border: 1px solid rgba(180, 204, 232, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  color: #91a4ba;
  font: inherit;
  font-weight: 800;
}

.account-actions {
  display: grid;
  gap: 12px;
  min-width: 230px;
}

.vault-farm-grid {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.farm-page-main {
  min-height: 100vh;
  padding: 150px 24px 80px;
}

.farm-detail {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 28px;
  align-items: stretch;
  margin: 0 auto;
  transition: opacity 180ms ease, transform 180ms ease;
}

.farm-detail.is-loading {
  opacity: 0.72;
  transform: translateY(6px);
}

.farm-preview-panel,
.farm-info-panel {
  border: 1px solid rgba(91, 178, 255, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 0%, rgba(61, 162, 255, 0.13), transparent 20rem),
    rgba(8, 18, 32, 0.86);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.farm-preview-panel {
  position: relative;
  overflow: hidden;
}

.farm-preview-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: contain;
  background: rgba(5, 9, 20, 0.72);
  transition: transform 260ms ease, filter 260ms ease;
}

.farm-preview-panel:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}

.farm-preview-fallback {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px;
  background:
    radial-gradient(circle at 50% 32%, rgba(80, 216, 255, 0.2), transparent 18rem),
    linear-gradient(135deg, rgba(5, 9, 20, 0.96), rgba(10, 30, 54, 0.92));
  text-align: center;
}

.farm-preview-fallback span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(80, 216, 255, 0.32);
  border-radius: 28px;
  background: rgba(61, 162, 255, 0.12);
  color: #dff6ff;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 2.8rem;
  font-weight: 950;
  box-shadow: 0 0 34px rgba(80, 216, 255, 0.18);
}

.farm-preview-fallback strong {
  color: #ffffff;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
}

.farm-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 46px);
}

.farm-info-panel h1 {
  margin-top: 20px;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(2.05rem, 3.8vw, 3.75rem);
  line-height: 1.04;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.farm-info-panel > p:not(.auth-status):not(.download-note) {
  margin-top: 20px;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 700;
}

.farm-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.farm-stat-row span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(80, 216, 255, 0.18);
  border-radius: 999px;
  background: rgba(80, 216, 255, 0.07);
  color: #dff6ff;
  font-size: 0.82rem;
  font-weight: 800;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  animation: stateFade 220ms ease both;
}

.download-actions .button {
  min-width: 180px;
}

.download-actions .button:hover,
.download-actions .button:focus-visible {
  box-shadow: 0 0 26px rgba(80, 216, 255, 0.28), 0 18px 48px rgba(46, 120, 255, 0.28);
}

.tutorial-action {
  display: flex;
  margin-top: 14px;
  animation: stateFade 220ms ease both;
}

.tutorial-action .button {
  gap: 10px;
  min-width: 180px;
}

.tutorial-youtube-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 21px;
  border-radius: 7px;
  background: #ff0033;
  box-shadow: 0 0 14px rgba(255, 0, 51, 0.35), inset 0 -8px 16px rgba(130, 0, 24, 0.12);
}

.tutorial-youtube-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #ffffff;
}

.tutorial-action .button:hover,
.tutorial-action .button:focus-visible {
  box-shadow: 0 0 26px rgba(80, 216, 255, 0.22), 0 18px 48px rgba(46, 120, 255, 0.24);
}

.download-lock {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(255, 202, 87, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 202, 87, 0.13), transparent 15rem),
    rgba(255, 255, 255, 0.035);
  animation: stateFade 220ms ease both;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.download-lock:hover {
  border-color: rgba(255, 202, 87, 0.34);
  box-shadow: 0 16px 46px rgba(255, 202, 87, 0.08);
  transform: translateY(-2px);
}

.download-lock strong {
  color: #fff3c4;
  font-size: 1.05rem;
  font-weight: 900;
}

.download-lock span {
  color: var(--muted-strong);
  font-size: 0.93rem;
  line-height: 1.58;
  font-weight: 700;
}

.download-lock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.download-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

@keyframes stateFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

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

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-content {
    max-width: 760px;
  }

  .creator-visual {
    max-width: 680px;
  }

  .pricing-grid,
  .benefit-grid,
  .farm-detail {
    grid-template-columns: 1fr;
  }

  .farm-grid,
  .vault-farm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), 1220px);
    height: 64px;
    padding: 0 10px 0 12px;
  }

  .brand-avatar {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .brand-wordmark {
    width: 158px;
    max-height: 38px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  .nav-button {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.78rem;
  }

  .auth-actions {
    gap: 6px;
  }

  .auth-text-button {
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 118px 16px 56px;
  }

  .hero-shell {
    min-height: 0;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .button {
    width: 100%;
  }

  .feature-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-badges span {
    width: fit-content;
  }

  .visual-card,
  .visual-card img {
    min-height: 420px;
  }

  .visual-card {
    border-radius: 24px;
  }

  .visual-card img {
    object-position: 66% center;
  }

  .visual-stat {
    position: static;
    margin: 10px;
  }

  .access-band {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 78px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 2.35rem;
  }

  .price-card,
  .benefit-grid article,
  .final-cta {
    padding: 22px;
  }

  .price-card h3 {
    font-size: 3.1rem;
  }

  .download-card {
    width: 242px;
  }

  .farm-grid,
  .vault-farm-grid {
    grid-template-columns: 1fr;
  }

  .farm-vault-tools {
    display: grid;
    gap: 12px;
  }

  .farm-search-input {
    width: 100%;
  }

  .farm-results-status {
    text-align: left;
  }

  .farm-pagination {
    justify-content: flex-start;
  }

  .farm-page-step {
    flex: 1 1 120px;
  }

  .farm-card {
    min-height: 0;
  }

  .farm-page-main {
    padding: 116px 16px 56px;
  }

  .farm-preview-panel img {
    min-height: 260px;
  }

  .download-actions {
    display: grid;
  }

  .thumb {
    height: 132px;
  }

  .final-cta,
  .site-footer {
    display: grid;
  }

  .member-main {
    padding-top: 116px;
  }

  .auth-gate,
  .account-panel,
  .member-vault {
    padding: 22px;
  }

  .member-hero,
  .account-panel {
    display: grid;
  }

  .auth-gate h1,
  .account-panel h1,
  .member-hero h1 {
    font-size: 2.35rem;
  }

  .vault-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .brand-wordmark {
    width: 188px;
  }
}

@media (max-width: 430px) {
  .nav-button {
    padding: 0 11px;
  }

  .brand-wordmark {
    width: 118px;
  }

  .auth-text-button {
    padding: 0 5px;
  }

  .nav-button {
    padding: 0 9px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .eyebrow,
  .section-heading span,
  .final-cta span {
    font-size: 0.7rem;
  }

  .visual-card,
  .visual-card img {
    min-height: 360px;
  }
}
