/* ========================================
   Albion Flip&Craft&Island — Landing Page
   ======================================== */

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

:root {
  --bg-deep: #07080d;
  --bg-surface: #0d0f18;
  --bg-card: #111422;
  --bg-card-hover: #161a2e;
  --border-dim: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --text-primary: #e8eaf0;
  --text-secondary: #8a8fa8;
  --text-dim: #505470;
  --gold: #d4a843;
  --gold-light: #f0d078;
  --gold-glow: rgba(212, 168, 67, 0.18);
  --emerald: #34d399;
  --emerald-glow: rgba(52, 211, 153, 0.14);
  --sky: #38bdf8;
  --sky-glow: rgba(56, 189, 248, 0.14);
  --accent: #6366f1;
  --accent-glow: rgba(99, 102, 241, 0.16);
  --danger: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 50% 8%, rgba(212, 168, 67, 0.24), transparent 34%),
    radial-gradient(circle at 18% 22%, rgba(56, 189, 248, 0.14), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(99, 102, 241, 0.14), transparent 28%),
    linear-gradient(180deg, #0c1018 0%, #101522 48%, #0b0f18 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  perspective: 1200px;
  position: relative;
}

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

ul, ol { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.landing-page::before,
.landing-page::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  opacity: 0.22;
}

.landing-page::before {
  top: 14%;
  left: -90px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.28) 0%, rgba(212, 168, 67, 0.06) 48%, transparent 72%);
}

.landing-page::after {
  right: -100px;
  bottom: 12%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.24) 0%, rgba(99, 102, 241, 0.05) 54%, transparent 76%);
}

.text-gold { color: var(--gold); }
.text-emerald { color: var(--emerald); }
.text-sky { color: var(--sky); }
.text-dim { color: var(--text-dim); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  padding: 12px 0;
  background: rgba(10, 12, 20, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(7, 8, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dim);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo-icon {
  font-size: 22px;
  filter: grayscale(0.3);
}

.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 2px;
  padding-left: 2px;
}

.lang-switch {
  min-width: 52px;
  height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 168, 67, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), rgba(9, 11, 18, 0.92);
  color: var(--gold-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 6px 18px rgba(0, 0, 0, 0.14);
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: 1.1px;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), background var(--transition);
}

.lang-switch:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 168, 67, 0.55);
  color: #fff3c4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 18px rgba(212, 168, 67, 0.08);
}

.lang-switch:active { transform: translateY(0); }

.lang-switch:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(212, 168, 67, 0.18), 0 0 0 5px rgba(212, 168, 67, 0.08);
}

.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.72;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.28;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.36;
  will-change: transform;
}

.hero-orb-left {
  top: 18%;
  left: 8%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 30% 30%, rgba(212, 168, 67, 0.35), rgba(212, 168, 67, 0.03) 65%, transparent 100%);
  box-shadow: 0 0 48px rgba(212, 168, 67, 0.06);
}

.hero-orb-right {
  right: 10%;
  bottom: 18%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 35% 35%, rgba(56, 189, 248, 0.25), rgba(99, 102, 241, 0.04) 65%, transparent 100%);
  box-shadow: 0 0 56px rgba(56, 189, 248, 0.05);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  will-change: transform;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  will-change: transform;
}

.hero-subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  will-change: transform;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  will-change: transform;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  will-change: transform;
}

.stat { text-align: center; }

.stat-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-light);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  gap: 8px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #c49530 100%);
  color: #0a0b10;
  box-shadow: 0 4px 14px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-plan {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}

.btn-plan:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-plan-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #c49530 100%);
  color: #0a0b10;
  border: none;
  box-shadow: 0 4px 14px var(--gold-glow);
}

