/* EasyFiveM landing — FiveM Tools–inspired layout */

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.55); }
  70% { box-shadow: 0 0 0 9px transparent; }
  to { box-shadow: 0 0 0 0 transparent; }
}

@keyframes float {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(40px, 30px, 0) scale(1.08); }
}

@keyframes hero-promo-in {
  0% { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-promo-sheen {
  0% { left: -60%; }
  18%, to { left: 130%; }
}

@keyframes toolBadgePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.5); }
  70% { box-shadow: 0 0 0 6px transparent; }
  to { box-shadow: 0 0 0 0 transparent; }
}

@keyframes slider-float {
  0%, to {
    transform: translateY(0) rotate(-0.4deg);
    box-shadow: var(--shadow), 0 12px 48px rgba(0, 0, 0, 0.22);
  }
  35% {
    transform: translateY(-8px) rotate(0.2deg);
    box-shadow: var(--shadow), 0 28px 64px rgba(0, 0, 0, 0.18);
  }
  65% {
    transform: translateY(-5px) rotate(-0.3deg);
    box-shadow: var(--shadow), 0 22px 56px rgba(0, 0, 0, 0.2);
  }
}

.efm-landing-page {
  --bg-0: #0b0a09;
  --bg-1: #12100d;
  --glass: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --border-orange: rgba(255, 122, 26, 0.45);
  --text: #f4f0ea;
  --muted: #a9a29a;
  --faint: #767069;
  --orange: #ff7a1a;
  --orange-soft: #ffa149;
  --grad: linear-gradient(120deg, #ffa149, #ff6a00);
  --glow: 0 10px 40px rgba(255, 106, 0, 0.32);
  --glow-soft: 0 0 60px rgba(255, 122, 26, 0.18);
  --discord: #5865f2;
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow: 0 14px 44px rgba(0, 0, 0, 0.38);

  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg-0);
  background-image:
    radial-gradient(1100px 620px at 88% -12%, rgba(255, 122, 26, 0.13), transparent 60%),
    radial-gradient(900px 600px at -12% 108%, rgba(255, 122, 26, 0.07), transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.efm-landing-page *,
.efm-landing-page *::before,
.efm-landing-page *::after {
  box-sizing: border-box;
}

.efm-landing {
  flex: 1;
}

.efm-landing-page img {
  max-width: 100%;
  display: inline-block;
}

.efm-landing-page main a:not(.btn) {
  color: var(--orange-soft);
  text-decoration: none;
}

.efm-landing-page main a:not(.btn):hover {
  color: var(--orange);
}

.efm-landing h1,
.efm-landing h2,
.efm-landing h3,
.efm-landing h4,
.footer h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.015em;
}

.efm-landing h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 800;
}

.efm-landing h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 700;
}

.efm-landing h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.efm-landing p {
  margin: 0 0 1em;
}

.efm-landing ::selection {
  background: rgba(255, 122, 26, 0.4);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--orange);
  color: #1d0e02;
  padding: 0.6rem 1rem;
  border-radius: 0 0 12px 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.container.narrow {
  width: min(820px, 100% - 2.5rem);
}

.center {
  text-align: center;
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding-top: 1.5rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 0.3rem;
}

.section-head p {
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}

.text-gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.promo-inline-code {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange-soft);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.72rem 1.45rem;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}

.btn svg {
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(120deg, #ffb347, #ff7a1a 55%, #ff6a00);
  color: #120a04;
  box-shadow: 0 4px 24px rgba(255, 106, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  color: #120a04;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255, 106, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f4f0ea;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 122, 26, 0.45);
  color: #fff;
}

.btn-discord {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 6px 28px rgba(88, 101, 242, 0.38);
}

.btn-discord:hover {
  background: #6873f4;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(88, 101, 242, 0.48);
}

.btn-lg {
  padding: 0.95rem 1.9rem;
  font-size: 1.05rem;
  border-radius: 16px;
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  border-radius: 10px;
}

.btn-block {
  width: 100%;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  color: var(--muted);
}

.chip-unlimited {
  color: var(--orange-soft);
  border-color: rgba(255, 122, 26, 0.35);
  background: rgba(255, 122, 26, 0.07);
}

.chip-soon {
  color: var(--faint);
  border-style: dashed;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(92vh - var(--site-header-h, 88px));
  display: flex;
  align-items: center;
  padding: calc(var(--site-header-h, 88px) + 2rem) 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.orb-1 {
  width: 560px;
  height: 560px;
  right: -140px;
  top: -180px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.5), transparent 65%);
  animation: float 13s ease-in-out infinite alternate;
}

.orb-2 {
  width: 420px;
  height: 420px;
  left: -160px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.32), transparent 65%);
  animation: float 16s ease-in-out infinite alternate-reverse;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 25%, transparent 75%);
}

