@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #090a0d;
  --bg-strong: #12141a;
  --surface: rgba(18, 20, 26, 0.84);
  --surface-strong: #1a1d24;
  --surface-dark: #0d0f14;
  --text: #f3eee8;
  --text-soft: #aaa39a;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #ff3500;
  --accent-strong: #ff5b30;
  --accent-soft: #ffb39d;
  --accent-deep: #ffd3c8;
  --accent-glow: rgba(255, 53, 0, 0.42);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.3);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 53, 0, 0.16), transparent 24%),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, #090a0d 0%, #0d1015 52%, #11141a 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    linear-gradient(transparent 96%, rgba(255, 255, 255, 0.03) 96%),
    linear-gradient(90deg, transparent 96%, rgba(255, 255, 255, 0.03) 96%);
  background-size: 120px 120px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 80%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 80%);
}

body::after {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 53, 0, 0.26), transparent 12%),
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.06), transparent 18%);
}

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

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

button {
  font: inherit;
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 14px 20px;
  background: rgba(13, 15, 20, 0.76);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: contain;
  transition: transform 0.22s ease;
  box-shadow:
    0 0 0 4px rgba(255, 53, 0, 0.12),
    0 8px 20px rgba(255, 91, 48, 0.2);
}

.brand:hover .brand-logo {
  transform: scale(1.08) rotate(3deg);
}

.brand-copy,
.site-footer {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.site-nav a,
.button,
.eyebrow,
.hero-pill,
.filter-chip,
.badge,
.media-badge {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

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

.brand-copy span,
.site-footer {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: #d1cbc3;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  color: var(--text);
}

/* ── Language Switcher ─────────────────────────────────── */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
  transform: scale(1.06);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  min-width: 160px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(13, 15, 20, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: dropdownIn 0.18s ease;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-dropdown li a:hover,
.lang-dropdown li.is-active a {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.lang-dropdown li.is-active a {
  color: var(--accent-soft);
}

.lang-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
}


a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 53, 0, 0.42);
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff6d42 100%);
  color: #140a07;
  box-shadow: 0 18px 36px rgba(255, 53, 0, 0.28);
}

.button-primary:hover {
  box-shadow: 0 24px 44px rgba(255, 53, 0, 0.36);
}

.button-secondary {
  background: rgba(20, 23, 29, 0.86);
  border-color: var(--line);
  color: var(--text);
}

.button-dark {
  background: var(--surface-dark);
  color: white;
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.section {
  padding: 72px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding-top: 44px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.accent-eyebrow,
.cta-eyebrow {
  color: var(--accent-soft);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: fit-content;
  padding: 11px 18px;
  border: 1px solid rgba(255, 53, 0, 0.18);
  border-radius: 999px;
  background: rgba(17, 19, 25, 0.82);
  box-shadow: var(--shadow-md);
  font-size: 0.86rem;
  color: #e7dfd6;
}

.hero-pill span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 53, 0, 0.22);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
}

h2 {
  max-width: 15ch;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
}

.hero-text,
.spotlight-copy > p,
.value-card p,
.showcase-card p,
.faq-list p,
.cta-panel p,
.benefit-card p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1.03rem;
}

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

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

.hero-metrics article,
.benefit-card,
.feature-option,
.spotlight-panel,
.value-panel,
.value-card,
.showcase-card,
.faq-list details,
.cta-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.hero-metrics article {
  padding: 18px 18px 16px;
  border-radius: 22px 22px 8px 22px;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.hero-metrics span {
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 0.93rem;
}

.hero-visual {
  display: flex;
}

.hero-stage {
  position: relative;
  min-height: 720px;
}

.hero-tool-showcase {
  display: grid;
  gap: 24px;
  width: 100%;
  padding: 28px;
  border-radius: 40px 14px 40px 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(23, 26, 33, 0.96), rgba(14, 16, 22, 0.92));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.hero-tool-header {
  display: grid;
  gap: 14px;
}

.hero-tool-previews {
  width: 100%;
}

.hero-tool-panel {
  width: 100%;
  animation: heroFadeIn 0.3s ease;
}

.hero-tool-panel .variation-showcase,
.hero-tool-panel .reference-flow,
.hero-tool-panel .comparison-slider {
  border-radius: 18px 8px 18px 8px;
  overflow: hidden;
}

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

.hero-tool-header p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-tool-card {
  appearance: none;
  width: 100%;
  padding: 18px;
  border-radius: 24px 10px 24px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.hero-tool-card:hover,
.hero-tool-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 53, 0, 0.4);
  background:
    linear-gradient(135deg, rgba(255, 53, 0, 0.22), rgba(255, 255, 255, 0.04));
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 53, 0, 0.14);
}

