:root {
  --bg: #08090d;
  --bg-deep: #111217;
  --surface: rgba(16, 17, 22, 0.84);
  --surface-soft: rgba(19, 21, 27, 0.78);
  --surface-strong: rgba(23, 25, 32, 0.96);
  --surface-elevated: rgba(28, 30, 38, 0.98);
  --line: rgba(255, 255, 255, 0.075);
  --line-strong: rgba(255, 200, 34, 0.3);
  --text: #f6f4ee;
  --text-soft: rgba(246, 244, 238, 0.74);
  --text-faint: rgba(246, 244, 238, 0.46);
  --accent: #ff5722;
  --accent-strong: #ffc822;
  --accent-cool: #ffc822;
  --accent-glow: rgba(255, 87, 34, 0.34);
  --accent-soft: rgba(255, 200, 34, 0.18);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 22px 54px rgba(0, 0, 0, 0.32);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --font-display: "Syne", "Space Grotesk", sans-serif;
  --font-body: "Space Grotesk", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color-scheme: dark;
  background:
    radial-gradient(circle at top left, rgba(255, 87, 34, 0.26), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(255, 200, 34, 0.16), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255, 87, 34, 0.12), transparent 30%),
    linear-gradient(180deg, #08090d 0%, #101117 48%, #090a0e 100%);
  color: var(--text);
  font-family: var(--font-body);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
model-viewer {
  display: block;
  max-width: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  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: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.46), transparent 90%);
  opacity: 0.2;
}

body::after {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 87, 34, 0.16), transparent 18%),
    radial-gradient(circle at 76% 30%, rgba(255, 200, 34, 0.1), transparent 20%),
    radial-gradient(circle at 62% 76%, rgba(255, 87, 34, 0.08), transparent 18%);
  filter: blur(24px);
  opacity: 0.82;
}

.marketing-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100vw - 28px));
  margin: 0 auto;
  padding: 24px 0 78px;
}

.marketing-shell::before {
  content: "";
  position: absolute;
  inset: 88px 0 auto;
  height: 980px;
  border-radius: 52px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background:
    radial-gradient(circle at top right, rgba(255, 200, 34, 0.08), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 87, 34, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 44%);
  opacity: 0.9;
  pointer-events: none;
}

.marketing-nav,
.page-breadcrumb,
.hero,
.workflow-showcase,
.feed-strip,
.creators,
.site-footer {
  position: relative;
  z-index: 1;
}

.marketing-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.marketing-nav__brand,
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

.marketing-nav__brand-mark,
.site-footer__brand-mark,
.hero__brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 22px;
  border: 1px solid rgba(255, 200, 34, 0.18);
  background:
    radial-gradient(circle at top left, rgba(255, 200, 34, 0.2), transparent 42%),
    radial-gradient(circle at bottom right, rgba(255, 87, 34, 0.26), transparent 56%),
    linear-gradient(160deg, rgba(13, 19, 28, 0.98), rgba(7, 11, 18, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 44px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(255, 87, 34, 0.14);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease;
}

.marketing-nav__brand-mark {
  width: 68px;
  height: 68px;
}

.site-footer__brand-mark {
  width: 58px;
  height: 58px;
}

.hero__brand-mark {
  width: 70px;
  height: 70px;
}

.marketing-nav__brand:hover .marketing-nav__brand-mark,
.site-footer__brand:hover .site-footer__brand-mark {
  transform: translateY(-2px);
  border-color: rgba(255, 200, 34, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 24px 54px rgba(0, 0, 0, 0.38),
    0 0 44px rgba(255, 87, 34, 0.18);
}

.marketing-nav__brand-icon,
.site-footer__brand-icon,
.hero__brand-icon {
  object-fit: contain;
}

.marketing-nav__brand-icon,
.site-footer__brand-icon {
  width: 36px;
  height: 36px;
}

.hero__brand-icon {
  width: 42px;
  height: 42px;
}

.marketing-nav__brand-lockup,
.site-footer__brand-lockup,
.hero__brand-lockup {
  display: grid;
  gap: 4px;
}

.marketing-nav__brand-kicker,
.hero__brand-kicker,
.page-breadcrumb__current,
.feed-card__mode,
.hero-stage__panel-badge,
.hero-stage__spotlight-badge,
.creator-card__prompt-label,
.locale-switch__link {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.marketing-nav__brand-kicker,
.hero__brand-kicker,
.site-footer__brand-kicker {
  color: var(--accent-strong);
  font-size: 0.74rem;
}

.marketing-nav__brand-text,
.site-footer__brand-text,
.hero__brand-title {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 76%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.marketing-nav__brand-text {
  font-size: clamp(1.9rem, 2.4vw, 2.35rem);
}

.site-footer__brand-text {
  font-size: 1.7rem;
}

.hero__brand-title {
  font-size: clamp(2.2rem, 3.6vw, 3.1rem);
  line-height: 0.94;
}

.marketing-nav__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.nav-link {
  color: var(--text-faint);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 150ms ease;
}

.nav-link:hover {
  color: var(--text);
}

.locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.locale-switch__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text-faint);
  font-size: 0.76rem;
  transition:
    color 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.locale-switch__link:hover {
  color: var(--text);
}

.locale-switch__link--current {
  color: #130700;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 14px 30px rgba(255, 87, 34, 0.22);
}

.button,
.footer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 700;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease,
    border-color 150ms ease;
}

.button:hover,
.footer-chip:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #130700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 44px rgba(255, 87, 34, 0.3);
}

.button--primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 22px 54px rgba(255, 87, 34, 0.36);
}