.hero-inner {
  position: relative;
}

.hero-split {
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(560px, 48vw);
  align-items: center;
  gap: 3rem;
}

.hero-copy {
  max-width: 620px;
}

.hero-promo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 100%;
  margin-bottom: 1.7rem;
  padding: 0.4rem 0.85rem 0.4rem 0.45rem;
  border-radius: 999px;
  background: linear-gradient(var(--bg-0), var(--bg-0)) padding-box,
    linear-gradient(120deg, rgba(255, 161, 73, 0.55), rgba(255, 106, 0, 0.15) 45%, rgba(255, 255, 255, 0.08)) border-box;
  border: 1px solid transparent;
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 8px 30px rgba(255, 106, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.22s ease;
  animation: hero-promo-in 0.6s cubic-bezier(0.16, 0.84, 0.44, 1) both;
  text-decoration: none;
}

.hero-promo:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 12px 38px rgba(255, 106, 0, 0.16);
  color: var(--text);
}

.hero-promo-sheen {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: hero-promo-sheen 6.5s ease-in-out 1.2s infinite;
}

.hero-promo-chip {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--grad);
  color: #1d0e02;
  box-shadow: 0 2px 12px rgba(255, 106, 0, 0.45);
}

.hero-promo-text {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-promo-text strong {
  font-weight: 600;
  color: var(--text);
}

.hero-promo-sep,
.hero-stats span {
  color: var(--faint);
}

.hero-promo-deal {
  color: var(--muted);
}

.hero-promo-was {
  color: var(--faint);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 122, 26, 0.55);
}

.hero-promo-code strong,
.hero-promo-now {
  color: var(--orange-soft);
  font-weight: 700;
}

.hero-promo-code {
  color: var(--muted);
}

.hero-promo-code strong {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.hero-promo-arrow {
  flex-shrink: 0;
  color: var(--orange-soft);
  transition: transform 0.18s ease;
}

.hero-promo:hover .hero-promo-arrow {
  transform: translateX(2px);
}

.hero h1 {
  margin-bottom: 1.1rem;
}

.hero-sub {
  font-size: 1.13rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 2.1rem;
}

.hero-sub strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 3.2rem;
}

.hero-actions[hidden],
.hero-actions .btn[hidden] {
  display: none !important;
}

.hero-actions .btn-lg {
  min-height: 52px;
  padding-inline: 1.75rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-stats span {
  font-size: 0.84rem;
}

/* Hero preview — browser mockup with full-page screenshots */
.hero-slider {
  position: relative;
  width: 100%;
  min-width: 320px;
}

.hero-browser {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #141218 0%, #0a090c 100%);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 122, 26, 0.08);
  animation: slider-float 7s ease-in-out infinite;
  will-change: transform;
}

.hero-browser-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-browser-flow {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-browser-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.hero-browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.hero-browser-dot.is-live {
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 122, 26, 0.55);
}

.hero-browser-viewport {
  position: relative;
  aspect-ratio: 1280 / 720;
  background: #08080a;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  text-decoration: none;
  color: inherit;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #08080a;
}

.hero-browser-dock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.55rem 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 7, 10, 0.96);
}

.hero-slide-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
}

.hero-tool-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(11, 10, 9, 0.6);
  color: var(--muted);
  white-space: nowrap;
}

.hero-tool-chip-live {
  color: var(--orange-soft);
  border-color: var(--border-orange);
  background: rgba(46, 22, 5, 0.72);
}

.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.active {
  background: var(--orange);
  transform: scale(1.15);
}

/* Tool grid */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 1.4rem;
}

.tool-card-wrap {
  position: relative;
  display: flex;
  transition: transform 0.2s ease;
}

.tool-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.8rem;
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.tool-card-wrap .tool-card {
  flex: 1 1 auto;
}

.tool-card-wrap.reveal.in:hover,
.tool-card-wrap:hover {
  transform: translateY(-4px);
}

