:root {
  --color-ink: #0f1a36;
  --color-ink-soft: #2a3454;
  --color-text: #1f2a44;
  --color-text-soft: #5a6480;
  --color-text-muted: #8a93ad;
  --color-cream: #fdf8f3;
  --color-cream-soft: #f7efe6;
  --color-paper: #ffffff;
  --color-sunrise-1: #ff7a3d;
  --color-sunrise-2: #ffa978;
  --color-sunrise-3: #ffd0a8;
  --color-sunrise-4: #f9a3c7;
  --color-sunrise-5: #a78bfa;
  --color-sunrise-6: #6b6cf2;
  --color-sky-1: #f0e6ff;
  --color-sky-2: #fff0e6;
  --color-line: #ece5dc;
  --color-line-soft: #f3ece4;
  --color-success: #16a34a;
  --color-warn: #d97706;
  --gradient-sunrise: linear-gradient(135deg, #ff7a3d 0%, #ff9b6a 30%, #f9a3c7 60%, #a78bfa 100%);
  --gradient-dawn: linear-gradient(180deg, #ffd0a8 0%, #ffe9d6 50%, #f0e6ff 100%);
  --gradient-cta: linear-gradient(135deg, #ff7a3d 0%, #ff5577 100%);
  --gradient-card: linear-gradient(135deg, #fff5ec 0%, #f0e6ff 100%);
  --shadow-sm: 0 2px 6px rgba(15, 26, 54, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 26, 54, 0.08);
  --shadow-lg: 0 25px 60px rgba(15, 26, 54, 0.12);
  --shadow-glow: 0 20px 50px rgba(255, 122, 61, 0.25);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --max-width: 1240px;
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-base: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Global reset - wrapped in body class for specificity */
.site-wrapper,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

.site-wrapper,
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Element styles converted to classes */
.img-responsive,
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.link-base,
.link-hover,
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

.link-base:hover,
a:hover {
  color: var(--color-sunrise-1);
}

.btn-reset,
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-sunrise-1);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-soft);
  max-width: 680px;
  line-height: 1.6;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head .section-subtitle {
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 122, 61, 0.08);
  border: 1px solid rgba(255, 122, 61, 0.15);
  border-radius: 999px;
  color: var(--color-sunrise-1);
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--color-sunrise-1);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 122, 61, 0.18);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 122, 61, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(255, 122, 61, 0.04); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 60px rgba(255, 122, 61, 0.4);
  color: #fff;
}

.btn-secondary {
  background: var(--color-paper);
  color: var(--color-ink);
  border: 1.5px solid var(--color-line);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  padding: 14px 24px;
}

.btn-ghost:hover {
  color: var(--color-sunrise-1);
}

.btn-arrow {
  display: inline-block;
  transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-cream);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-sun {
  width: 80px;
  height: 80px;
  position: relative;
}

.preloader-sun::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gradient-sunrise);
  animation: pulse-sun 2s ease-in-out infinite;
}

.preloader-sun::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-cta);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 40px rgba(255, 122, 61, 0.6);
}

@keyframes pulse-sun {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.4); opacity: 0.1; }
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-ink);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: all var(--transition-base);
  border-bottom: 1px solid var(--color-line);
}

.site-header.is-scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

.brand-logo {
  text-decoration: none;
}

.logo-image {
  height: 45px;
  width: auto;
  flex-shrink: 0;
}

.logo-image-light {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.logo-image-footer {
  /* Footer logo uses separate SVG with white text, no filter needed */
  opacity: 0.9;
}

.brand-logo-footer .logo-image {
  height: 45px;
}

/* Footer logo specific styling */
.footer-brand .brand-logo-footer .logo-image {
  height: 45px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-brand .brand-logo-footer:hover .logo-image {
  opacity: 1;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text small {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-soft);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cta);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-ink);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.header-cta {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--color-ink);
  color: #fff;
  transition: all var(--transition-base);
}

.header-cta:hover {
  background: var(--color-sunrise-1);
  color: #fff;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--color-paper);
  box-shadow: var(--shadow-sm);
}