.button--nav {
  color: #130700;
  background: linear-gradient(135deg, var(--accent-strong) 0%, rgba(255, 87, 34, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 36px rgba(255, 87, 34, 0.26);
}

.button--secondary,
.footer-chip {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.button--secondary:hover,
.footer-chip:hover {
  border-color: rgba(255, 200, 34, 0.22);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 4px 0 18px;
  color: var(--text-faint);
  font-size: 0.88rem;
}

.page-breadcrumb__link {
  color: var(--text-soft);
  transition: color 150ms ease;
}

.page-breadcrumb__link:hover {
  color: var(--text);
}

.page-breadcrumb__divider {
  color: rgba(255, 255, 255, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 1.02fr);
  gap: 28px;
  align-items: center;
  min-height: 540px;
  padding: 36px 40px 38px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(10, 11, 15, 0.98), rgba(15, 17, 23, 0.97) 48%, rgba(23, 25, 32, 0.95)),
    radial-gradient(circle at 16% 18%, rgba(255, 87, 34, 0.1), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255, 200, 34, 0.1), transparent 22%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.72;
}

.hero::before {
  top: -84px;
  left: -46px;
  width: 260px;
  height: 260px;
  background: rgba(255, 87, 34, 0.18);
}

.hero::after {
  right: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 200, 34, 0.12);
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.hero__eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__title,
.section-title,
.feature-card__title,
.creator-card__title {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero__title {
  max-width: 8.6ch;
  font-size: clamp(2.9rem, 5vw, 5rem);
}

.hero__body,
.section-copy,
.feature-card__body,
.feed-strip__body,
.creator-card__meta,
.creator-card__prompt-label,
.site-footer__tagline {
  color: var(--text-soft);
  line-height: 1.65;
}

.hero__body {
  margin: 18px 0 0;
  max-width: 38ch;
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero__proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  max-width: 34rem;
}

.hero-proof-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-proof-chip:nth-child(odd) {
  border-color: rgba(255, 200, 34, 0.16);
}

.hero-proof-chip:nth-child(even) {
  border-color: rgba(255, 87, 34, 0.16);
}

.hero-stage {
  position: relative;
  min-height: 460px;
}

.hero-stage__halo,
.hero-stage__beam,
.hero-stage__mascot-shell,
.hero-stage__panel,
.hero-stage__core {
  position: absolute;
}

.hero-stage__halo {
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.82;
}

.hero-stage__halo--warm {
  top: 8px;
  right: 36px;
  width: 180px;
  height: 180px;
  background: rgba(255, 87, 34, 0.22);
}

.hero-stage__halo--cool {
  left: 34px;
  bottom: 28px;
  width: 230px;
  height: 230px;
  background: rgba(255, 200, 34, 0.16);
}

.hero-stage__beam {
  left: 10%;
  right: 2%;
  top: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 200, 34, 0.34), transparent);
}

.hero-stage__mascot-shell {
  left: 0;
  bottom: 14px;
  z-index: 1;
  width: 210px;
  aspect-ratio: 1;
  border-radius: 34px;
  border: 1px solid rgba(255, 200, 34, 0.14);
  background:
    radial-gradient(circle at top left, rgba(255, 200, 34, 0.18), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255, 87, 34, 0.18), transparent 44%),
    linear-gradient(160deg, rgba(11, 16, 23, 0.92), rgba(17, 24, 35, 0.98));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.hero-stage__mascot-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.hero-stage__mascot-orbit {
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px dashed rgba(255, 200, 34, 0.18);
}

.hero-stage__mascot {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
  animation: float 6.4s ease-in-out infinite;
}

.hero-stage--home .hero-stage__mascot-shell {
  top: 24px;
  left: 0;
  bottom: auto;
  z-index: 4;
  width: 128px;
  border-color: rgba(255, 200, 34, 0.22);
  background:
    radial-gradient(circle at top left, rgba(255, 200, 34, 0.24), transparent 42%),
    radial-gradient(circle at bottom right, rgba(255, 87, 34, 0.2), transparent 48%),
    linear-gradient(160deg, rgba(14, 20, 28, 0.96), rgba(20, 28, 40, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 58px rgba(0, 0, 0, 0.34);
  transform: rotate(-8deg);
}

.hero-stage--home .hero-stage__mascot-shell::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 200, 34, 0.34), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-stage--home .hero-stage__mascot-orbit {
  border-color: rgba(255, 200, 34, 0.24);
}

.hero-stage--home .hero-stage__mascot {
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
}

.hero-stage__panel {
  top: 24px;
  right: 0;
  z-index: 3;
  width: 178px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 15, 20, 0.98), rgba(24, 27, 34, 0.96));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  transform: rotate(8deg);
  animation: support-card-float 8s ease-in-out infinite 0.6s;
}