.hero-tool-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}

.hero-tool-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.94rem;
}

.hero-card-main {
  position: absolute;
  right: 0;
  top: 30px;
  width: min(100%, 520px);
  padding: 18px;
  border-radius: 42px 16px 42px 16px;
  background: linear-gradient(180deg, rgba(22, 24, 31, 0.96), rgba(15, 17, 22, 0.9));
  border: 1px solid var(--line);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.hero-card-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px 10px 28px 10px;
}

.hero-card-copy {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 6px 4px;
}

.hero-card-copy span {
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.hero-card-copy strong {
  font-size: 1.05rem;
}

.floating-card {
  position: absolute;
  padding: 18px;
  border-radius: 24px;
  background: rgba(11, 13, 18, 0.94);
  color: white;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 53, 0, 0.18);
  color: var(--accent-soft);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-pricing {
  left: 12px;
  top: 0;
  width: 320px;
}

.floating-tool-list {
  display: grid;
  gap: 12px;
}

.floating-tool-item {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-tool-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.floating-tool-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
  line-height: 1.3;
}

.floating-tool-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  font-size: 0.9rem;
}

.floating-stack {
  left: 36px;
  bottom: 24px;
  display: grid;
  gap: 14px;
  width: 240px;
  background: rgba(18, 20, 26, 0.95);
  color: var(--text);
  border: 1px solid var(--line);
}

.stack-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

.stack-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px 6px 18px 6px;
}

.stack-item span {
  font-weight: 700;
  line-height: 1.35;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 13ch;
}

.section-trust {
  padding-top: 24px;
}

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

.benefit-card {
  padding: 26px;
  border-radius: 28px 10px 28px 10px;
}

.benefit-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(255, 53, 0, 0.18);
  color: var(--accent-soft);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.benefit-card h3,
.value-card h3,
.showcase-card h3 {
  margin-bottom: 12px;
  line-height: 1.08;
}

.spotlight-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: stretch;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-option {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  width: 100%;
  padding: 20px;
  border-radius: 24px 12px 24px 12px;
  border: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.feature-option:hover,
.feature-option.is-active {
  transform: translateY(-3px);
  border-color: rgba(255, 53, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 53, 0, 0.16), rgba(19, 22, 28, 0.9));
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 53, 0, 0.18);
}

.feature-option > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.feature-option.is-active > span {
  background: rgba(255, 53, 0, 0.2);
  color: var(--accent-soft);
}

.feature-option strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.feature-option p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.spotlight-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 20px;
  padding: 22px;
  border-radius: 34px 14px 34px 14px;
}

.spotlight-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.spotlight-copy p {
  margin: 0;
}

.spotlight-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spotlight-points li,
.comparison-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.65;
  color: var(--text-soft);
}

.spotlight-points li::before,
.comparison-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 53, 0, 0.14);
}

.spotlight-note {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 53, 0, 0.1);
  border: 1px solid rgba(255, 53, 0, 0.14);
}

.spotlight-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.spotlight-media {
  position: relative;
  min-height: 100%;
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 26px 10px 26px 10px;
}

.media-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 12, 16, 0.9);
  color: white;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.value-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.value-panel {
  padding: 28px;
  border-radius: 30px 10px 30px 10px;
}

.value-panel-accent {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 53, 0, 0.16), rgba(20, 23, 30, 0.92));
  border-color: rgba(255, 53, 0, 0.3);
}

.value-panel-accent::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 53, 0, 0.18), transparent 70%);
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(10, 12, 16, 0.92);
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
}

.comparison-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-list-muted li::before {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

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

.value-card {
  padding: 26px;
  border-radius: 26px 10px 26px 10px;
}

.pricing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  margin-bottom: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 26, 0.82);
}