.menu-toggle span {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gradient-dawn);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 122, 61, 0.18), transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(167, 139, 250, 0.18), transparent 50%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: var(--color-paper);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-soft);
}

.hero-badge-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-ink);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 19px;
  line-height: 1.6;
  color: var(--color-text-soft);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-line);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}

.hero-meta-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1;
}

.hero-meta-value sup {
  font-size: 16px;
  color: var(--color-sunrise-1);
  margin-left: 4px;
}

.hero-meta-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
}

.hero-product {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff8ee 0%, #ffe2cc 40%, #f9d3c4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 50px 100px -20px rgba(255, 122, 61, 0.4);
  overflow: hidden;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 122, 61, 0.4), transparent 50%);
  animation: rotate-glow 20s linear infinite;
}

@keyframes rotate-glow {
  to { transform: rotate(360deg); }
}

.hero-product img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(15, 26, 54, 0.25));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-float-card {
  position: absolute;
  background: var(--color-paper);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero-float-card-1 {
  top: 8%;
  left: -8%;
  animation: float 7s ease-in-out infinite;
}

.hero-float-card-2 {
  bottom: 12%;
  right: -6%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-float-card-3 {
  top: 50%;
  right: -12%;
  animation: float 9s ease-in-out infinite;
}

.hero-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sunrise-1);
  flex-shrink: 0;
}

.hero-float-content {
  display: flex;
  flex-direction: column;
}

.hero-float-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.hero-float-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  margin-top: 2px;
}

.hero-stars {
  color: #ffb43d;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Logo strip */
.logo-strip {
  padding: 60px 0;
  background: var(--color-cream);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.logo-strip-text {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 30px;
}

.logo-strip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  opacity: 0.7;
}

.logo-strip-item {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-soft);
  letter-spacing: -0.01em;
}

.logo-strip-item span {
  font-style: italic;
  color: var(--color-text-muted);
}

/* Story section */
.story {
  background: var(--color-cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 26, 54, 0.3));
}

.story-quote {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: var(--color-paper);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.story-quote-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-ink);
  margin-bottom: 12px;
}

.story-quote-author {
  font-size: 12px;
  color: var(--color-text-soft);
  font-weight: 600;
}

.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.story-feature {
  padding: 24px;
  background: var(--color-paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
}

.story-feature-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.story-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 4px;
}

.story-feature-text {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.5;
}

/* Features / Benefits */
.features {
  background: var(--color-paper);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 61, 0.08), transparent 70%);
  pointer-events: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 36px 32px;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-sunrise);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--gradient-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-sunrise-1);
  transition: transform var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-text {
  font-size: 15px;
  color: var(--color-text-soft);
  line-height: 1.6;
}

/* Product showcase */
.showcase {
  background: var(--gradient-dawn);
  position: relative;
  overflow: hidden;
}

.showcase::before {
  content: "";
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15), transparent 70%);
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.showcase-image {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-image-decor {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-sunrise);
  z-index: -1;
  filter: blur(30px);
  opacity: 0.6;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--color-text);
}

.showcase-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.showcase-check svg {
  width: 14px;
  height: 14px;
}

/* How to use */
.howto {
  background: var(--color-cream);
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.howto-grid::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-sunrise-1) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.howto-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.howto-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-paper);
  border: 2px solid var(--color-sunrise-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--color-sunrise-1);
  margin: 0 auto 24px;
  position: relative;
  box-shadow: 0 0 0 8px var(--color-cream);
}

.howto-num::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: var(--gradient-card);
  z-index: -1;
  opacity: 0.5;
}

.howto-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.howto-step-text {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.6;
}

/* News / Press */
.news {
  background: var(--color-paper);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}

.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-cream);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.news-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-sunrise-1);
  margin-bottom: 12px;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.3;
  margin-bottom: 12px;
}

.news-card.featured .news-card-title {
  font-size: 28px;
}

.news-card-text {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
}

.news-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-ink);
}

