:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --panel: #ffffff;
  --panel-strong: #f8fafc;
  --panel-border: rgba(15, 23, 42, 0.08);
  --text: #0f172a;
  --muted: #64748b;
  --white: #ffffff;
  --brand: #f97316;
  --brand-soft: rgba(249, 115, 22, 0.18);
  --green-1: #4ade80;
  --green-2: #16a34a;
  --blue-1: #38bdf8;
  --blue-2: #2563eb;
  --red-1: #fb7185;
  --red-2: #dc2626;
  --shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --radius-lg: 28px;
  --container: 1180px;
  --transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 28%, #f8fafc 100%);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
.button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.34;
}

.site-shell::before {
  top: 80px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(249, 115, 22, 0.08);
}

.site-shell::after {
  right: -120px;
  bottom: 120px;
  width: 360px;
  height: 360px;
  background: rgba(37, 99, 235, 0.08);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1.2rem 0 0;
  background: transparent;
  border-bottom: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
  padding: 0 1.25rem;
  border-radius: 24px;
  background: #14072b;
  color: var(--white);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand span:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(248, 113, 113, 0.12));
  border: 1px solid rgba(249, 115, 22, 0.24);
  color: #fde68a;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.16);
}

.brand-mark-image {
  padding: 0.35rem;
  overflow: hidden;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 0.9rem 1.05rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #ff7a00;
  background: transparent;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 4px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition: transform var(--transition), background var(--transition);
}

.header-icon-link svg {
  width: 25px;
  height: 25px;
}

.header-icon-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.hero,
.page-hero {
  position: relative;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.page-hero-content h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero-copy p,
.page-hero-content p,
.section-copy,
.footer-copy {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p {
  max-width: 640px;
  margin: 1.35rem 0 0;
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fdba74;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.74rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.eyebrow-blue {
  color: #7dd3fc;
}

.eyebrow-red {
  color: #fda4af;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition),
    background var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #03140a;
  background: linear-gradient(135deg, var(--green-1), var(--green-2));
  box-shadow: 0 18px 35px rgba(34, 197, 94, 0.26);
}

.button-primary:hover {
  box-shadow: 0 24px 42px rgba(34, 197, 94, 0.38);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.button-blue {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.28);
}

.button-red {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-1), var(--red-2));
  box-shadow: 0 18px 38px rgba(220, 38, 38, 0.3);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-metrics div,
.hero-preview-card,
.asset-card,
.product-shell,
.loading-state,
.empty-state {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel {
  position: relative;
}

.hero-preview-card {
  position: relative;
  padding: 2rem;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(34, 197, 94, 0.1), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
}

.hero-preview-card > * {
  position: relative;
}

.hero-preview-card h2 {
  margin: 1.1rem 0 0.85rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-preview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-preview-list {
  margin: 1.5rem 0 0;
  padding: 0;
}

.hero-preview-list li {
  position: relative;
  padding-left: 1.2rem;
  color: #1e293b;
  margin-top: 0.8rem;
}

.hero-preview-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
}

.section {
  padding: 2rem 0 4rem;
}

.section-accent-red {
  position: relative;
}

.section-accent-red::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 0;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.12);
  filter: blur(90px);
  pointer-events: none;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
}

.section-link {
  color: #475569;
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.asset-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.asset-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(148, 163, 184, 0.24);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
}

.asset-card.is-exclusive:hover {
  box-shadow: 0 25px 60px rgba(220, 38, 38, 0.18);
}

.asset-card.is-free:hover {
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.16);
}

.asset-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

.asset-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.16) 48%, rgba(255, 255, 255, 0.82) 100%);
}

.asset-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.asset-card:hover .asset-card-media img {
  transform: scale(1.08);
}

.asset-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem;
}

.card-topline,
.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-free {
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(96, 165, 250, 0.25);
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.18);
}

.badge-exclusive {
  color: #ffe4e6;
  background: rgba(220, 38, 38, 0.18);
  border: 1px solid rgba(251, 113, 133, 0.28);
  box-shadow: 0 0 24px rgba(239, 68, 68, 0.2);
}

.badge-neutral {
  color: #fed7aa;
  background: var(--brand-soft);
  border: 1px solid rgba(249, 115, 22, 0.18);
}

.asset-category,
.product-chip,
.product-side-note,
.asset-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.asset-card h3 {
  margin: 0.85rem 0 0.6rem;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.asset-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.asset-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.asset-price {
  display: grid;
  gap: 0.2rem;
}

.asset-price strong {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.asset-price span {
  color: var(--muted);
  font-size: 0.84rem;
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.page-hero-content {
  padding: 2.3rem 0;
}

.page-hero-paid .page-hero-content,
.page-hero-exclusive .page-hero-content,
.page-hero-free .page-hero-content {
  position: relative;
}

.page-hero-exclusive .page-hero-content::after,
.page-hero-free .page-hero-content::after,
.page-hero-paid .page-hero-content::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  filter: blur(64px);
}

.page-hero-paid .page-hero-content::after {
  background: rgba(34, 197, 94, 0.16);
}

.page-hero-exclusive .page-hero-content::after {
  background: rgba(239, 68, 68, 0.18);
}

.page-hero-free .page-hero-content::after {
  background: rgba(59, 130, 246, 0.18);
}

.product-section {
  padding-top: 3rem;
}

.product-shell,
.loading-state,
.empty-state {
  border-radius: 28px;
}

.loading-state,
.empty-state {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 2rem;
  padding: 1.4rem;
}

.product-media {
  border-radius: 22px;
  overflow: hidden;
  background: #e2e8f0;
  min-height: 430px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem 0;
}

.product-content h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.product-price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.product-description {
  color: #334155;
  line-height: 1.8;
}

.product-description h2,
.product-description h3 {
  margin: 1.5rem 0 0.75rem;
  letter-spacing: -0.03em;
}

.product-description p,
.product-description ul {
  margin: 0 0 1rem;
}

.product-description ul {
  padding-left: 1.2rem;
}

.product-description li {
  margin-bottom: 0.55rem;
}

.product-sidebar {
  display: grid;
  gap: 1rem;
}

.product-panel {
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.product-panel h3 {
  margin: 0 0 0.9rem;
  letter-spacing: -0.03em;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.product-actions .button {
  width: 100%;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  background: transparent;
}

.brand-footer {
  margin-bottom: 0;
  flex-shrink: 0;
}

.footer-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 1.5rem;
  padding: 2.1rem 2rem 1.2rem;
  border-radius: 0;
  background:
    radial-gradient(circle at right center, rgba(88, 28, 135, 0.28), transparent 28%),
    linear-gradient(180deg, #14072b 0%, #120626 100%);
  border: 0;
  box-shadow: none;
}

.footer-brand-block {
  display: grid;
  gap: 1rem;
  max-width: 420px;
}

.footer-brand-block .brand-mark {
  width: 72px;
  height: 72px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  justify-content: flex-end;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition), transform var(--transition);
}

.footer-social-link svg {
  width: 28px;
  height: 28px;
}

.footer-social-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-meta-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-meta-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-meta-links a:hover,
.section-link:hover {
  color: #ffffff;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.is-revealed {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .section-heading {
    gap: 0.7rem;
  }

  .footer-bar {
    grid-template-columns: 1fr;
    padding: 1.6rem 1.25rem 1rem;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .navbar {
    flex-wrap: wrap;
    padding: 1rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-metrics,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-preview-card,
  .product-shell {
    padding: 1rem;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .product-media {
    min-height: 280px;
  }

  .asset-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .asset-footer .button {
    width: 100%;
  }
}