.btn-plan-primary:hover {
  box-shadow: 0 6px 18px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-plan-all {
  background: linear-gradient(135deg, var(--accent) 0%, #4f46e5 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-plan-all:hover {
  box-shadow: 0 6px 18px var(--accent-glow);
  transform: translateY(-2px);
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-desc {
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-secondary);
}

/* ── FEATURES ── */
.features {
  padding: 100px 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  will-change: transform;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.50;
  background-repeat: no-repeat;
  background-position: right top, left bottom;
  background-size: 180px 180px, 120px 120px;
  transition: opacity var(--transition), transform var(--transition);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -36px -48px auto;
  width: 148px;
  height: 148px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.16;
  transition: opacity var(--transition), transform var(--transition);
}

.feature-card:hover::before {
  opacity: 0.75;
  transform: translate(-3px, -3px);
}

.feature-card:hover::after {
  opacity: 0.34;
  transform: scale(1.04);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.features-grid .feature-card:nth-child(1)::before {
  background-image:
    linear-gradient(180deg, rgba(17, 20, 34, 0.06), rgba(17, 20, 34, 0.22)),
    url("assets/blackmarket-feature-bg.png.png.png"),
    radial-gradient(circle at 82% 22%, rgba(212, 168, 67, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(212, 168, 67, 0.08), transparent 52%);
  background-size: cover, cover, 180px 180px, 120px 120px;
  background-position: center center, center center, right top, left bottom;
}

.features-grid .feature-card:nth-child(1)::after {
  background: radial-gradient(circle, rgba(212, 168, 67, 0.30) 0%, rgba(212, 168, 67, 0.05) 58%, transparent 76%);
}

.features-grid .feature-card:nth-child(3)::before {
  background-image:
    linear-gradient(180deg, rgba(17, 20, 34, 0.06), rgba(17, 20, 34, 0.22)),
    url("assets/craft-feature-bg.png.png"),
    radial-gradient(circle at 80% 24%, rgba(52, 211, 153, 0.20), transparent 38%),
    linear-gradient(135deg, rgba(52, 211, 153, 0.08), transparent 52%);
  background-size: cover, cover, 180px 180px, 120px 120px;
  background-position: center center, center center, right top, left bottom;
}

.features-grid .feature-card:nth-child(3)::after {
  background: radial-gradient(circle, rgba(52, 211, 153, 0.24) 0%, rgba(52, 211, 153, 0.05) 58%, transparent 76%);
}

.features-grid .feature-card:nth-child(4)::before {
  background-image:
    linear-gradient(180deg, rgba(17, 20, 34, 0.06), rgba(17, 20, 34, 0.22)),
    url("assets/island-feature-bg.png.png"),
    radial-gradient(circle at 82% 22%, rgba(56, 189, 248, 0.20), transparent 38%),
    linear-gradient(135deg, rgba(56, 189, 248, 0.08), transparent 52%);
  background-size: cover, cover, 180px 180px, 120px 120px;
  background-position: center center, center center, right top, left bottom;
}

.features-grid .feature-card:nth-child(4)::after {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.24) 0%, rgba(56, 189, 248, 0.05) 58%, transparent 76%);
}

.features-grid .feature-card:nth-child(2)::before {
  background-image:
    linear-gradient(180deg, rgba(17, 20, 34, 0.06), rgba(17, 20, 34, 0.22)),
    url("assets/totalprofit-feature-bg.png.png.png"),
    radial-gradient(circle at 82% 22%, rgba(99, 102, 241, 0.20), transparent 38%),
    linear-gradient(135deg, rgba(99, 102, 241, 0.08), transparent 52%);
  background-size: cover, cover, 180px 180px, 120px 120px;
  background-position: center center, center center, right top, left bottom;
}

.features-grid .feature-card:nth-child(2)::after {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.24) 0%, rgba(99, 102, 241, 0.05) 58%, transparent 76%);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon--flip { background: rgba(212, 168, 67, 0.1); color: var(--gold); }
.feature-icon--craft { background: rgba(52, 211, 153, 0.1); color: var(--emerald); }
.feature-icon--island { background: rgba(56, 189, 248, 0.1); color: var(--sky); }
.feature-icon--profit { background: rgba(99, 102, 241, 0.1); color: var(--accent); }

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.feature-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* ── PLANS ── */
.plans {
  padding: 100px 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.workflow-section,
.screenshots-section,
.updates-preview-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

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

.workflow-card,
.update-card,
.shot-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  overflow: hidden;
}

.workflow-card:hover,
.update-card:hover,
.shot-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.screenshots-section .shot-card:hover {
  background: var(--bg-card);
}

.update-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 18px;
  background:
    linear-gradient(-45deg, transparent 8px, rgba(212, 168, 67, 0.18) 0) left bottom / 18px 18px repeat-x,
    linear-gradient(45deg, transparent 8px, rgba(212, 168, 67, 0.18) 0) left bottom / 18px 18px repeat-x;
  opacity: 0.82;
  pointer-events: none;
}