.hero-stage__panel-media {
  aspect-ratio: 0.96;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.hero-stage__panel-copy {
  display: grid;
  gap: 6px;
  padding: 12px 12px 14px;
}

.hero-stage__panel-badge,
.hero-stage__spotlight-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 200, 34, 0.16);
  background: rgba(7, 8, 10, 0.76);
  color: var(--accent-strong);
  font-size: 0.68rem;
}

.hero-stage__panel-name,
.hero-stage__spotlight-creator,
.feed-card__creator,
.creator-card__cta {
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-stage__panel-name {
  margin: 0;
  font-size: 0.7rem;
}

.hero-stage__panel-prompt {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.94rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hero-stage__core {
  inset: 28px 36px 24px 112px;
  z-index: 2;
  display: grid;
  place-items: center;
}

.hero-stage__core--feed {
  inset: 20px 22px 20px 104px;
}

.hero-stage--home .hero-stage__core--feed {
  inset: 14px 14px 16px 148px;
}

.hero-stage--home .hero-stage__panel--feed {
  top: 22px;
  right: 0;
}

.hero-stage__ring {
  position: absolute;
  inset: 0;
  border-radius: 38px;
}

.hero-stage__ring--outer {
  border: 1px solid rgba(255, 200, 34, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.0)),
    radial-gradient(circle at 22% 20%, rgba(255, 87, 34, 0.08), transparent 26%);
}

.hero-stage__ring--inner {
  inset: 16px;
  border: 1px solid rgba(255, 87, 34, 0.14);
}

.hero-stage__core-media,
.hero-stage__spotlight {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(170deg, rgba(13, 14, 19, 0.98), rgba(24, 27, 35, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 68px rgba(0, 0, 0, 0.38);
}

.hero-stage__core-media {
  aspect-ratio: 0.96;
}

.hero-stage__core-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage__spotlight {
  aspect-ratio: 0.94;
}

.hero-stage__spotlight-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-stage__spotlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 12, 0.02), rgba(5, 8, 12, 0.18) 48%, rgba(5, 8, 12, 0.88) 100%);
}