.tool-card-wrap > .tool-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  white-space: nowrap;
  color: var(--orange-soft);
  background: rgba(20, 14, 9, 0.95);
  border: 1px solid var(--border-orange);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  user-select: none;
}

.tool-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.6);
  animation: toolBadgePulse 1.8s ease-out infinite;
}

.tool-card.has-card-bg {
  overflow: hidden;
}

.tool-card.has-card-bg > * {
  position: relative;
  z-index: 1;
}

.tool-card.has-card-bg::before,
.tool-card.has-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.tool-card.has-card-bg::before {
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.tool-card.has-card-bg::after {
  background: linear-gradient(180deg, rgba(12, 9, 6, 0.45) 0, rgba(12, 9, 6, 0.74) 58%, rgba(12, 9, 6, 0.92) 100%);
}

a.tool-card.has-card-bg:hover::before {
  transform: scale(1.05);
}

a.tool-card {
  cursor: pointer;
}

a.tool-card:hover {
  border-color: var(--border-orange);
  color: var(--text);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32), 0 0 0 1px var(--border-orange);
}

.tool-card p {
  font-size: 0.93rem;
  flex-grow: 1;
  margin: 0;
  color: var(--muted);
}

.tool-card-soon {
  opacity: 0.62;
}

.efm-card-i2p::before {
  background-image: url("/landing/assets/hero-slide-i2p.png");
}

.efm-card-editor::before {
  background-image: url("/landing/assets/hero-slide-editor.png");
}

.efm-card-scripts::before {
  background-image: url("/landing/assets/hero-slide-scripts.png");
}

.efm-card-community::before {
  background-image: url("/landing/assets/hero-slide-community.png");
}

.efm-card-handling::before {
  background-image: url("/landing/assets/hero-slide-handling.png");
}

.efm-card-soon::before,
.efm-card-soon2::before {
  background: linear-gradient(145deg, #141210, #0b0a09);
}

.tool-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 122, 26, 0.1);
  border: 1px solid rgba(255, 122, 26, 0.28);
  color: var(--orange);
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}

.tool-icon svg {
  width: 24px;
  height: 24px;
}

.tool-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}

.tool-card-top .tool-icon {
  margin-bottom: 0;
}

.tool-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--orange-soft);
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.2);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

a.tool-card:hover .tool-go {
  background: var(--grad);
  border-color: transparent;
  color: #1d0e02;
  transform: translateX(3px);
}

a.tool-card:hover .tool-icon {
  background: rgba(255, 122, 26, 0.16);
  border-color: rgba(255, 122, 26, 0.45);
}

.tool-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.4rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 1.4rem;
}

.feature-card {
  padding: 1.6rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 122, 26, 0.1);
  border: 1px solid rgba(255, 122, 26, 0.28);
  color: var(--orange);
  margin-bottom: 0.9rem;
}

/* Pro plan strip */
.nolimit-strip {
  padding: 0 0 0.5rem;
}

.nolimit-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 3.2vw, 2.35rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 122, 26, 0.2);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.nolimit-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px 200px at 28% 50%, rgba(255, 122, 26, 0.16), transparent 72%);
  pointer-events: none;
}

.nolimit-inf,
.nolimit-copy,
.nolimit-cta {
  position: relative;
  z-index: 1;
}

.nolimit-inf {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(255, 106, 0, 0.5));
  flex-shrink: 0;
}

.nolimit-copy {
  flex: 1 1 280px;
  min-width: 0;
}

.nolimit-copy h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
}

.nolimit-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nolimit-copy p {
  color: var(--muted);
  margin: 0;
  max-width: 640px;
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  line-height: 1.6;
}

.nolimit-copy strong {
  color: var(--text);
}

.nolimit-cta {
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 11.5rem;
  justify-content: center;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.6rem;
  max-width: 860px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  padding: 2.1rem 1.9rem;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 0.3rem;
}

.price .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.1rem;
  line-height: 1;
}

.price .per,
.price-tag {
  color: var(--faint);
  font-size: 0.95rem;
}

.price-tag {
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}

.price-was {
  text-decoration: line-through;
  color: var(--faint);
  font-size: 1.4rem;
  font-family: var(--font-display);
}

.price-list {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-grow: 1;
}

.price-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}

.price-list li strong {
  color: var(--text);
}