.update-card > * {
  position: relative;
  z-index: 1;
}

.workflow-step,
.update-version {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(212, 168, 67, 0.10);
  border: 1px solid rgba(212, 168, 67, 0.18);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.workflow-card h3,
.update-card h3,
.shot-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.workflow-card p,
.update-card p,
.shot-card p {
  font-size: 15px;
  color: rgba(232, 234, 240, 0.86);
  font-weight: 500;
  line-height: 1.7;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.shot-card {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.shot-surface {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 6.8;
  border-radius: 20px;
  margin: 18px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(8, 11, 18, 0.16), rgba(8, 11, 18, 0.54)),
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 60%),
    rgba(17, 20, 34, 0.9);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.shot-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.82;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: none;
}

.shot-surface--flip::before {
  background-image:
    linear-gradient(180deg, rgba(17, 20, 34, 0.16), rgba(17, 20, 34, 0.44)),
    url("assets/blackmarket-review.png");
}

html[lang="en"] .shot-surface--flip::before {
  background-image:
    linear-gradient(180deg, rgba(17, 20, 34, 0.16), rgba(17, 20, 34, 0.44)),
    url("assets/blackmarketreview-en.png");
}

.shot-surface--profit::before {
  background-image:
    linear-gradient(180deg, rgba(17, 20, 34, 0.16), rgba(17, 20, 34, 0.44)),
    url("assets/totalprofit-review.png");
}

html[lang="en"] .shot-surface--profit::before {
  background-image:
    linear-gradient(180deg, rgba(17, 20, 34, 0.16), rgba(17, 20, 34, 0.44)),
    url("assets/totalprofit-review-en.png");
}

.shot-surface--island::before {
  display: none;
}

.shot-island-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.shot-island-slide {
  position: absolute;
  inset: 0;
  opacity: 0.92;
  transform: translateX(108%);
  transition:
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.26s ease;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform, opacity;
}

.shot-island-slide.is-active {
  opacity: 1;
}

.shot-island-slide.is-at-left {
  transform: translateX(-108%);
}

.shot-island-slide.is-at-center {
  transform: translateX(0);
  z-index: 2;
}

.shot-island-slide.is-at-right {
  transform: translateX(108%);
}

.shot-card h3,
.shot-card p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.shot-card p {
  margin-bottom: 0;
}

.shot-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
}

.shot-island-slide--crop {
  background-image:
    linear-gradient(180deg, rgba(17, 20, 34, 0.12), rgba(17, 20, 34, 0.34)),
    url("assets/Island-crop-review.png");
}

html[lang="en"] .shot-island-slide--crop {
  background-image:
    linear-gradient(180deg, rgba(17, 20, 34, 0.12), rgba(17, 20, 34, 0.34)),
    url("assets/island-crop-review-en.png");
}

.shot-island-slide--animal {
  background-image:
    linear-gradient(180deg, rgba(17, 20, 34, 0.12), rgba(17, 20, 34, 0.34)),
    url("assets/island-animal-review.png");
}