.hero-stage__panel-image,
.hero-stage__spotlight-image,
.feed-card__image,
.creator-card__avatar,
.hero-stage__panel-image--model,
.hero-stage__spotlight-image--model,
.feed-card__image--model {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage__panel-image--model,
.hero-stage__spotlight-image--model,
.feed-card__image--model {
  background:
    radial-gradient(circle at top, rgba(255, 200, 34, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(12, 18, 26, 0.98), rgba(18, 26, 38, 0.96));
}

.feed-card__image,
.feed-card__image--model {
  transition: transform 220ms ease;
}

.hero-stage__spotlight-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  padding: 0 18px 18px;
}

.hero-stage__spotlight-copy {
  display: grid;
  gap: 8px;
  width: min(78%, 19rem);
  padding: 16px 16px 0 0;
}

.hero-stage__spotlight-creator {
  margin: 0;
  font-size: 0.78rem;
}

.hero-stage__spotlight-prompt {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.3vw, 2.05rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.workflow-showcase,
.creators {
  margin-top: 40px;
  padding: 32px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(12, 13, 18, 0.97), rgba(22, 24, 31, 0.93)),
    radial-gradient(circle at top right, rgba(255, 200, 34, 0.08), transparent 24%);
  box-shadow: var(--shadow-md);
}

.section-title {
  font-size: clamp(2rem, 4.1vw, 3.4rem);
}

.section-copy {
  margin: 14px 0 0;
  max-width: 58ch;
}

.feature-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  counter-reset: feature;
}

.feature-card,
.creator-card,
.feed-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(165deg, rgba(14, 15, 20, 0.97), rgba(24, 27, 34, 0.93));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.feature-card {
  position: relative;
  min-height: 222px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border-radius: 30px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 200, 34, 0.2);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}

a.feature-card {
  display: block;
}

.feature-card::before {
  counter-increment: feature;
  content: "0" counter(feature);
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(246, 244, 238, 0.18);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -54px -70px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 87, 34, 0.12);
  filter: blur(12px);
  pointer-events: none;
}

.feature-card--wide {
  grid-column: span 5;
  background:
    radial-gradient(circle at top right, rgba(255, 87, 34, 0.16), transparent 30%),
    linear-gradient(160deg, rgba(14, 15, 20, 0.98), rgba(24, 26, 33, 0.93));
}

.feature-card--compact {
  grid-column: span 3;
}

.feature-card--tall {
  grid-column: span 4;
  background:
    radial-gradient(circle at top left, rgba(255, 200, 34, 0.14), transparent 36%),
    linear-gradient(160deg, rgba(14, 15, 20, 0.98), rgba(22, 24, 30, 0.94));
}