.price-featured {
  border-color: var(--border-orange);
  box-shadow: var(--shadow), var(--glow-soft);
}

.price-featured .amount {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.featured-tag {
  position: absolute;
  top: -13px;
  right: 1.6rem;
  background: var(--grad);
  color: #1d0e02;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--glow);
}

.price-note {
  margin: 0.8rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--faint);
}

/* Promo banner */
.promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: 860px;
  margin: 0 auto 1.6rem;
  padding: 1.15rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-orange);
  background: linear-gradient(120deg, rgba(255, 122, 26, 0.14), rgba(255, 106, 0, 0.05));
  overflow: hidden;
}

.promo-banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 120px at 12% 0, rgba(255, 122, 26, 0.22), transparent 70%);
  pointer-events: none;
}

.promo-banner-spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--grad);
  color: #1d0e02;
  box-shadow: var(--glow);
  position: relative;
  z-index: 1;
}

.promo-banner-copy {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.promo-banner-head {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.promo-banner-pct {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #1d0e02;
  color: var(--orange-soft);
}

.promo-banner-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.promo-banner-was {
  text-decoration: line-through;
  color: var(--faint);
}

.promo-banner-now {
  color: var(--orange-soft);
}

.promo-banner-cta {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 8px;
  border: 1px dashed var(--border-orange);
  background: rgba(255, 122, 26, 0.08);
  color: var(--orange-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  vertical-align: baseline;
  transition: background 0.15s ease;
}

.promo-code-sm {
  font-size: 0.78rem;
  padding: 0.1rem 0.4rem;
}

.promo-code:hover {
  background: rgba(255, 122, 26, 0.16);
}

.promo-code-check {
  display: none;
}

.promo-code.is-copied .promo-code-copy {
  display: none;
}

.promo-code.is-copied .promo-code-check {
  display: block;
}

/* FAQ */
.faq-item {
  margin-bottom: 0.85rem;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--faint);
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

.faq-item p {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Final CTA */
.cta-final {
  padding-bottom: 6.5rem;
}

.cta-card {
  text-align: center;
  padding: 3.6rem 2rem;
  background: radial-gradient(480px 200px at 50% 0, rgba(255, 122, 26, 0.13), transparent 70%), var(--glass);
}

.cta-card p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 1.8rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
  padding: 3.6rem 0 1.8rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.2rem;
  margin-bottom: 2.6rem;
}

.footer-brand p {
  color: var(--faint);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.18s ease;
}

.footer-col a:hover {
  color: var(--orange-soft);
}

.footer-soon {
  color: var(--faint);
  font-size: 0.92rem;
}

.footer-soon em {
  font-style: normal;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-soft);
  margin-left: 0.25rem;
}

.footer-disclaimer {
  flex-basis: 100%;
  margin: 0;
  max-width: 72ch;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--muted);
}

.brand-wordmark {
  height: 28px;
  width: auto;
}

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

.reveal.in {
  opacity: 1;
  transform: none;
}

.hero .reveal.in {
  opacity: 1;
  transform: none;
}

/* Toast */
.toast-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  background: rgba(18, 16, 13, 0.95);
  border: 1px solid var(--border-orange);
  color: var(--text);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: none;
}

.toast-auth-error {
  border-color: rgba(248, 113, 113, 0.55);
  background: rgba(69, 10, 10, 0.92);
  color: #fecaca;
  max-width: min(420px, 92vw);
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-slider {
    display: none;
  }

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

  .nolimit-inner {
  flex-direction: column;
    text-align: center;
  align-items: center;
  }

  .nolimit-copy p {
    margin-inline: auto;
  }

  .nolimit-cta {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .promo-banner {
  flex-direction: column;
    text-align: center;
    align-items: stretch;
  }

  .promo-banner-spark {
    align-self: center;
  }

  .promo-banner-cta {
    width: 100%;
    justify-content: center;
  }

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

@media (max-width: 600px) {
  .hero-promo {
    font-size: 0.8rem;
    white-space: normal;
  }

  .hero-promo-text {
  flex-wrap: wrap;
  }

  .hero-promo-code,
  .hero-promo-sep {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb-1,
  .orb-2,
  .hero-promo,
  .hero-promo-sheen,
  .hero-browser,
  .tool-badge-dot {
    animation: none;
  }

  .hero-promo-sheen {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