html[lang="en"] .shot-island-slide--animal {
  background-image:
    linear-gradient(180deg, rgba(17, 20, 34, 0.12), rgba(17, 20, 34, 0.34)),
    url("assets/island-animal-review-en.png");
}

.shot-island-tabs {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.shot-island-tab {
  min-width: 88px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 12, 20, 0.72);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

.shot-island-tab:hover {
  border-color: rgba(212, 168, 67, 0.26);
  color: #fff;
}

.shot-island-tab.is-active {
  background: rgba(212, 168, 67, 0.14);
  border-color: rgba(212, 168, 67, 0.34);
  color: var(--gold-light);
}

.updates-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
}

.plan-selected-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.22), rgba(212, 168, 67, 0.08));
  border: 1px solid rgba(212, 168, 67, 0.32);
  color: #fff1bf;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.plan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 0%, var(--hover-glow, transparent) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  
}

.plan-card:hover::after {
  opacity: 1;
}

.plan-card.plan-selected {
  border-color: var(--gold) !important;
  box-shadow: 0 0 24px var(--gold-glow), inset 0 0 12px rgba(212, 168, 67, 0.04) !important;
  transform: translateY(-4px);
}

.plan-card.plan-selected .plan-selected-badge {
  opacity: 1;
  transform: translateY(0);
}

.plan-card.plan-selected:hover {
  transform: translateY(-4px);
}

.plan-card.plan-selected::after {
  opacity: 1;
  --hover-glow: rgba(212, 168, 67, 0.15);
}

.btn-plan.is-selected {
  cursor: default;
  opacity: 0.86;
  border-color: rgba(212, 168, 67, 0.35);
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.18), rgba(212, 168, 67, 0.08));
  color: #fff3c4;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn-plan.is-selected:hover {
  transform: none;
}

.plan-next-step {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px 26px;
  border-radius: 20px;
  border: 1px solid rgba(212, 168, 67, 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    radial-gradient(circle at top right, rgba(88, 101, 242, 0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(212, 168, 67, 0.12), transparent 36%),
    rgba(13, 16, 27, 0.96);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.plan-next-step-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 28px;
  padding: 0 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(212, 168, 67, 0.10);
  border: 1px solid rgba(212, 168, 67, 0.20);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.plan-next-step-copy h3 {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #fff;
}

.plan-next-step-copy p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.plan-next-step-copy strong {
  color: var(--gold-light);
  margin-left: 6px;
}

.plan-next-step-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.plan-tier-1 {
  --hover-glow: rgba(212, 168, 67, 0.1);
  box-shadow: inset 0 1px 0 rgba(212, 168, 67, 0.05);
}
.plan-tier-1:hover { border-color: rgba(212, 168, 67, 0.22); box-shadow: 0 8px 20px rgba(212, 168, 67, 0.05); }

.plan-tier-2 {
  --hover-glow: rgba(212, 168, 67, 0.2);
  box-shadow: inset 0 1px 0 rgba(212, 168, 67, 0.1);
}
.plan-tier-2:hover { border-color: rgba(212, 168, 67, 0.34); box-shadow: 0 10px 26px rgba(212, 168, 67, 0.08); }

.plan-tier-3 {
  --hover-glow: rgba(212, 168, 67, 0.3);
  border-color: rgba(212, 168, 67, 0.35);
  box-shadow: 0 0 28px rgba(212, 168, 67, 0.06), inset 0 1px 0 rgba(212, 168, 67, 0.12);
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.05) 0%, var(--bg-card) 40%);
}
.plan-tier-3:hover {
  border-color: rgba(212, 168, 67, 0.6);
  box-shadow: 0 12px 30px rgba(212, 168, 67, 0.12), 0 14px 34px rgba(0,0,0,0.26);
}

.plan-tier-craft {
  --hover-glow: rgba(52, 211, 153, 0.2);
  box-shadow: inset 0 1px 0 rgba(52, 211, 153, 0.1);
}
.plan-tier-craft:hover { border-color: rgba(52, 211, 153, 0.34); box-shadow: 0 10px 24px rgba(52, 211, 153, 0.08); }

.plan-tier-all {
  --hover-glow: rgba(99, 102, 241, 0.3);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: inset 0 1px 0 rgba(99, 102, 241, 0.2);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, var(--bg-card) 40%);
}
.plan-tier-all:hover {
  border-color: rgba(99, 102, 241, 0.6);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.12), 0 14px 34px rgba(0,0,0,0.26);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--gold) 0%, #c49530 100%);
  color: #0a0b10;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-dim);
}

