@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  color-scheme: dark;
  --bg-base: #08090C;
  --bg-surface: #0E1017;
  --bg-elevated: #151822;
  --bg-card: rgba(21, 24, 34, 0.72);
  --bg-glass: rgba(8, 9, 12, 0.82);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-highlight: rgba(255, 255, 255, 0.24);
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --accent-gold: #F5C342;
  --accent-halation: #FF5238;
  --accent-halation-glow: rgba(255, 82, 56, 0.28);
  --accent-seam: #2EE6A8;
  --accent-seam-glow: rgba(46, 230, 168, 0.22);
  --accent-blue: #38BDF8;
  --accent-purple: #A855F7;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-mono: "JetBrains Mono", "SF Mono", monospace;
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px -10px rgba(245, 195, 66, 0.15);
  --shadow-halation: 0 0 50px -10px rgba(255, 82, 56, 0.25);
}

/* Language Switcher Display Logic */
html[data-lang="en"] .t-tr { display: none !important; }
html[data-lang="tr"] .t-en { display: none !important; }

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-base);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(120, 119, 198, 0.12), transparent 70%),
    radial-gradient(circle 600px at 85% 20%, rgba(245, 158, 11, 0.04), transparent 80%),
    radial-gradient(circle 500px at 15% 45%, rgba(56, 189, 248, 0.03), transparent 75%),
    var(--bg-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover {
  color: var(--accent-gold);
}

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

/* --- Container Shell --- */
.shell {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 100px;
}

/* --- Navigation Header --- */
.site-nav {
  position: sticky;
  top: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  margin: 16px auto 48px;
  border-radius: 999px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.36);
  max-width: 1020px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

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

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--text-primary);
  color: #09090b !important;
  font-weight: 600;
  font-size: 13px;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.nav-cta:hover {
  background: #f4f4f5;
  transform: translateY(-1px);
}

/* --- Hero Section --- */
.hero {
  text-align: center;
  padding: 48px 0 64px;
  max-width: 860px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(24, 24, 29, 0.85);
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: border-color 0.2s ease;
}

.badge:hover {
  border-color: var(--border-highlight);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.hero h1 {
  font-size: clamp(38px, 6.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 0 0 22px;
  background: linear-gradient(180deg, #ffffff 40%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .lede {
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--text-primary);
  color: #09090b !important;
  font-size: 15px;
  font-weight: 650;
  box-shadow: 0 4px 20px rgba(250, 250, 250, 0.15);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(250, 250, 250, 0.25);
  background: #ffffff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--bg-elevated);
  border-color: var(--border-highlight);
  transform: translateY(-1px);
}

/* --- Interactive Before/After Split Slider --- */
.showcase-slider-wrap {
  margin: 24px auto 96px;
  max-width: 920px;
}

.slider-caption-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 8px;
}

.slider-label-left, .slider-label-right {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.slider-label-right {
  color: var(--accent-gold);
}

.comparison-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  user-select: none;
  -webkit-user-select: none;
  background: #000;
  container-type: inline-size;
}

.comparison-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.comparison-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  will-change: width;
}

.comparison-overlay .comparison-img {
  width: 100cqw;
  min-width: 100cqw;
  height: 100%;
  max-width: none;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid #18181b;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.comparison-handle svg {
  width: 20px;
  height: 20px;
  fill: #18181b;
}

.comparison-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  z-index: 20;
}