.feature-card--spotlight {
  grid-column: span 5;
  background:
    radial-gradient(circle at top left, rgba(255, 200, 34, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 87, 34, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(16, 18, 24, 0.98), rgba(26, 28, 35, 0.94));
}

.feature-card__eyebrow {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-card__title {
  max-width: 11.5ch;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.feature-card__body {
  margin: 0;
  max-width: 30ch;
  font-size: 0.98rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.feed-strip {
  position: relative;
  overflow: hidden;
  margin-top: 44px;
  padding: 32px;
  border-radius: 38px;
  border: 1px solid rgba(255, 200, 34, 0.14);
  background:
    radial-gradient(circle at top left, rgba(255, 200, 34, 0.12), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 87, 34, 0.16), transparent 28%),
    linear-gradient(160deg, rgba(11, 12, 17, 0.99), rgba(21, 23, 30, 0.97));
  box-shadow: var(--shadow-lg);
}

.feed-strip::before,
.feed-strip::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.feed-strip::before {
  top: -120px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 87, 34, 0.14);
}

.feed-strip::after {
  right: -110px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: rgba(255, 200, 34, 0.12);
}

.feed-strip__layout {
  display: grid;
  grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.feed-strip__header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  align-content: start;
}

.feed-strip__header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feed-strip__eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 200, 34, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feed-strip__header-action {
  min-height: 42px;
  padding: 0 16px;
}

.feed-strip__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.feed-strip__body {
  margin: 0;
  max-width: 54ch;
  font-size: 1rem;
}

.feed-strip__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.feed-strip__signal {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 200, 34, 0.18);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feed-strip__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.feed-strip__grid--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(155px, auto);
  grid-auto-flow: dense;
}

.feed-strip__grid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feed-strip__grid--solo {
  grid-template-columns: minmax(0, 1fr);
}

.feed-card {
  position: relative;
  border-radius: 24px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.feed-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 200, 34, 0.18);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.feed-card:hover .feed-card__image,
.feed-card:hover .feed-card__image--model {
  transform: scale(1.03);
}

.feed-card--lead {
  grid-column: span 2;
  grid-row: span 2;
}

.feed-card__link {
  display: grid;
  grid-template-rows: auto auto;
  height: 100%;
}

.feed-card__link--model {
  cursor: default;
}

.feed-card__media {
  position: relative;
  aspect-ratio: 1.02;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.feed-card--lead .feed-card__media {
  aspect-ratio: 1.28;
}

.feed-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at top right, rgba(255, 200, 34, 0.12), transparent 32%);
}

.feed-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(5, 8, 12, 0.16) 54%, rgba(5, 8, 12, 0.74) 100%);
}

.feed-card__mode {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 200, 34, 0.92), rgba(255, 87, 34, 0.9));
  color: #130700;
  font-size: 0.68rem;
  box-shadow: 0 12px 28px rgba(255, 87, 34, 0.2);
}

.feed-card--model {
  background:
    radial-gradient(circle at top right, rgba(255, 200, 34, 0.1), transparent 28%),
    linear-gradient(165deg, rgba(14, 15, 20, 0.98), rgba(23, 26, 33, 0.94));
}

.feed-card__content {
  display: grid;
  gap: 12px;
  padding: 16px 16px 18px;
  background: linear-gradient(180deg, rgba(16, 17, 23, 0.98), rgba(20, 23, 31, 0.96));
}

.feed-card--lead .feed-card__content {
  gap: 14px;
  width: calc(100% - 32px);
  margin: -84px 16px 16px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 16, 22, 0.82), rgba(18, 21, 28, 0.97)),
    radial-gradient(circle at top right, rgba(255, 200, 34, 0.08), transparent 30%);
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
}

.feed-card__content-link {
  display: grid;
  gap: 12px;
  color: inherit;
}

.feed-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feed-card__creator-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.feed-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  object-fit: cover;
  flex: none;
}

.feed-card__avatar--fallback {
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
  background:
    radial-gradient(circle at top left, rgba(255, 200, 34, 0.18), transparent 44%),
    radial-gradient(circle at bottom right, rgba(255, 87, 34, 0.16), transparent 50%),
    rgba(255, 255, 255, 0.04);
}

.feed-card__creator {
  margin: 0;
  min-width: 0;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-card__prompt,
.creator-card__prompt-text {
  margin: 0;
  color: var(--text);
  line-height: 1.28;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feed-card__prompt {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.035em;
  -webkit-line-clamp: 3;
}

.feed-card--lead .feed-card__prompt {
  max-width: 12ch;
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  -webkit-line-clamp: 2;
}

.feed-card__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 0.86rem;
}

.feed-card--lead .feed-card__meta {
  padding-top: 8px;
}

.feed-card__likes {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.feed-card__likes::before {
  content: "❤";
  color: var(--accent);
  font-size: 0.78rem;
}

.feed-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  font-weight: 700;
}

.feed-card__cta::after,
.creator-card__cta::after {
  content: "\2192";
  transition: transform 150ms ease;
}

.feed-card:hover .feed-card__cta::after,
.creator-card:hover .creator-card__cta::after {
  transform: translateX(3px);
}

.creators__empty {
  margin: 18px 0 0;
  color: var(--text-soft);
}

.creators__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.creator-card {
  position: relative;
  border-radius: 28px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.creator-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -54px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 200, 34, 0.08);
  filter: blur(10px);
  pointer-events: none;
}