.pricing-toggle-option {
  min-width: 190px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.pricing-toggle-option:hover,
.pricing-toggle-option.is-active {
  background: linear-gradient(135deg, var(--accent) 0%, #ff7b57 100%);
  color: #150a07;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 53, 0, 0.22);
}

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

.pricing-panel.is-active {
  display: grid;
}

.pricing-panel-single {
  grid-template-columns: minmax(0, 1fr);
}

.price-card {
  position: relative;
  padding: 26px;
  border-radius: 30px 12px 30px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 26, 0.84);
  box-shadow: var(--shadow-md);
}

.price-card-featured {
  border-color: rgba(255, 53, 0, 0.38);
  background: linear-gradient(135deg, rgba(255, 53, 0, 0.18), rgba(18, 20, 26, 0.88));
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 53, 0, 0.12);
}

.price-card-credits {
  background: linear-gradient(135deg, rgba(255, 53, 0, 0.12), rgba(18, 20, 26, 0.9));
}

.credits-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
}

.credits-layout .credits-builder {
  order: 2;
}

.credits-layout .credits-details {
  order: 1;
}

.price-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 12, 16, 0.88);
  color: var(--accent-soft);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.price-label {
  margin: 0 0 10px;
  color: var(--text-soft);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.price-card h3 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
}

.price-card h3 span {
  color: inherit;
  font-size: inherit;
  letter-spacing: 0;
}

.price-card h3 .price-suffix {
  color: var(--text-soft);
  font-size: 1rem;
}

.price-copy {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 1.7;
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  line-height: 1.6;
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 53, 0, 0.14);
}

.credits-builder {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 24px 10px 24px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.credits-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.credits-metric {
  display: grid;
  gap: 4px;
}

.credits-metric strong {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.credits-metric span {
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.credits-stepper {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff7b57 100%);
  color: #150a07;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(255, 53, 0, 0.24);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.credits-stepper:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 53, 0, 0.3);
}

.credits-stepper:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.credits-stepper:disabled:hover {
  box-shadow: 0 14px 28px rgba(255, 53, 0, 0.24);
}

.credits-stepper-muted {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.credits-stepper-muted:hover {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.credits-stepper-muted:disabled:hover {
  box-shadow: none;
}

.credits-details .price-copy {
  margin-bottom: 18px;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-chip {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(18, 20, 26, 0.78);
  color: #ddd5cb;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--accent) 0%, #ff7b57 100%);
  border-color: rgba(255, 53, 0, 0.5);
  color: #150a07;
}

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

.catalog-item {
  overflow: hidden;
  border-radius: 28px 12px 28px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 26, 0.82);
  color: #ddd5cb;
  line-height: 1.4;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.catalog-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 53, 0, 0.12);
  border-color: rgba(255, 53, 0, 0.24);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.catalog-item img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: #101218;
}

.comparison-slider {
  --position: 50%;
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #101218;
}

.comparison-slider:focus-within {
  outline: 3px solid rgba(255, 53, 0, 0.42);
  outline-offset: -3px;
}

.comparison-slider .comparison-before,
.comparison-after,
.comparison-after img {
  position: absolute;
  inset: 0;
}

.comparison-slider .comparison-before,
.comparison-after img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #101218;
  pointer-events: none;
  user-select: none;
}

.comparison-slider .comparison-before {
  z-index: 1;
}

.comparison-after {
  z-index: 2;
  -webkit-clip-path: inset(0 0 0 var(--position));
  clip-path: inset(0 0 0 var(--position));
}

.comparison-label {
  position: absolute;
  top: 12px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.74);
  color: #fff4ef;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.comparison-label-before {
  left: 12px;
}

.comparison-label-after {
  right: 12px;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 3px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.42);
  pointer-events: none;
  transform: translateX(-50%);
}

.comparison-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(90deg, transparent 42%, rgba(20, 11, 8, 0.78) 42% 58%, transparent 58%),
    rgba(255, 244, 239, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}

.comparison-slider input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.variation-showcase,
.reference-flow {
  height: 210px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 53, 0, 0.08), transparent 36%),
    #101218;
}

.variation-showcase {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, minmax(0, 0.82fr));
  gap: 6px;
  padding: 8px;
}

.variation-frame,
.reference-frame {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.variation-frame {
  border-radius: 18px 7px 18px 7px;
}

.variation-frame-original {
  border-color: rgba(255, 53, 0, 0.28);
  background: rgba(255, 53, 0, 0.08);
}

.variation-showcase img,
.reference-flow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.variation-frame figcaption,
.reference-frame figcaption {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.78);
  color: #fff4ef;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.reference-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 22px minmax(0, 1.35fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 6px;
  padding: 8px;
}