.plan-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

.plan-popular .plan-name { color: var(--gold); }
.plan-tier-all .plan-name { color: var(--accent); }
.plan-tier-craft .plan-name { color: var(--emerald); }

.price-amount {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.plan-popular .price-amount { color: var(--gold-light); }

.price-period {
  font-size: 14px;
  color: var(--text-dim);
  margin-left: 4px;
}

.plan-features {
  flex: 1;
  margin-bottom: 24px;
}

.plan-features li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 0;
  padding-left: 22px;
  position: relative;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--text-dim);
  font-size: 13px;
}

.plan-features li.feature-enabled::before { color: var(--emerald); }
.plan-features li.feature-highlight::before { color: var(--gold); }
.plan-features li.feature-highlight { color: var(--text-primary); font-weight: 600; }

.plan-features li.feature-locked {
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.1);
}

.plan-features li.feature-locked::before {
  content: '✕';
  color: var(--danger);
  opacity: 0.5;
}

/* ── DOWNLOAD ── */
.download-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.download-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}

.download-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(56, 189, 248, 0.08);
  color: var(--sky);
}

.download-app-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.download-meta {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 32px;
  font-family: var(--font-mono);
}

.download-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.download-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.step-number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 14px;
}

.download-selected-plan {
  padding: 12px 20px;
  background: rgba(212, 168, 67, 0.06);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.download-selected-plan strong {
  color: var(--gold-light);
  margin-left: 8px;
}

.download-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.discord-cta {
  position: relative;
  overflow: hidden;
  border-color: rgba(88, 101, 242, 0.34);
  color: #dfe3ff;
  background:
    linear-gradient(180deg, rgba(88, 101, 242, 0.12), rgba(88, 101, 242, 0.03)),
    rgba(12, 14, 24, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 22px rgba(88, 101, 242, 0.12);
}

.discord-cta:hover {
  border-color: rgba(88, 101, 242, 0.58);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 28px rgba(88, 101, 242, 0.18);
}

.discord-cta-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.02) 52%), #5865f2;
  color: #ffffff;
  box-shadow:
    0 6px 16px rgba(88, 101, 242, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.16);
  flex-shrink: 0;
}

.download-discord-btn svg,
.discord-cta svg {
  flex-shrink: 0;
}

/* ── CHANGELOG ── */
.changelog-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.changelog-section .section-header {
  margin-bottom: 40px;
}

.changelog-timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 38px;
}

.changelog-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(240, 208, 120, 0.95) 0%, rgba(212, 168, 67, 0.6) 26%, rgba(255, 255, 255, 0.08) 100%);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.16);
}

.changelog-item {
  position: relative;
  margin-bottom: 46px;
}

.changelog-item:last-child { margin-bottom: 0; }

.changelog-dot {
  position: absolute;
  left: -31px;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f6dc9b, var(--gold));
  border: 3px solid rgba(17, 20, 34, 0.96);
  box-shadow:
    0 0 0 6px rgba(212, 168, 67, 0.08),
    0 0 18px rgba(212, 168, 67, 0.22);
}

.changelog-content {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    radial-gradient(circle at top right, rgba(212, 168, 67, 0.10), transparent 42%),
    var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 24px 28px 34px;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.changelog-content::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 208, 120, 0.42), transparent);
}