.creator-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 200, 34, 0.2);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

.creator-card:first-child {
  grid-column: span 2;
}

.creator-card__link {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  height: 100%;
  padding: 20px;
}

.creator-card:first-child .creator-card__link {
  grid-template-columns: 100px minmax(0, 1fr);
  padding: 24px;
}

.creator-card__avatar {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.creator-card:first-child .creator-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 30px;
}

.creator-card__avatar--fallback {
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent-strong);
  background:
    radial-gradient(circle at top left, rgba(255, 200, 34, 0.16), transparent 44%),
    radial-gradient(circle at bottom right, rgba(255, 87, 34, 0.16), transparent 50%),
    rgba(255, 255, 255, 0.04);
}

.creator-card__title {
  font-size: 1.58rem;
}

.creator-card__meta,
.creator-card__cta,
.creator-card__prompt-label {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.creator-card__count {
  margin-right: 6px;
  color: var(--text);
  font-weight: 700;
}

.creator-card__prompt-text {
  margin-top: 8px;
  -webkit-line-clamp: 3;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__lead {
  display: grid;
  gap: 14px;
}

.site-footer__tagline {
  margin: 0;
  max-width: 48ch;
}

.site-footer__actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.site-footer__downloads,
.site-footer__social,
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-chip__icon-wrap {
  display: grid;
  place-items: center;
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.footer-chip__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-chip--store {
  min-width: 168px;
  justify-content: flex-start;
  padding: 0 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 200, 34, 0.14), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255, 87, 34, 0.1), transparent 42%),
    linear-gradient(165deg, rgba(14, 20, 28, 0.96), rgba(20, 28, 40, 0.92));
}