/* Reviews */
.reviews {
  background: var(--gradient-dawn);
}

.reviews-summary {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
  background: var(--color-paper);
  border-radius: var(--radius-xl);
  padding: 60px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
}

.reviews-rating {
  text-align: center;
}

.reviews-rating-score {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 500;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.reviews-rating-stars {
  color: #ffb43d;
  font-size: 22px;
  margin: 12px 0 8px;
  letter-spacing: 4px;
}

.reviews-rating-meta {
  font-size: 14px;
  color: var(--color-text-soft);
}

.reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reviews-bar {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: 16px;
}

.reviews-bar-label {
  font-size: 13px;
  color: var(--color-text-soft);
  font-weight: 600;
}

.reviews-bar-track {
  height: 8px;
  background: var(--color-line-soft);
  border-radius: 4px;
  overflow: hidden;
}

.reviews-bar-fill {
  height: 100%;
  background: var(--gradient-cta);
  border-radius: 4px;
}

.reviews-bar-value {
  font-size: 13px;
  color: var(--color-ink);
  font-weight: 600;
  text-align: right;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line);
  transition: all var(--transition-base);
}

.review-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-sunrise);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.review-author {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.review-author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.2;
}

.review-author-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.review-stars {
  color: #ffb43d;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  font-style: italic;
}