.reference-frame {
  border-radius: 18px 7px 18px 7px;
}

.reference-frame:first-child {
  grid-column: 1;
  grid-row: 1;
}

.reference-frame-source {
  grid-column: 1;
  grid-row: 2;
  border-color: rgba(255, 255, 255, 0.16);
}

.reference-frame-result {
  grid-column: 3;
  grid-row: 1 / span 2;
  border-color: rgba(255, 53, 0, 0.3);
  background: rgba(255, 53, 0, 0.08);
}

.reference-operator {
  align-self: center;
  justify-self: center;
  color: var(--accent-soft);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.reference-operator-plus {
  grid-column: 2;
  grid-row: 1;
}

.reference-operator-equals {
  grid-column: 2;
  grid-row: 2;
}

.catalog-item-copy {
  padding: 18px;
}

.catalog-item-copy strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.catalog-item-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.94rem;
}

.catalog-item.is-hidden {
  display: none;
}

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

.showcase-card {
  overflow: hidden;
  border-radius: 30px 12px 30px 12px;
}

.showcase-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.showcase-card div {
  padding: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: 24px 10px 24px 10px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.05rem;
}

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

.faq-list details p {
  margin: 14px 0 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 34px;
  border-radius: 36px 14px 36px 14px;
  background: linear-gradient(135deg, rgba(255, 53, 0, 0.92), rgba(255, 120, 84, 0.86));
  border-color: rgba(255, 53, 0, 0.6);
  color: #1a0c08;
}

.cta-panel h2 {
  max-width: 12ch;
  margin: 10px 0 14px;
}

.cta-panel p {
  color: rgba(26, 12, 8, 0.82);
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cta-panel .button-dark {
  background: rgba(14, 10, 9, 0.92);
  color: #fff2ed;
}

.cta-panel .button-ghost {
  border-color: rgba(26, 12, 8, 0.28);
  color: #1a0c08;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    border-radius: 30px;
    padding: 18px;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .spotlight-layout,
  .catalog-grid,
  .pricing-panel,
  .value-layout,
  .showcase-grid,
  .benefit-grid,
  .value-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .hero-stage {
    min-height: 760px;
  }

  .hero-card-main {
    left: 0;
    right: 0;
    width: 100%;
  }

  .floating-pricing {
    left: 0;
  }

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

  .section-heading h2,
  .cta-panel h2,
  h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .page-shell {
    padding-bottom: 32px;
  }

  .site-header {
    position: static;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 26px;
    text-align: center;
  }

  .header-cta {
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .pricing-toggle {
    width: 100%;
  }

  .pricing-toggle-option {
    min-width: 0;
  }

  .credits-layout {
    grid-template-columns: 1fr;
  }

  .button,
  .button-primary,
  .button-secondary,
  .button-dark,
  .button-ghost {
    width: 100%;
  }

  .hero-stage {
    min-height: 670px;
  }

  .hero-tool-showcase,
  .hero-tool-grid {
    grid-template-columns: 1fr;
  }

  .hero-tool-image {
    height: 180px;
  }

  .catalog-item img {
    height: 200px;
  }

  .comparison-slider {
    height: 200px;
  }

  .variation-showcase,
  .reference-flow {
    height: 200px;
  }

  .variation-showcase {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reference-flow {
    grid-template-columns: minmax(0, 0.92fr) 18px minmax(0, 1.2fr);
    gap: 5px;
  }

  .variation-frame figcaption,
  .reference-frame figcaption {
    left: 6px;
    top: 6px;
    padding: 5px 7px;
    font-size: 0.58rem;
  }

  .price-card {
    padding: 22px;
  }

  .hero-card-main {
    padding: 14px;
    border-radius: 28px 12px 28px 12px;
  }

  .hero-card-main img {
    height: 420px;
  }

  .floating-pricing {
    top: auto;
    bottom: 150px;
    width: min(100%, 280px);
  }

  .floating-stack {
    left: auto;
    right: 0;
    bottom: 0;
    width: min(100%, 220px);
  }

  .spotlight-panel {
    grid-template-columns: 1fr;
  }

  .spotlight-media img {
    min-height: 360px;
  }

  .site-footer {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .feature-option,
  .filter-chip,
  .catalog-item {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
  }
}