.footer-chip--social {
  min-height: 48px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.footer-chip--legal {
  min-height: 44px;
  padding: 0 16px;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

@media (max-width: 1120px) {
  .feature-card--wide,
  .feature-card--compact,
  .feature-card--tall,
  .feature-card--spotlight {
    grid-column: span 6;
  }

  .feed-strip__layout {
    grid-template-columns: 1fr;
  }

  .feed-strip__grid--featured,
  .feed-strip__grid--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feed-card--lead {
    grid-column: span 2;
    grid-row: auto;
  }

  .hero-stage__core {
    inset: 28px 18px 24px 92px;
  }

  .hero-stage__core--feed {
    inset: 18px 10px 20px 88px;
  }

  .hero-stage--home .hero-stage__mascot-shell {
    top: 42px;
    left: 4px;
    width: 140px;
  }

  .hero-stage--home .hero-stage__core--feed {
    inset: 18px 10px 20px 152px;
  }

  .hero-stage--home .hero-stage__panel--feed {
    top: 28px;
    right: 0;
  }
}

@media (max-width: 980px) {
  .marketing-nav {
    grid-template-columns: 1fr;
  }

  .marketing-nav__actions {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-stage {
    min-height: 470px;
  }

  .hero-stage__panel {
    display: none;
  }

  .hero-stage__mascot-shell {
    left: 8px;
    width: 184px;
    bottom: 8px;
  }

  .hero-stage--home .hero-stage__mascot-shell {
    top: 18px;
    left: 8px;
    bottom: auto;
    width: 128px;
  }

  .hero-stage__core {
    inset: 20px 12px 20px 72px;
  }

  .hero-stage__core--feed {
    inset: 12px 0 18px 68px;
  }

  .hero-stage--home .hero-stage__core--feed {
    inset: 16px 0 18px 92px;
  }

  .creators__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creator-card:first-child {
    grid-column: span 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__actions {
    justify-items: start;
  }

  .site-footer__downloads,
  .site-footer__social,
  .site-footer__legal {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .marketing-shell {
    width: min(100vw - 18px, 1240px);
    padding-top: 18px;
  }

  .marketing-shell::before {
    inset: 74px 0 auto;
    height: 840px;
  }

  .marketing-nav__actions {
    gap: 10px;
  }

  .nav-link {
    display: none;
  }

  .locale-switch {
    margin-left: auto;
  }

  .marketing-nav__brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .marketing-nav__brand-icon {
    width: 30px;
    height: 30px;
  }

  .marketing-nav__brand-text {
    font-size: 1.72rem;
  }

  .hero {
    gap: 24px;
    padding: 26px 24px 28px;
  }

  .hero__brand {
    gap: 14px;
    margin-bottom: 18px;
  }

  .hero__brand-mark {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .hero__brand-icon {
    width: 32px;
    height: 32px;
  }

  .hero__brand-title {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .hero__title {
    max-width: 8.4ch;
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .hero__body {
    font-size: 1rem;
  }

  .hero__proof-row {
    gap: 8px;
  }

  .hero-proof-chip {
    min-height: 36px;
    font-size: 0.84rem;
  }

  .hero-stage {
    min-height: 360px;
  }

  .hero-stage__mascot-shell {
    left: 0;
    bottom: 0;
    width: 148px;
    border-radius: 28px;
  }

  .hero-stage--home .hero-stage__mascot-shell {
    top: 12px;
    left: 4px;
    bottom: auto;
    width: 92px;
    border-radius: 24px;
    transform: rotate(-6deg);
  }

  .hero-stage__mascot-shell::before,
  .hero-stage__mascot-orbit {
    inset: 12px;
    border-radius: 20px;
  }

  .hero-stage--home .hero-stage__mascot-shell::before,
  .hero-stage--home .hero-stage__mascot-orbit {
    inset: 10px;
    border-radius: 16px;
  }

  .hero-stage__core {
    inset: 12px 0 12px 40px;
  }

  .hero-stage__core--feed {
    inset: 8px 0 10px 38px;
  }

  .hero-stage--home .hero-stage__core--feed {
    inset: 14px 0 10px 62px;
  }

  .hero-stage__ring,
  .hero-stage__core-media,
  .hero-stage__spotlight {
    border-radius: 28px;
  }

  .hero-stage__ring--inner {
    inset: 12px;
  }

  .hero-stage__spotlight-overlay {
    padding: 0 14px 14px;
  }

  .hero-stage__spotlight-copy {
    width: min(82%, 16rem);
    gap: 6px;
  }

  .hero-stage__spotlight-prompt {
    font-size: 1.36rem;
    max-width: 14ch;
  }

  .workflow-showcase,
  .feed-strip,
  .creators {
    padding: 24px 20px;
  }

  .feature-bento,
  .feed-strip__grid--featured,
  .feed-strip__grid--duo,
  .feed-strip__grid--solo,
  .creators__grid {
    grid-template-columns: 1fr;
  }

  .feature-card--wide,
  .feature-card--compact,
  .feature-card--tall,
  .feature-card--spotlight,
  .feed-card--lead,
  .creator-card:first-child {
    grid-column: span 1;
  }

  .feed-card--lead {
    grid-row: auto;
  }

  .feed-card__link {
    grid-template-rows: minmax(200px, 1fr) auto;
  }

  .feed-card__media {
    aspect-ratio: 1.08;
    min-height: unset;
  }

  .feed-card--lead .feed-card__media {
    aspect-ratio: 1.16;
  }

  .feed-card--lead .feed-card__content {
    width: calc(100% - 24px);
    margin: -74px 12px 12px;
    border-radius: 22px;
  }

  .creator-card__link,
  .creator-card:first-child .creator-card__link {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 18px;
  }

  .creator-card__avatar,
  .creator-card:first-child .creator-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .footer-chip--store,
  .footer-chip--social,
  .footer-chip--legal {
    min-width: unset;
  }

  .feed-strip__header-top {
    align-items: flex-start;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes support-card-float {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }

  50% {
    transform: translateY(-8px) rotate(7deg);
  }
}