.review-text::before {
  content: """;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-sunrise-1);
  line-height: 0;
  margin-right: 4px;
  vertical-align: -12px;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-success);
  font-weight: 600;
}

/* Specs */
.specs {
  background: var(--color-cream);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.spec-card {
  background: var(--color-paper);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: left;
  border: 1px solid var(--color-line);
  transition: all var(--transition-base);
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.spec-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sunrise-1);
  margin-bottom: 18px;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.1;
  margin-bottom: 6px;
}

.spec-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* CTA banner */
.cta-banner {
  background: var(--color-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 122, 61, 0.3), transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(167, 139, 250, 0.3), transparent 50%);
}

.cta-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-banner-title em {
  font-style: italic;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 480px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-banner-product {
  position: relative;
  aspect-ratio: 1;
  max-width: 320px;
  margin-left: auto;
}

.cta-banner-product-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gradient-sunrise);
  filter: blur(60px);
  opacity: 0.5;
}

.cta-banner-product img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}

/* FAQ */
.faq {
  background: var(--color-paper);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
  padding: 8px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--color-line);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-ink);
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
  color: var(--color-sunrise-1);
}

.faq-item.is-open .faq-icon {
  background: var(--gradient-cta);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--color-text-soft);
  line-height: 1.7;
  max-width: 720px;
}

/* Footer */
.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 61, 0.4), rgba(167, 139, 250, 0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 20px;
}

.footer-brand-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-base);
}

.footer-social:hover {
  background: var(--gradient-cta);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-links li {
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: #fff;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 800px;
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 540px;
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  display: none;
  border: 1px solid var(--color-line);
}

.cookie-banner.is-visible {
  display: block;
  animation: slide-up 0.5s ease;
}

@keyframes slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sunrise-1);
  margin-bottom: 14px;
}

.cookie-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}

.cookie-text a {
  color: var(--color-sunrise-1);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  transition: all var(--transition-base);
}

.cookie-btn-accept {
  background: var(--color-ink);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--color-sunrise-1);
}

.cookie-btn-decline {
  background: var(--color-cream);
  color: var(--color-ink);
  border: 1px solid var(--color-line);
}

.cookie-btn-decline:hover {
  background: var(--color-line-soft);
}

/* Advertorial / editorial article */
.back-to-journal {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-soft);
  margin-bottom: 24px;
  text-transform: uppercase;
  transition: color var(--transition-base);
}

.back-to-journal:hover {
  color: var(--color-sunrise-1);
}

.advertorial-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(15, 26, 54, 0.08);
  color: var(--color-text-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 18px;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-cta);
  z-index: 250;
  width: 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(255, 122, 61, 0.5);
}

.article-hero {
  padding: 130px 0 50px;
  background: var(--gradient-dawn);
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(255, 122, 61, 0.12), transparent 60%);
  pointer-events: none;
}

.article-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 24px;
}

.article-category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sunrise-1);
  margin-bottom: 16px;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-ink);
  margin-bottom: 20px;
}

.article-title em {
  font-style: italic;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.article-deck {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--color-text-soft);
  font-style: italic;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.byline-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: var(--color-text-soft);
  padding: 20px 0;
  border-top: 1px solid rgba(15, 26, 54, 0.08);
  border-bottom: 1px solid rgba(15, 26, 54, 0.08);
  max-width: 720px;
  margin: 0 auto;
}

.byline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.byline-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--gradient-sunrise);
}

.byline-name {
  font-weight: 600;
  color: var(--color-ink);
  font-size: 14px;
  line-height: 1.2;
}

.byline-role {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.byline-divider {
  width: 4px;
  height: 4px;
  background: var(--color-text-muted);
  border-radius: 50%;
  opacity: 0.5;
}

.byline-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-hero-image {
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 0 24px;
}

.article-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-caption {
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
  text-align: center;
  margin-top: 14px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Article body */
.article-body {
  background: var(--color-paper);
  padding: 80px 0 60px;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px) 300px;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 100px;
  align-self: start;
}

.toc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: toc;
}

.toc-list li {
  counter-increment: toc;
}

.toc-link {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.4;
  transition: color var(--transition-base);
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -12px;
}

.toc-link::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  font-feature-settings: "tnum";
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 1px;
}

.toc-link:hover {
  color: var(--color-sunrise-1);
  border-left-color: var(--color-sunrise-1);
}

.article-main {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-ink);
}

.article-main p {
  margin-bottom: 28px;
  font-weight: 400;
}

.article-main p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 500;
  line-height: 0.85;
  float: left;
  padding: 6px 12px 0 0;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.article-main h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 56px 0 24px;
  scroll-margin-top: 100px;
}

.article-main h2 em {
  font-style: italic;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.article-main h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-ink);
  margin: 40px 0 16px;
}

.article-main strong {
  color: var(--color-ink);
  font-weight: 600;
}

.article-main a {
  color: var(--color-sunrise-1);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(255, 122, 61, 0.4);
}

.article-main a:hover {
  text-decoration-color: var(--color-sunrise-1);
}

.article-main ul,
.article-main ol {
  margin: 0 0 28px;
  padding-left: 24px;
}

.article-main li {
  margin-bottom: 8px;
}

.article-main blockquote {
  margin: 40px 0;
  padding: 30px 36px;
  border-left: 4px solid var(--color-sunrise-1);
  background: var(--color-cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.4;
  font-style: italic;
  color: var(--color-ink);
  font-weight: 500;
}

.article-main blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--color-text-soft);
  margin-top: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-figure {
  margin: 40px 0;
}

.article-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.article-figure figcaption {
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-body);
}

.inline-product {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  margin: 32px 0;
  font-family: var(--font-body);
}

.inline-product-img {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  background: var(--gradient-dawn);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
}

.inline-product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.inline-product-info {
  flex: 1;
}

.inline-product-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 2px;
}

.inline-product-meta {
  font-size: 13px;
  color: var(--color-text-soft);
  margin-bottom: 8px;
}

.inline-product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-sunrise-1);
}

.inline-product-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
  background: var(--color-paper);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.inline-product-cta:hover {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}

/* Article sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-share {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
}

.sidebar-share-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-right: 4px;
}

.sidebar-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-paper);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  transition: all var(--transition-base);
}

.sidebar-share-btn:hover {
  background: var(--gradient-cta);
  color: #fff;
  transform: translateY(-2px);
  border-color: transparent;
}

.sidebar-cta {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.sidebar-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
}

.sidebar-cta-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sunrise-1);
  margin-bottom: 8px;
}

.sidebar-cta-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gradient-dawn);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin-bottom: 16px;
}

.sidebar-cta-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(15, 26, 54, 0.15));
}

.sidebar-cta-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.sidebar-cta-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--color-text-soft);
}

.sidebar-cta-stars {
  color: #ffb43d;
  font-size: 13px;
}

.sidebar-cta-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 4px;
  line-height: 1;
}

.sidebar-cta-price-old {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

.sidebar-cta-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.sidebar-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 18px;
  background: var(--gradient-cta);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  transition: all var(--transition-base);
  box-shadow: 0 8px 20px rgba(255, 122, 61, 0.25);
}

.sidebar-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 122, 61, 0.4);
  color: #fff;
}

.sidebar-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--color-line);
  font-size: 11px;
  color: var(--color-text-soft);
}

.sidebar-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sidebar-cta-trust-item svg {
  color: var(--color-sunrise-1);
  flex-shrink: 0;
}

.sidebar-author {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--color-line);
}

.sidebar-author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid var(--color-paper);
  box-shadow: var(--shadow-sm);
}

.sidebar-author-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 2px;
}

.sidebar-author-role {
  font-size: 12px;
  color: var(--color-text-soft);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.sidebar-author-bio {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.5;
  margin: 0;
}

/* Article footer / verdict */
.article-verdict {
  background: var(--gradient-dawn);
  padding: 80px 0;
}

.verdict-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.verdict-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.verdict-stat {
  background: var(--color-paper);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  border: 1px solid var(--color-line);
}

.verdict-stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}

.verdict-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.final-cta {
  background: var(--color-paper);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  margin: 50px auto 0;
  max-width: 720px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-sunrise);
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.final-cta-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-soft);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.final-cta-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 16px;
}

/* Comments section (visual) */
.comments-section {
  background: var(--color-paper);
  padding: 80px 0;
  border-top: 1px solid var(--color-line);
}

.comments-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-line);
}

.comments-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-ink);
}

.comments-count {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-soft);
  font-weight: 500;
}

.comment {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-line);
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-card);
  color: var(--color-sunrise-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.comment-body {
  flex: 1;
}

.comment-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.comment-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
}

.comment-time {
  font-size: 12px;
  color: var(--color-text-muted);
}

.comment-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

.comment-likes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.comments-prompt {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  margin-top: 30px;
  font-family: var(--font-body);
}

.comments-prompt p {
  font-size: 15px;
  color: var(--color-text-soft);
  margin-bottom: 12px;
}

.comments-prompt a {
  color: var(--color-sunrise-1);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Disclosure bar (small) */
.disclosure-strip {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 14px 0;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.disclosure-strip strong {
  color: #fff;
  font-weight: 600;
  margin-right: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Advertisement Disclosure Banner - Fixed at top */
.advertisement-disclosure-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 122, 61, 0.2);
  width: 100%;
  position: relative;
  z-index: 999;
  flex-shrink: 0;
}

.advertisement-disclosure-banner .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.disclosure-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.disclosure-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.disclosure-text {
  color: rgba(255, 255, 255, 0.85);
}

.disclosure-text strong {
  color: #fff;
  font-weight: 600;
}

.disclosure-text a {
  color: var(--color-sunrise-1);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.disclosure-text a:hover {
  color: #ff9b6a;
}

/* Mobile responsive overrides for article */
@media (max-width: 1100px) {
  .article-layout {
    grid-template-columns: minmax(0, 720px);
    gap: 0;
  }
  .article-toc,
  .article-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .article-body {
    padding: 50px 0 40px;
  }
  .article-main {
    font-size: 18px;
  }
  .article-main p:first-of-type::first-letter {
    font-size: 60px;
  }
  .article-main h2 {
    font-size: 26px;
  }
  .article-main blockquote {
    font-size: 19px;
    padding: 22px 24px;
  }
  .byline-row {
    gap: 10px;
  }
  .byline-divider {
    display: none;
  }
  .verdict-summary {
    grid-template-columns: 1fr;
  }
  .final-cta {
    padding: 32px 24px;
  }
  .inline-product {
    flex-direction: column;
    text-align: center;
  }
  .comments-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* Blog / journal homepage */
.journal-hero {
  padding: 130px 0 50px;
  background: var(--gradient-dawn);
  position: relative;
  overflow: hidden;
}

.journal-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(255, 122, 61, 0.12), transparent 60%);
  pointer-events: none;
}

.journal-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.journal-hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sunrise-1);
  margin-bottom: 16px;
}

.journal-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-ink);
  margin-bottom: 20px;
  max-width: 820px;
}

.journal-hero-title em {
  font-style: italic;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.journal-hero-deck {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--color-text-soft);
  font-style: italic;
  max-width: 700px;
  margin-bottom: 0;
}

.featured-section {
  background: var(--color-paper);
  padding: 70px 0 50px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-line);
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--gradient-cta);
}

.featured-card-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--gradient-dawn);
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.featured-card:hover .featured-card-image img {
  transform: scale(1.04);
}

.featured-card-content {
  display: flex;
  flex-direction: column;
}

.featured-card-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sunrise-1);
  margin-bottom: 16px;
}

.featured-card-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 20px;
}

.featured-card-title em {
  font-style: italic;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.featured-card-title a {
  color: inherit;
}

.featured-card-title a:hover {
  color: var(--color-sunrise-1);
}

.featured-card-deck {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.55;
  color: var(--color-text-soft);
  margin-bottom: 24px;
  font-style: italic;
}

.featured-card-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--color-text-soft);
  margin-bottom: 24px;
}

.featured-card-byline-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.featured-card-byline-name {
  font-weight: 600;
  color: var(--color-ink);
}

.featured-card-byline-dot {
  width: 3px;
  height: 3px;
  background: var(--color-text-muted);
  border-radius: 50%;
}

.featured-card-byline-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.featured-card-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--color-ink);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.featured-card-cta:hover {
  background: var(--color-sunrise-1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.posts-section {
  background: var(--color-paper);
  padding: 50px 0 90px;
}

.posts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.posts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-line);
}

.posts-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-ink);
  letter-spacing: -0.015em;
}

.posts-section-title em {
  font-style: italic;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.posts-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.posts-filter-btn {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  background: var(--color-cream);
  color: var(--color-text-soft);
  border: 1px solid var(--color-line);
  transition: all var(--transition-base);
}

.posts-filter-btn:hover,
.posts-filter-btn.is-active {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  color: inherit;
}

.post-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--gradient-dawn);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.05);
}

.post-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: var(--color-paper);
  color: var(--color-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.post-card-tag.paid {
  background: var(--color-ink);
  color: #fff;
}

.post-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  margin-bottom: 10px;
}

.post-card-title em {
  font-style: italic;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.post-card-excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-soft);
  margin-bottom: 18px;
  flex: 1;
}

.post-card-byline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
}

.post-card-byline-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.post-card-byline-name {
  font-weight: 600;
  color: var(--color-ink);
}

.post-card-byline-dot {
  width: 3px;
  height: 3px;
  background: var(--color-text-muted);
  border-radius: 50%;
  margin: 0 2px;
}

.posts-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-section {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--color-line);
}

.sidebar-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
}

.popular-list {
  list-style: none;
  counter-reset: popular;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popular-item {
  display: flex;
  gap: 14px;
  counter-increment: popular;
}

.popular-item-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popular-item-content {
  flex: 1;
}

.popular-item-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-ink);
  margin-bottom: 4px;
}

.popular-item-title a {
  color: inherit;
}

.popular-item-title a:hover {
  color: var(--color-sunrise-1);
}

.popular-item-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.categories-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.categories-list li {
  border-bottom: 1px solid var(--color-line-soft);
}

.categories-list li:last-child {
  border-bottom: none;
}

.categories-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  color: var(--color-text-soft);
  font-weight: 500;
  transition: color var(--transition-base);
}

.categories-list a:hover {
  color: var(--color-sunrise-1);
}

.categories-list-count {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 400;
}

.sidebar-product {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.sidebar-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
}

.sidebar-product-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sunrise-1);
  margin-bottom: 10px;
}

.sidebar-product-image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gradient-dawn);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 14px;
}

.sidebar-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(15, 26, 54, 0.15));
}

.sidebar-product-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.sidebar-product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--color-text-soft);
}

.sidebar-product-stars {
  color: #ffb43d;
}

.sidebar-product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 4px;
  line-height: 1;
}

.sidebar-product-price-old {
  font-size: 12px;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

.sidebar-product-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: var(--gradient-cta);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  margin-top: 14px;
  transition: all var(--transition-base);
  box-shadow: 0 6px 16px rgba(255, 122, 61, 0.25);
}

.sidebar-product-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 122, 61, 0.4);
  color: #fff;
}

.journal-cta {
  background: var(--color-ink);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.journal-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 122, 61, 0.3), transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(167, 139, 250, 0.3), transparent 50%);
}

.journal-cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.journal-cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.journal-cta-title em {
  font-style: italic;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.journal-cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  line-height: 1.6;
}

.journal-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.journal-cta-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

@media (max-width: 968px) {
  .featured-card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }
  .featured-card-title {
    font-size: 28px;
  }
  .posts-layout {
    grid-template-columns: 1fr;
  }
  .posts-sidebar {
    position: static;
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .posts-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 54, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.is-visible {
  display: flex;
  animation: fade-in 0.3s ease;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modal-up 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modal-up {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--color-line);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--color-ink);
}

.modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: all var(--transition-base);
}

.modal-close:hover {
  background: var(--color-line);
  transform: rotate(90deg);
}

.modal-body {
  padding: 32px;
  overflow-y: auto;
  flex: 1;
}

.modal-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-ink);
  margin: 24px 0 10px;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p,
.modal-body li {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}

.modal-body ul {
  padding-left: 20px;
}

/* Page hero (for inner pages) */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--gradient-dawn);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 122, 61, 0.15), transparent 60%);
}

.page-hero-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-ink);
  margin-bottom: 20px;
}

.page-hero-title em {
  font-style: italic;
  background: var(--gradient-sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero-text {
  font-size: 19px;
  color: var(--color-text-soft);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Order page */
.order {
  background: var(--color-cream);
  padding: 100px 0;
}

.order-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.order-gallery {
  position: sticky;
  top: 100px;
}

.order-main-image {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: var(--gradient-dawn);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.order-main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(15, 26, 54, 0.2));
}

.order-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.order-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: var(--color-paper);
  border: 2px solid var(--color-line);
  cursor: pointer;
  overflow: hidden;
  padding: 8px;
  transition: all var(--transition-base);
}

.order-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-thumb.is-active,
.order-thumb:hover {
  border-color: var(--color-sunrise-1);
  transform: translateY(-2px);
}

.order-summary {
  background: var(--color-paper);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.order-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.order-stars {
  color: #ffb43d;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.order-rating-meta {
  font-size: 13px;
  color: var(--color-text-soft);
  margin-bottom: 24px;
}

.order-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.order-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1;
}

.order-price-old {
  font-size: 20px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.order-save {
  background: rgba(255, 122, 61, 0.12);
  color: var(--color-sunrise-1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
}

.order-meta {
  font-size: 13px;
  color: var(--color-text-soft);
  margin-bottom: 32px;
}

.order-section {
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
  margin-top: 24px;
}

.order-section-title {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  font-weight: 600;
  margin-bottom: 14px;
}

.order-colors {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.order-color {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-line);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-base);
}

.order-color.is-active {
  border-color: var(--color-ink);
  transform: scale(1.05);
}

.order-color:hover {
  transform: scale(1.05);
}

.order-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.order-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
}

.order-features li svg {
  color: var(--color-success);
  flex-shrink: 0;
}

.order-cta {
  width: 100%;
  padding: 20px;
  font-size: 16px;
  margin-bottom: 16px;
}

.order-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
}

.order-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-soft);
  font-weight: 500;
}

.order-trust-item svg {
  color: var(--color-sunrise-1);
}

/* Comparison */
.compare {
  background: var(--color-paper);
  padding: 100px 0;
}

.compare-table {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  margin-top: 40px;
}

.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 18px 24px;
  align-items: center;
  border-bottom: 1px solid var(--color-line);
  font-size: 14px;
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row.is-head {
  background: var(--color-ink);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 12px;
  text-transform: uppercase;
}

.compare-row.is-highlight {
  background: linear-gradient(90deg, rgba(255, 122, 61, 0.08), transparent);
  font-weight: 600;
}

.compare-row.is-head .compare-cell:first-child {
  color: #fff;
}

.compare-cell {
  color: var(--color-text-soft);
  text-align: center;
}

.compare-cell:first-child {
  text-align: left;
  color: var(--color-ink);
  font-weight: 500;
}

.compare-row.is-head .compare-cell {
  color: #fff;
}

.compare-cell svg {
  color: var(--color-success);
}

.compare-cell svg.no {
  color: #d1d5db;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-card {
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--color-line);
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sunrise-1);
  margin-bottom: 20px;
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.contact-card-text {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-card-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-ink);
}

/* Legal pages */
.legal-page {
  background: var(--color-cream);
  padding: 160px 0 80px;
  min-height: 100vh;
}

.legal-inner {
  max-width: 860px;
  margin: 0 auto;
  background: var(--color-paper);
  border-radius: var(--radius-xl);
  padding: 60px;
  box-shadow: var(--shadow-md);
}

.legal-inner h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.legal-inner .legal-updated {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-line);
}

.legal-inner h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-ink);
  margin: 36px 0 14px;
}

.legal-inner h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-ink);
  margin: 24px 0 10px;
}

.legal-inner p,
.legal-inner li {
  font-size: 15px;
  color: var(--color-text-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-inner ul,
.legal-inner ol {
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-inner ul li,
.legal-inner ol li {
  margin-bottom: 6px;
}

.legal-inner strong {
  color: var(--color-ink);
}

.legal-inner a {
  color: var(--color-sunrise-1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Mobile nav */
@media (max-width: 968px) {
  .menu-toggle { 
    display: flex;
    position: relative;
    z-index: 1001;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--color-cream);
    padding: 100px 32px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: none;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .main-nav.is-open {
    transform: translateX(0);
  }
  
  .main-nav.is-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
  }
  
  .main-nav .nav-link {
    font-size: 20px;
    padding: 8px 0;
    width: 100%;
  }
  
  .header-cta {
    width: 100%;
    text-align: center;
    margin-top: 16px;
  }
  
  .header-inner {
    justify-content: space-between;
  }
}
  
  .hero-inner,
  .story-grid,
  .showcase-inner,
  .cta-banner-inner,
  .order-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    max-width: 360px;
    margin: 0 auto;
  }
  
  .hero-float-card-1 { left: -2%; }
  .hero-float-card-2 { right: -2%; }
  .hero-float-card-3 { right: 2%; top: 60%; }
  
  .feature-grid,
  .reviews-grid,
  .news-grid,
  .howto-grid,
  .specs-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }
  
  .howto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .howto-grid::before {
    display: none;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .compare-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    font-size: 12px;
    padding: 14px 16px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .legal-inner {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 130px 0 60px;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-text {
    font-size: 16px;
  }
  
  .feature-grid,
  .reviews-grid,
  .specs-grid,
  .footer-grid,
  .story-features,
  .hero-meta {
    grid-template-columns: 1fr;
  }
  
  .hero-meta {
    gap: 20px;
  }
  
  .reviews-rating-score {
    font-size: 72px;
  }
  
  .order-summary,
  .order-main-image {
    padding: 24px;
  }
  
  .order-title {
    font-size: 26px;
  }
  
  .order-price {
    font-size: 36px;
  }
  
  .compare-table {
    overflow-x: auto;
  }
  
  .modal-head,
  .modal-body {
    padding: 20px;
  }
  
  .modal-title {
    font-size: 22px;
  }
  
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  
  .section-head {
    margin-bottom: 40px;
  }
}