/* --- Bento Grid Section --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  font-weight: 750;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-bottom: 96px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.25s ease, transform 0.25s ease;
  overflow: hidden;
  position: relative;
}

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

.bento-col-8 { grid-column: span 8; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-12 { grid-column: span 12; }

@media (max-width: 900px) {
  .bento-col-8, .bento-col-4, .bento-col-6 {
    grid-column: span 12;
  }
}

.bento-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--text-primary);
}

.bento-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.bento-media {
  margin-top: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #0b0b0e;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bento-col-8 .bento-media {
  height: 290px;
}

.bento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.bento-card:hover .bento-media img {
  transform: scale(1.02);
}

/* Polaroid Card in Bento: Real physical photo aesthetic with soft shadow */
.bento-polaroid-wrap {
  background: radial-gradient(circle at 50% 50%, #15151b, #0b0b0e);
  padding: 16px;
}

.bento-polaroid-wrap img {
  height: 100%;
  max-height: 218px;
  width: auto;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

/* 35mm Film Negative in Bento: Full contact sheet negative floating with soft shadow */
.bento-film-wrap {
  background: radial-gradient(circle at 50% 50%, #15151b, #09090b);
  padding: 12px 16px;
}

.bento-film-wrap img {
  width: 100%;
  height: auto;
  max-height: 226px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.65);
}

/* 35mm CineStill Showcase in Bento: Unclipped floating 4:5 template */
.bento-cinestill-wrap {
  background: radial-gradient(circle at 50% 50%, #1b1622, #09080e);
  padding: 18px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-cinestill-wrap img {
  height: 100%;
  max-height: 284px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

/* Seamless Panorama in Bento: Full 16:9 unclipped panorama with seam line and labels */
.bento-panorama-wrap {
  background: radial-gradient(circle at 50% 50%, #121622, #080a10);
  padding: 14px 18px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-panorama-wrap img {
  width: 100%;
  height: auto;
  max-height: 212px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
}

/* Studio Tones Recipe Card in Bento: Full unclipped 4:5 card with swatches and metadata */
.bento-recipe-wrap {
  background: radial-gradient(circle at 50% 50%, #161826, #080910);
  padding: 14px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-recipe-wrap img {
  height: 100%;
  max-height: 212px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

/* --- Interactive Effect Tabs --- */
.tabs-section {
  padding: 48px 0 96px;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.tab-btn.active {
  background: var(--text-primary);
  color: #09090b;
  border-color: var(--text-primary);
}

.tab-content-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.tab-content-panel.active {
  display: grid;
  animation: fadeIn 0.3s ease-out;
}

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

@media (max-width: 800px) {
  .tab-content-panel {
    grid-template-columns: 1fr;
  }
}

.tab-detail h4 {
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.tab-detail p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.tab-preview-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-subtle);
  background: #0b0b0e;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tab-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tab-preview-polaroid {
  background: radial-gradient(circle at 50% 50%, #15151b, #0b0b0e);
  padding: 24px;
}

.tab-preview-polaroid img {
  height: 100%;
  max-height: 332px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7);
}

.tab-preview-film {
  background: radial-gradient(circle at 50% 50%, #15151b, #09090b);
  padding: 20px 24px;
}

.tab-preview-film img {
  width: 100%;
  height: auto;
  max-height: 336px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7);
}

/* --- Call to Action Banner --- */
.cta-banner {
  text-align: center;
  padding: 64px 32px;
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.12), transparent 70%), var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  margin-bottom: 72px;
}

.cta-banner h2 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 16px;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 32px;
}

/* --- Footer --- */
footer {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
}

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

/* --- Legal & Support Subpage Styles (support, terms, privacy, data-deletion) --- */
.legal-page, main.shell {
  max-width: 800px;
  margin: 40px auto;
}

.legal-page h1, main.shell h1 {
  font-size: 36px;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.legal-page h2, main.shell h2 {
  font-size: 20px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 8px;
}

.legal-page p, .legal-page li, main.shell p, main.shell li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-page ul, main.shell ul {
  padding-left: 20px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  text-decoration: none;
  transition: all 0.15s ease;
  margin-top: 8px;
}

.button:hover {
  background: var(--bg-hover);
  border-color: var(--border-focus);
}

main.shell footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
}

main.shell footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

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

/* ==========================================================================
   Modern Editorial Showcase & Feature Component Extensions
   ========================================================================== */

/* --- Language Toggle Switch --- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-btn.active, .lang-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* --- Hero Badge Live Telemetry --- */
.badge-live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-halation);
  box-shadow: 0 0 12px var(--accent-halation);
  display: inline-block;
  animation: pulse-halation 2s infinite ease-in-out;
}

@keyframes pulse-halation {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 16px var(--accent-halation); }
}

/* --- Interactive Feature Showcase Rows --- */
.feature-showcase-row {
  margin: 64px auto 96px;
  max-width: 1020px;
}

.feature-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px -12px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 48px;
  position: relative;
}

@media (max-width: 900px) {
  .feature-showcase-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 28px;
  }
}

.feature-showcase-card.reverse {
  direction: rtl;
}

.feature-showcase-card.reverse > * {
  direction: ltr;
}

.feature-showcase-content h3 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  line-height: 1.2;
}

.feature-showcase-content p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 24px;
}