.changelog-content::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16px;
  background:
    linear-gradient(-45deg, transparent 8px, rgba(212, 168, 67, 0.30) 0) 0 100%/16px 16px repeat-x,
    linear-gradient(45deg, transparent 8px, rgba(240, 208, 120, 0.18) 0) 8px 100%/16px 16px repeat-x;
  opacity: 0.95;
  pointer-events: none;
}

.changelog-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: #c8cde2;
  font-family: var(--font-mono);
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.changelog-version {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.1;
}

.changelog-list {
  padding-left: 0;
}

.changelog-list li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 6px 0 6px 22px;
  position: relative;
  list-style: none;
  line-height: 1.7;
}

.changelog-list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: #f0d078;
  font-size: 16px;
}

.changelog-item:hover .changelog-content {
  border-color: rgba(212, 168, 67, 0.22);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(212, 168, 67, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.changelog-item:hover .changelog-dot {
  box-shadow:
    0 0 0 7px rgba(212, 168, 67, 0.10),
    0 0 24px rgba(212, 168, 67, 0.30);
}

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-dim);
  transition: border-color var(--transition), background var(--transition);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  transition: color var(--transition);
}

.faq-question:hover { color: #f0d078; }

.faq-item:hover {
  background: rgba(255, 255, 255, 0.015);
  border-color: rgba(255, 255, 255, 0.09);
}

.faq-icon {
  font-size: 22px;
  color: var(--text-dim);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-answer { display: none; }

.faq-answer-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
}

.faq-item.active .faq-answer { display: block; }

.faq-item.active .faq-answer-inner {
  animation: faqAnswerIn 0.18s ease-out forwards;
}

.faq-answer p {
  padding: 0 0 18px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

/* ── CONTACT ── */
.contact-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.contact-card h4 {
  font-size: 16px;
  font-weight: 700;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(212, 168, 67, 0.08);
  color: var(--gold);
}

.contact-card-icon--sky {
  background: rgba(56, 189, 248, 0.08);
  color: var(--sky);
}

.contact-card-icon--accent {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.02) 52%),
    linear-gradient(180deg, rgba(88, 101, 242, 0.24), rgba(88, 101, 242, 0.08));
  color: #cdd2ff;
  border: 1px solid rgba(88, 101, 242, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 12px 26px rgba(88, 101, 242, 0.18);
}

.contact-plan-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-light);
  min-height: 28px;
}

.contact-plan-name.no-plan {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 14px;
}

.contact-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-steps {
  text-align: left;
  padding-left: 20px;
  list-style: decimal;
  width: 100%;
}

.contact-steps li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  list-style: decimal;
}

/* ── FOOTER ── */
.footer {
  padding: 80px 0 40px;
  background: transparent;
  border-top: 1px solid var(--border-dim);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-note { font-style: italic; }

/* ── SUBPAGE HERO ── */
.subpage-hero {
  padding: 140px 0 80px;
  min-height: 80vh;
  position: relative;
  z-index: 2;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .workflow-grid,
  .updates-grid,
  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .shot-card {
    max-width: none;
  }

  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .plan-next-step {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .plan-next-step-actions {
    justify-content: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .download-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body {
    perspective: none;
  }

  .nav-links { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 12px;
    right: 12px;
    background: rgba(7, 8, 13, 0.97);
    backdrop-filter: blur(10px);
    padding: 24px;
    gap: 20px;
    border: 1px solid var(--border-dim);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  }

  .nav-toggle { display: flex; }
  .nav-actions { display: none; }
  .nav-right-mobile { display: flex; }

  .lang-switch {
    min-width: 48px;
    height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero { padding: 100px 0 60px; }
  .hero-title { letter-spacing: -0.5px; }

  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

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

  .plans-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .plan-next-step {
    padding: 20px 18px;
  }
  .plan-next-step-copy h3 {
    font-size: 20px;
  }
  .plan-next-step-actions {
    width: 100%;
  }
  .plan-next-step-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .download-steps { grid-template-columns: 1fr 1fr; }
  .download-card { padding: 28px 20px; }
}