.feature-showcase-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  background: #0C0D11;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-showcase-media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

/* --- Seamless Carousel Seam Overlay --- */
.carousel-seam-demo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #08090C;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-seam-demo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.carousel-seam-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--accent-seam) 0, var(--accent-seam) 8px, transparent 8px, transparent 14px);
  box-shadow: 0 0 12px var(--accent-seam-glow);
  z-index: 10;
  pointer-events: none;
}

.carousel-slice-badge {
  position: absolute;
  top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(46, 230, 168, 0.9);
  color: #08090C;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 12;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.carousel-slice-badge.left { left: 24px; }
.carousel-slice-badge.right { right: 24px; }

/* --- Studio Tones Palette Ribbon Demo --- */
.studio-palette-demo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(14, 16, 23, 0.85);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 20px;
}

.palette-demo-title {
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.palette-strip-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.palette-pill-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  transition: transform 0.15s ease;
}

.palette-pill-item:hover {
  transform: translateY(-2px);
  border-color: var(--border-highlight);
}

.palette-swatch-box {
  width: 100%;
  height: 24px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.palette-pill-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
}

.palette-pill-hex {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

/* --- Recipe Card Mockup Box --- */
.recipe-card-box {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px -16px rgba(0, 0, 0, 0.75), 0 0 40px -10px var(--accent-halation-glow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.recipe-card-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Pricing Comparison Section --- */
.pricing-section {
  margin: 80px auto;
  max-width: 980px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
  text-align: left;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(30, 27, 40, 0.85) 0%, rgba(18, 20, 29, 0.85) 100%);
  border: 1.5px solid rgba(245, 195, 66, 0.4);
  box-shadow: 0 24px 64px -12px rgba(245, 195, 66, 0.15), 0 16px 40px rgba(0, 0, 0, 0.6);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  right: 28px;
  background: linear-gradient(135deg, #F5C342, #E6A15C);
  color: #1A1500;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(245, 195, 66, 0.4);
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 6px;
}

.pricing-header p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 0 20px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
}

.price-val {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.price-unit {
  font-size: 15px;
  color: var(--text-muted);
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-check {
  color: var(--accent-seam);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}

.pricing-guarantee-box {
  margin-top: 36px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  background: rgba(46, 230, 168, 0.08);
  border: 1px solid rgba(46, 230, 168, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-seam);
}

/* --- Competitive Benchmark Table --- */
.benchmark-section {
  margin: 96px auto;
  max-width: 1020px;
}

.benchmark-table-box {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  overflow-x: auto;
  box-shadow: 0 24px 64px -12px rgba(0, 0, 0, 0.6);
  -webkit-overflow-scrolling: touch;
}

.benchmark-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.benchmark-table th, .benchmark-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.benchmark-table th {
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.benchmark-table th.highlight-th {
  color: var(--accent-gold);
  background: rgba(245, 195, 66, 0.06);
}

.benchmark-table td.highlight-td {
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(245, 195, 66, 0.03);
}

.check-yes {
  color: var(--accent-seam);
  font-weight: 800;
}

.check-no {
  color: var(--text-muted);
}


