/*
TemplateMo 621 Luminary
https://templatemo.com/tm-621-luminary
*/

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

:root {
  --base-deep: #0F1115;
  --base-mid: #161A20;
  --base-soft: #1C2128;
  --slate-warm: #6B7280;
  --slate-light: #9CA3AF;
  --graphite: #2A2E35;
  --graphite-soft: #3D424A;
  --ivory: #E5E7EB;
  --ivory-muted: #C9CDD4;
  --silver: #B0B8C4;
  --panel-bg: rgba(22, 26, 32, 0.55);
  --panel-border: rgba(156, 163, 175, 0.08);
  --silk-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--base-deep);
  color: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Grain ── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.028; mix-blend-mode: overlay;
}

/* ── BG ── */
.atmosphere {
  position: fixed; inset: 0; z-index: 0;
  background: linear-gradient(180deg, #0F1115 0%, #161A20 35%, #1C2128 70%, #0D0F13 100%);
}

/* ── Nav ── */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 40px;
  transition: background 0.8s var(--silk-ease), padding 0.8s var(--silk-ease);
}
.top-nav.scrolled {
  background: rgba(15, 17, 21, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 16px 40px;
}
.nav-brand { font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory); text-decoration: none; }
.nav-brand span { font-weight: 300; color: var(--slate-warm); margin-left: 4px; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate-warm); text-decoration: none; position: relative; padding: 14px 0 6px;
  transition: color 0.8s var(--silk-ease);
}
.nav-links a::after {
  content: ''; position: absolute; top: 0; left: 50%;
  width: 6px; height: 6px;
  border-right: 1px solid var(--silver); border-bottom: 1px solid var(--silver);
  transform: translateX(-50%) rotate(45deg) translateY(-8px);
  opacity: 0; transition: transform 0.8s var(--silk-ease), opacity 0.6s var(--silk-ease);
  pointer-events: none;
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { opacity: 0.7; transform: translateX(-50%) rotate(45deg) translateY(0); }
.nav-links a.active { color: var(--ivory-muted); }
.nav-links a.active::after { opacity: 0.4; transform: translateX(-50%) rotate(45deg) translateY(0); }
.nav-cta {
  padding: 10px 28px; border-radius: 100px; font-family: inherit;
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--silver), var(--slate-light));
  color: var(--base-deep); border: none; cursor: pointer; text-decoration: none;
  transition: transform 0.8s var(--silk-ease), box-shadow 0.8s var(--silk-ease);
}
.nav-cta:hover { transform: scale(1.03); box-shadow: 0 6px 30px rgba(176,184,196,0.15); }

/* ── Hamburger ── */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; padding: 0;
}
.toggle-bar {
  display: block; width: 100%; height: 1.5px; background: var(--ivory);
  position: absolute; left: 0;
  transition: transform 0.6s var(--silk-ease), top 0.6s var(--silk-ease);
}
.toggle-bar:nth-child(1) { top: 6px; }
.toggle-bar:nth-child(2) { top: 16px; }
.nav-toggle.active .toggle-bar:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav-toggle.active .toggle-bar:nth-child(2) { top: 11px; transform: rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 550;
  pointer-events: none; opacity: 0; visibility: hidden;
  transition: opacity 0.6s var(--silk-ease), visibility 0.6s var(--silk-ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu-inner {
  position: absolute; inset: 0;
  background: rgba(15, 17, 21, 0.94);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 40px 60px; overflow-y: auto;
}
.mobile-menu-links { display: flex; flex-direction: column; flex: 1; justify-content: center; }
.mobile-menu-link {
  display: flex; align-items: baseline; gap: 16px;
  font-size: clamp(1.6rem, 5vw, 2.6rem); font-weight: 300; letter-spacing: -0.02em;
  color: var(--ivory); text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid rgba(156,163,175,0.06); position: relative;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.6s var(--silk-ease);
}
.mobile-menu.open .mobile-menu-link {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s var(--silk-ease), transform 0.5s var(--silk-ease), color 0.6s var(--silk-ease);
}
.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 0.30s; }
.mobile-menu.open .mobile-menu-link:nth-child(6) { transition-delay: 0.36s; }
.mobile-menu.open .mobile-menu-link:nth-child(7) { transition-delay: 0.42s; }
.mobile-menu-link::before {
  content: attr(data-index); font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; color: var(--slate-warm); opacity: 0.4;
  min-width: 24px; font-variant-numeric: tabular-nums;
}
.mobile-menu-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(156,163,175,0.06);
  opacity: 0; transition: opacity 0.3s ease;
}
.mobile-menu.open .mobile-menu-footer {
  opacity: 1; transition: opacity 0.5s var(--silk-ease) 0.45s;
}
.mobile-menu-footer a {
  font-size: 10px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate-warm); opacity: 0.4; text-decoration: none;
}
body.menu-open { overflow: hidden; }
body.menu-open .top-nav { background: rgba(15,17,21,0.95); backdrop-filter: blur(20px); }

/* ── Side Panels ── */
.side-panel {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 56px; z-index: 100;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding: 24px 0;
}
.side-panel.left { left: 20px; }
.side-panel.right { right: 20px; }
.side-label {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 9px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--slate-warm); opacity: 0.5;
}
.side-track {
  width: 1px; height: 160px;
  background: rgba(156,163,175,0.06); position: relative; border-radius: 1px;
}
.side-track-fill {
  position: absolute; top: 0; left: 0; width: 100%; height: 0%;
  background: linear-gradient(to bottom, var(--silver), rgba(176,184,196,0.15));
  border-radius: 1px; transition: height 1.2s var(--silk-ease);
}
.side-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--slate-warm); opacity: 0.15;
  transition: opacity 0.8s var(--silk-ease), transform 0.8s var(--silk-ease), box-shadow 0.8s var(--silk-ease);
}
.side-dot.active {
  opacity: 0.8; background: var(--silver);
  box-shadow: 0 0 12px rgba(176,184,196,0.3); transform: scale(1.3);
}
.side-readout {
  font-size: 9px; font-weight: 400; letter-spacing: 0.1em;
  color: var(--slate-warm); opacity: 0.35;
  font-variant-numeric: tabular-nums;
}

/* ── Container ── */
.main { position: relative; z-index: 10; max-width: 1120px; margin: 0 auto; padding: 0 40px; }

/* ── Shared ── */
.section { padding: 120px 0; position: relative; }
.section-tag {
  font-size: 9px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--slate-warm); opacity: 0.6; margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 300;
  letter-spacing: -0.04em; line-height: 1.15; color: var(--ivory); margin-bottom: 20px;
}
.section-title strong { font-weight: 600; }
.section-body {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: var(--slate-light); max-width: 540px;
}
.section-center { text-align: center; }
.section-center .section-body { margin: 0 auto; }

.silk-divider { width: 100px; height: 1px; background: linear-gradient(90deg, transparent, var(--panel-border), transparent); margin: 0 auto; }

.btn-primary {
  display: inline-block; padding: 16px 44px; border-radius: 100px;
  background: linear-gradient(135deg, var(--silver), var(--slate-light));
  color: var(--base-deep); font-family: inherit; font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer;
  text-decoration: none;
  transition: transform 0.8s var(--silk-ease), box-shadow 0.8s var(--silk-ease);
}
.btn-primary:hover { transform: scale(1.02); box-shadow: 0 8px 40px rgba(176,184,196,0.18); }
.btn-secondary {
  display: inline-block; padding: 16px 44px; border-radius: 100px; background: transparent;
  color: var(--ivory-muted); font-family: inherit; font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--panel-border); cursor: pointer; text-decoration: none;
  transition: transform 0.8s var(--silk-ease), border-color 0.8s var(--silk-ease), background 0.8s var(--silk-ease);
}
.btn-secondary:hover { transform: scale(1.02); border-color: rgba(156,163,175,0.2); background: rgba(156,163,175,0.04); }

/* ── Reveal ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 1.2s var(--silk-ease), transform 1.2s var(--silk-ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 120px 0 80px; position: relative;
}
.hero-grid {
  position: absolute; bottom: 0; left: 50%; height: 80%;
  width: 100vw; transform: translateX(-50%);
  z-index: 0; pointer-events: none;
  --mx: 50%; --my: 50%;
  background-image:
    linear-gradient(to right, rgba(156,163,175,0.22) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(156,163,175,0.22) 1px, transparent 1px);
  background-size: 120px 120px;
  background-position: center bottom;
  -webkit-mask-image:
    radial-gradient(circle 300px at var(--mx) var(--my), rgba(0,0,0,1) 0%, transparent 65%),
    linear-gradient(to bottom, transparent 0%, transparent 25%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0.4) 100%);
  mask-image:
    radial-gradient(circle 300px at var(--mx) var(--my), rgba(0,0,0,1) 0%, transparent 65%),
    linear-gradient(to bottom, transparent 0%, transparent 25%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0.4) 100%);
  -webkit-mask-composite: source-over;
  mask-composite: add;
}
.hero > *:not(.hero-grid) { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 24px; border-radius: 100px;
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  backdrop-filter: blur(20px); margin-bottom: 40px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 1.2s var(--silk-ease) 0.2s forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--silver);
  box-shadow: 0 0 8px rgba(176,184,196,0.4); animation: pulse 3s ease-in-out infinite;
}
.hero-badge span { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate-light); }

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem); font-weight: 300;
  letter-spacing: -0.05em; line-height: 1;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 1.4s var(--silk-ease) 0.4s forwards;
}
.hero h1 em {
  font-style: normal; font-weight: 600;
  background: linear-gradient(135deg, var(--ivory), var(--silver), var(--slate-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(0.85rem, 1.2vw, 1rem); font-weight: 300; line-height: 1.7;
  color: var(--slate-light); max-width: 520px; margin: 28px auto 48px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 1.4s var(--silk-ease) 0.6s forwards;
}
.hero-ctas {
  display: flex; gap: 14px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 1.4s var(--silk-ease) 0.8s forwards;
}
.hero-metrics {
  display: flex; justify-content: center; gap: 56px; margin-top: 72px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 1.4s var(--silk-ease) 1s forwards;
}
.metric { text-align: center; }
.metric-value {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; letter-spacing: -0.04em;
  color: var(--ivory); line-height: 1; font-variant-numeric: tabular-nums;
}
.metric-value span { font-size: 0.5em; font-weight: 400; color: var(--slate-warm); vertical-align: super; margin-left: 2px; }
.metric-label { font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate-warm); margin-top: 8px; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ══════════════════════════════════
   LOGO TICKER
   ══════════════════════════════════ */
.logo-ticker {
  padding: 60px 0; border-top: 1px solid var(--panel-border); border-bottom: 1px solid var(--panel-border);
  overflow: hidden; position: relative; z-index: 10;
}
.logo-ticker-label {
  text-align: center; font-size: 9px; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--slate-warm); opacity: 0.5; margin-bottom: 32px;
}
.ticker-track {
  display: flex; width: max-content;
  animation: tickerScroll 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  flex-shrink: 0; padding: 0 40px; display: flex; align-items: center;
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate-warm); opacity: 0.3;
  transition: opacity 0.6s var(--silk-ease);
}
.ticker-item:hover { opacity: 0.7; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--slate-warm); opacity: 0.2; margin: 0 40px; flex-shrink: 0; }

@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* Modern workspace platforms */
.workspace-section {
  max-width: 1180px; margin: 72px auto 120px; padding: 48px;
  position: relative; overflow: hidden;
  border: 1px solid var(--panel-border); border-radius: 32px;
  background: radial-gradient(circle at 85% 0%, rgba(72,118,136,0.16), transparent 34%), linear-gradient(145deg, rgba(28,33,40,0.82), rgba(16,19,24,0.72));
  backdrop-filter: blur(24px);
}
.workspace-section::after {
  content: ""; position: absolute; width: 240px; height: 240px; right: -120px; bottom: -160px;
  border: 1px solid rgba(176,184,196,0.08); border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(176,184,196,0.018), 0 0 0 76px rgba(176,184,196,0.012);
  pointer-events: none;
}
.workspace-heading { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: end; text-align: left; }
.workspace-heading .section-tag, .workspace-heading .section-title { text-align: left; }
.workspace-heading .section-title { max-width: 650px; margin-bottom: 0; }
.workspace-intro { max-width: 440px; justify-self: end; font-size: 0.88rem; font-weight: 300; line-height: 1.8; color: var(--slate-light); }
.platform-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-top: 42px; position: relative; z-index: 1; }
.platform-card {
  min-height: 92px; padding: 18px; display: flex; align-items: center; gap: 13px; position: relative;
  border: 1px solid rgba(156,163,175,0.09); border-radius: 18px; background: rgba(10,13,17,0.34);
  transition: transform 0.6s var(--silk-ease), border-color 0.6s var(--silk-ease), background 0.6s var(--silk-ease);
}
.platform-card:hover { transform: translateY(-4px); border-color: rgba(176,184,196,0.22); background: rgba(28,33,40,0.72); }
.platform-icon {
  width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center;
  border-radius: 13px; color: var(--silver); border: 1px solid rgba(176,184,196,0.12);
  background: linear-gradient(145deg, rgba(176,184,196,0.11), rgba(176,184,196,0.025));
}
.platform-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.platform-card:first-child .platform-icon svg { fill: currentColor; stroke: none; }
.platform-type { display: block; margin-bottom: 4px; font-size: 7px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-warm); }
.platform-card h3 { font-size: 0.88rem; font-weight: 500; color: var(--ivory); }
.platform-status {
  width: 6px; height: 6px; position: absolute; top: 14px; right: 14px;
  border-radius: 50%; background: #86aab0; box-shadow: 0 0 12px rgba(134,170,176,0.65);
}

/* ══════════════════════════════════
   FEATURE SHOWCASE
   ══════════════════════════════════ */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 72px 0;
}
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }

.feature-visual {
  position: relative; height: 320px; border-radius: 32px; overflow: hidden;
  background: var(--panel-bg); border: 1px solid var(--panel-border);
}
.feature-visual img {
  width: 100%; height: 100%; object-fit: cover; border-radius: inherit;
}
.feature-content {}
.feature-number {
  font-size: 3rem; font-weight: 200; letter-spacing: -0.04em;
  color: rgba(176,184,196,0.08); line-height: 1; margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════
   PRICING
   ══════════════════════════════════ */
.pricing-toggle {
  display: flex; justify-content: center; align-items: center; gap: 16px;
  margin: 40px 0 56px;
}
.pricing-toggle-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate-warm); transition: color 0.6s var(--silk-ease);
}
.pricing-toggle-label.active { color: var(--ivory); }
.toggle-switch {
  width: 48px; height: 26px; border-radius: 100px; background: var(--graphite);
  border: 1px solid var(--panel-border); position: relative; cursor: pointer;
  transition: background 0.6s var(--silk-ease);
}
.toggle-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--silver); transition: transform 0.6s var(--silk-ease);
}
.toggle-switch.annual::after { transform: translateX(22px); }
.save-badge {
  font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--silver); opacity: 0; transition: opacity 0.4s var(--silk-ease);
}
.save-badge.show { opacity: 1; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pricing-card {
  background: var(--panel-bg); border: 1px solid var(--panel-border); border-radius: 36px;
  padding: 44px 36px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.8s var(--silk-ease), box-shadow 0.8s var(--silk-ease);
}
.pricing-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(160deg, rgba(210,215,220,0.02) 0%, transparent 40%);
  pointer-events: none; transition: opacity 0.8s var(--silk-ease); opacity: 0;
}
.pricing-card.featured {
  border-color: rgba(176,184,196,0.15);
  box-shadow: 0 0 60px rgba(176,184,196,0.04);
  padding-top: 60px;
}
.pricing-card.featured::before { opacity: 1; }
.pricing-card.featured .pricing-badge { display: inline-block; }

.pricing-badge {
  display: none; position: absolute; top: 12px; right: 20px;
  font-size: 8px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  background: rgba(176,184,196,0.1); border: 1px solid rgba(176,184,196,0.12);
  color: var(--silver);
}

.pricing-tier {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--slate-warm); margin-bottom: 24px;
}

.pricing-prices { margin-bottom: 24px; }

.price-option {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid rgba(156,163,175,0.05);
  transition: opacity 0.6s var(--silk-ease);
  opacity: 0.35;
}
.price-option.active { opacity: 1; }

.price-option-left { display: flex; align-items: baseline; gap: 3px; }
.price-currency {
  font-size: 0.9rem; font-weight: 300; color: var(--slate-warm);
  transition: color 0.6s var(--silk-ease);
}
.price-amount {
  font-size: 2rem; font-weight: 300; letter-spacing: -0.04em; color: var(--slate-light);
  font-variant-numeric: tabular-nums;
  transition: font-size 0.6s var(--silk-ease), color 0.6s var(--silk-ease);
}
.price-period {
  font-size: 0.75rem; font-weight: 300; color: var(--slate-warm); margin-left: 2px;
  transition: color 0.6s var(--silk-ease);
}
.price-yearly {
  font-size: 0.72rem; font-weight: 400; color: var(--slate-warm);
  font-variant-numeric: tabular-nums;
  transition: color 0.6s var(--silk-ease);
}

/* Active state — emphasized */
.price-option.active .price-currency { color: var(--slate-light); }
.price-option.active .price-amount { font-size: 2.6rem; color: var(--ivory); }
.price-option.active .price-period { color: var(--slate-light); }
.price-option.active .price-yearly { color: var(--slate-light); }

.price-label {
  font-size: 8px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--slate-warm); margin-bottom: 2px;
  transition: color 0.6s var(--silk-ease);
}
.price-option.active .price-label { color: var(--silver); }

.pricing-desc {
  font-size: 0.85rem; font-weight: 300; line-height: 1.6; color: var(--slate-light);
  margin-bottom: 28px; flex: 1;
}
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  font-size: 0.82rem; font-weight: 400; color: var(--slate-light);
  padding: 8px 0; border-bottom: 1px solid rgba(156,163,175,0.05);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--silver); opacity: 0.5; flex-shrink: 0;
}
.pricing-card .btn-primary, .pricing-card .btn-secondary { width: 100%; text-align: center; padding: 14px; }

/* ══════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  border-radius: 28px; padding: 36px; backdrop-filter: blur(20px);
  transition: transform 0.8s var(--silk-ease);
}
.testimonial-quote {
  font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: var(--slate-light);
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--graphite); border: 1px solid var(--panel-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--slate-warm);
}
.testimonial-name { font-size: 0.8rem; font-weight: 500; color: var(--ivory); }
.testimonial-role { font-size: 0.72rem; font-weight: 300; color: var(--slate-warm); margin-top: 2px; }
.testimonial-card:nth-child(2) { transform: translateY(24px); }

/* User reviews */
.reviews-showcase {
  max-width: 1120px; margin: 56px auto 0;
  display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 20px; text-align: left;
}
.review-featured, .review-compact {
  position: relative; overflow: hidden;
  border: 1px solid rgba(156,163,175,0.09); border-radius: 28px;
  background: radial-gradient(circle at 100% 0%, rgba(88,115,129,0.13), transparent 38%), rgba(22,26,32,0.6);
  backdrop-filter: blur(20px);
}
.review-featured { min-height: 410px; padding: 42px; display: flex; flex-direction: column; }
.review-featured::after {
  content: "“"; position: absolute; right: 28px; bottom: -54px;
  font-family: Georgia, serif; font-size: 220px; line-height: 1; color: rgba(176,184,196,0.035); pointer-events: none;
}
.review-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.review-compact { min-height: 195px; padding: 28px 30px; }
.review-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.review-compact .review-card-head { margin-bottom: 18px; }
.review-number { font-size: 9px; font-weight: 600; letter-spacing: 0.18em; color: var(--slate-warm); }
.review-stars { display: flex; gap: 3px; color: #aeb9bd; font-size: 10px; }
.review-featured blockquote, .review-compact blockquote { margin: 0; color: var(--ivory-muted); font-weight: 300; letter-spacing: -0.015em; }
.review-featured blockquote { max-width: 530px; font-size: 1.35rem; line-height: 1.65; }
.review-compact blockquote { font-size: 0.91rem; line-height: 1.68; }
.review-person { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 28px; position: relative; z-index: 1; }
.review-compact .review-person { padding-top: 20px; }
.review-avatar {
  width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid rgba(176,184,196,0.16);
  background: linear-gradient(145deg, rgba(176,184,196,0.14), rgba(61,66,74,0.25));
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; color: var(--silver);
}
.review-name { font-size: 0.78rem; font-weight: 500; color: var(--ivory); }
.review-role { margin-top: 3px; font-size: 0.68rem; font-weight: 300; color: var(--slate-warm); }

/* ══════════════════════════════════
   INTEGRATIONS
   ══════════════════════════════════ */
.integrations-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 56px;
}
.integration-item {
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  border-radius: 20px; padding: 28px 16px; text-align: center;
  backdrop-filter: blur(16px);
  transition: transform 0.8s var(--silk-ease), border-color 0.8s var(--silk-ease);
}
.integration-icon {
  width: 40px; height: 40px; margin: 0 auto 12px;
  border-radius: 10px; background: var(--graphite); border: 1px solid var(--panel-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--slate-light);
}
.integration-name {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--slate-light); text-transform: uppercase;
}

/* ══════════════════════════════════
   FAQ
   ══════════════════════════════════ */
.faq-list { max-width: 900px; margin: 48px auto 0; display: grid; gap: 12px; }
.faq-controls {
  display: flex; justify-content: flex-end; margin-bottom: 8px;
}
.faq-toggle-all {
  background: none; border: 1px solid var(--panel-border); border-radius: 100px;
  padding: 8px 20px; font-family: inherit;
  font-size: 9px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--slate-warm); cursor: pointer;
  transition: color 0.6s var(--silk-ease), border-color 0.6s var(--silk-ease);
}
.faq-toggle-all:hover { color: var(--ivory); border-color: rgba(156,163,175,0.2); }
.faq-item {
  border: 1px solid rgba(156,163,175,0.09); border-radius: 20px; overflow: hidden;
  background: rgba(22,26,32,0.45);
  transition: background 0.6s var(--silk-ease), border-color 0.6s var(--silk-ease);
}
.faq-item.open { background: rgba(28,33,40,0.78); border-color: rgba(176,184,196,0.18); }
.faq-question {
  width: 100%; background: none; border: none; padding: 24px 26px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: inherit;
  font-size: 0.95rem; font-weight: 400; color: var(--ivory);
  text-align: left;
  transition: color 0.6s var(--silk-ease);
}
.faq-question > span:first-child { display: flex; align-items: center; gap: 20px; }
.faq-index { min-width: 22px; font-size: 8px; font-weight: 600; letter-spacing: 0.16em; color: var(--slate-warm); }
.faq-question:hover { color: var(--silver); }
.faq-icon {
  width: 20px; height: 20px; position: relative; flex-shrink: 0; margin-left: 20px;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--slate-warm);
  transition: transform 0.6s var(--silk-ease), opacity 0.4s ease;
}
.faq-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 1s var(--silk-ease);
}
.faq-answer-inner {
  overflow: hidden;
  padding: 0 26px;
  text-align: left;
  font-size: 0.88rem; font-weight: 300; line-height: 1.8; color: var(--slate-light);
  transition: padding 0.8s var(--silk-ease);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer-inner { padding: 0 68px 26px; }
.faq-answer-inner p { max-width: 700px; }

/* ══════════════════════════════════
   FOOTER CTA
   ══════════════════════════════════ */
.footer-cta { padding: 120px 0 80px; text-align: center; }
.footer-ctas { display: flex; justify-content: center; gap: 14px; margin-top: 40px; }
.footer-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 40px; border-top: 1px solid rgba(156,163,175,0.06);
}
.footer-brand { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate-light); opacity: 0.5; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: 10px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate-light); opacity: 0.5; text-decoration: none;
  transition: opacity 0.6s var(--silk-ease);
}
.footer-links a:hover { opacity: 0.8; }
.footer-credit {
  font-size: 10px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate-light); opacity: 0.5;
}
.footer-credit a {
  color: var(--slate-light); text-decoration: none; text-transform: none; letter-spacing: 0.05em;
  transition: opacity 0.6s var(--silk-ease);
}
.footer-credit a:hover { opacity: 0.8; }

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 1024px) {
  .main { padding: 0 32px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .side-panel { display: none; }
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse { direction: ltr; }
  .feature-visual { height: 260px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 48px auto 0; }
  .testimonial-card:nth-child(2) { transform: none; }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .workspace-heading { grid-template-columns: 1fr; gap: 20px; }
  .workspace-intro { justify-self: start; }
  .platform-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reviews-showcase { grid-template-columns: 1fr; max-width: 680px; }
}

@media (max-width: 768px) {
  .main { padding: 0 20px; }
  .top-nav { padding: 18px 20px; }
  .top-nav.scrolled { padding: 14px 20px; }
  .hero { min-height: 100svh; padding: 100px 0 60px; }
  .hero-metrics { flex-direction: column; gap: 28px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
  .section { padding: 80px 0; }
  .feature-visual { height: 240px; border-radius: 24px; }
  .pricing-card { padding: 32px 24px; border-radius: 28px; }
  .pricing-card.featured { padding-top: 52px; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bar { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-ctas { flex-direction: column; align-items: center; }
  .mobile-menu-inner { padding: 90px 20px 40px; }
  .workspace-section { margin: 48px auto 90px; padding: 32px 24px; border-radius: 24px; }
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-featured { min-height: 350px; padding: 30px; }
  .review-featured blockquote { font-size: 1.12rem; }
  .review-compact { padding: 25px; }
  .faq-question { padding: 21px 20px; font-size: 0.88rem; }
  .faq-question > span:first-child { gap: 12px; }
  .faq-item.open .faq-answer-inner { padding: 0 20px 22px 54px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 2.4rem; }
  .section-title { font-size: 1.7rem; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-menu-link { font-size: 1.4rem; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card { min-height: 78px; }
  .review-featured, .review-compact { border-radius: 22px; }
  .faq-index { min-width: 18px; }
}

@media (max-height: 540px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 80px 0 40px; }
  .hero-metrics { flex-direction: row; gap: 36px; margin-top: 40px; }
  .section { padding: 60px 0; }
  .mobile-menu-inner { padding: 64px 32px 24px; justify-content: flex-start; }
  .mobile-menu-link { font-size: 1.2rem; padding: 8px 0; }
}

@media (hover: hover) and (pointer: fine) {
  .pricing-card:hover { transform: scale(1.01); box-shadow: 0 12px 60px rgba(0,0,0,0.15); }
  .pricing-card:hover::before { opacity: 1; }
  .testimonial-card:hover { transform: scale(1.01); }
  .testimonial-card:nth-child(2):hover { transform: translateY(24px) scale(1.01); }
  .integration-item:hover { transform: scale(1.04); border-color: rgba(156,163,175,0.15); }
}
@media (hover: none) {
  .pricing-card:hover, .testimonial-card:hover, .integration-item:hover { transform: none; }
}

/* Focus */
.btn-primary:focus-visible, .btn-secondary:focus-visible,
.nav-links a:focus-visible, .nav-toggle:focus-visible,
.mobile-menu-link:focus-visible, .faq-question:focus-visible,
.toggle-switch:focus-visible, .faq-toggle-all:focus-visible {
  outline: 2px solid var(--silver); outline-offset: 3px;
}

/* ══════════════════════════════════
   INNER PAGE BANNER
   ══════════════════════════════════ */
.page-banner {
  padding: 180px 0 80px; text-align: center; position: relative;
}
.page-banner h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 300;
  letter-spacing: -0.04em; line-height: 1.15; color: var(--ivory);
}
.page-banner h1 strong { font-weight: 600; }
.page-banner .section-tag { margin-bottom: 12px; }
.page-banner-sub {
  font-size: 0.9rem; font-weight: 300; line-height: 1.7;
  color: var(--slate-light); max-width: 600px; margin: 16px auto 0;
}

/* ══════════════════════════════════
   INNER CONTENT
   ══════════════════════════════════ */
.content-section {
  padding: 60px 0 100px;
}
.content-section .section-body {
  max-width: 780px; font-size: 0.95rem;
}
.content-section .section-title {
  margin-top: 48px;
}
.content-section .section-title:first-child {
  margin-top: 0;
}
.content-section .section-tag {
  margin-bottom: 8px;
}

/* Disclaimer banner */
.disclaimer-banner {
  background: var(--panel-bg); border: 1px solid rgba(176,184,196,0.12);
  border-radius: 16px; padding: 20px 28px; margin-bottom: 48px;
  display: flex; align-items: center; gap: 16px;
  backdrop-filter: blur(20px);
}
.disclaimer-banner-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(176,184,196,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.disclaimer-banner p {
  font-size: 0.85rem; font-weight: 300; line-height: 1.6; color: var(--slate-light);
}

/* ══════════════════════════════════
   COMPARISON TABLE
   ══════════════════════════════════ */
.comparison-section { padding: 80px 0; }
.comparison-wrapper {
  overflow-x: auto; margin-top: 48px;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0;
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  border-radius: 20px; overflow: hidden; backdrop-filter: blur(20px);
}
.comparison-table th {
  padding: 20px 24px; font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--slate-warm);
  background: rgba(156,163,175,0.03);
  border-bottom: 1px solid var(--panel-border); text-align: left;
}
.comparison-table th:first-child { padding-left: 28px; }
.comparison-table th:last-child { padding-right: 28px; }
.comparison-table th.highlight {
  color: var(--silver); background: rgba(176,184,196,0.05);
}
.comparison-table td {
  padding: 16px 24px; font-size: 0.85rem; font-weight: 300; color: var(--slate-light);
  border-bottom: 1px solid rgba(156,163,175,0.04);
}
.comparison-table td:first-child {
  font-weight: 500; color: var(--ivory-muted); padding-left: 28px;
}
.comparison-table td:last-child { padding-right: 28px; }
.comparison-table td.highlight {
  background: rgba(176,184,196,0.02); color: var(--ivory-muted);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .check { color: var(--silver); }
.comparison-table .cross { color: var(--slate-warm); opacity: 0.4; }

/* ══════════════════════════════════
   GUIDE CARDS
   ══════════════════════════════════ */
.guide-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.guide-card {
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  border-radius: 28px; overflow: hidden; backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  transition: transform 0.8s var(--silk-ease), box-shadow 0.8s var(--silk-ease);
  text-decoration: none; color: inherit;
}
.guide-card:hover {
  transform: scale(1.02); box-shadow: 0 12px 60px rgba(0,0,0,0.15);
}
.guide-card-image {
  width: 100%; height: 200px; object-fit: cover;
}
.guide-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.guide-card-tag {
  font-size: 8px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--slate-warm); margin-bottom: 8px;
}
.guide-card-title {
  font-size: 1.1rem; font-weight: 500; letter-spacing: -0.02em;
  color: var(--ivory); line-height: 1.3; margin-bottom: 10px;
}
.guide-card-excerpt {
  font-size: 0.82rem; font-weight: 300; line-height: 1.7;
  color: var(--slate-light); flex: 1;
}
.guide-card-meta {
  font-size: 9px; font-weight: 400; letter-spacing: 0.1em;
  color: var(--slate-warm); opacity: 0.5; margin-top: 16px;
}

/* ══════════════════════════════════
   ARTICLE PAGE
   ══════════════════════════════════ */
.article-header {
  padding: 180px 0 0; text-align: center;
}
.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 300;
  letter-spacing: -0.03em; line-height: 1.2; color: var(--ivory);
  max-width: 800px; margin: 0 auto;
}
.article-header h1 strong { font-weight: 600; }
.article-meta {
  display: flex; justify-content: center; gap: 24px; margin-top: 16px;
  font-size: 10px; font-weight: 400; letter-spacing: 0.1em;
  color: var(--slate-warm); text-transform: uppercase;
}
.article-featured-image {
  margin: 40px auto 0; max-width: 900px; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--panel-border);
}
.article-featured-image img {
  width: 100%; height: 400px; object-fit: cover; display: block;
}
.article-content {
  padding: 60px 0 100px; max-width: 780px; margin: 0 auto;
}
.article-content p {
  font-size: 0.95rem; font-weight: 300; line-height: 1.9;
  color: var(--slate-light); margin-bottom: 24px;
}
.article-content h2 {
  font-size: 1.5rem; font-weight: 500; letter-spacing: -0.02em;
  color: var(--ivory); margin: 48px 0 16px; line-height: 1.3;
}
.article-content h3 {
  font-size: 1.15rem; font-weight: 500; letter-spacing: -0.01em;
  color: var(--ivory-muted); margin: 36px 0 12px; line-height: 1.3;
}
.article-content ul, .article-content ol {
  margin: 0 0 24px 24px; font-size: 0.95rem; font-weight: 300;
  line-height: 1.9; color: var(--slate-light);
}
.article-content li { margin-bottom: 6px; }
.article-content blockquote {
  border-left: 2px solid var(--silver); padding: 16px 24px; margin: 32px 0;
  background: var(--panel-bg); border-radius: 0 16px 16px 0;
  font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: var(--ivory-muted);
  font-style: italic;
}

/* ══════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════ */
.contact-form {
  max-width: 560px; margin: 48px auto 0;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--slate-warm); margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 16px 20px; border-radius: 16px;
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  font-family: inherit; font-size: 0.9rem; font-weight: 300;
  color: var(--ivory); outline: none;
  transition: border-color 0.6s var(--silk-ease), background 0.6s var(--silk-ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(176,184,196,0.2); background: rgba(22,26,32,0.7);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn-primary { width: 100%; text-align: center; margin-top: 8px; }
.form-success {
  display: none; text-align: center; padding: 60px 40px;
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  border-radius: 28px; backdrop-filter: blur(20px);
}
.form-success.show { display: block; }
.form-success-icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  background: rgba(176,184,196,0.1); border: 1px solid rgba(176,184,196,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.form-success h3 {
  font-size: 1.2rem; font-weight: 500; color: var(--ivory); margin-bottom: 10px;
}
.form-success p {
  font-size: 0.9rem; font-weight: 300; color: var(--slate-light); line-height: 1.7;
}

/* ══════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(15, 17, 21, 0.95); backdrop-filter: blur(20px);
  border-top: 1px solid var(--panel-border);
  padding: 16px 40px; display: none; align-items: center;
  justify-content: space-between; gap: 24px;
}
.cookie-banner.show { display: flex; }
.cookie-banner p {
  font-size: 0.8rem; font-weight: 300; line-height: 1.5; color: var(--slate-light);
  max-width: 700px;
}
.cookie-banner p a { color: var(--silver); text-decoration: none; }
.cookie-banner p a:hover { text-decoration: underline; }
.cookie-banner .btn-cookie {
  padding: 10px 28px; border-radius: 100px; background: linear-gradient(135deg, var(--silver), var(--slate-light));
  color: var(--base-deep); font-family: inherit; font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer;
  white-space: nowrap;
  transition: transform 0.6s var(--silk-ease);
}
.cookie-banner .btn-cookie:hover { transform: scale(1.03); }

/* ══════════════════════════════════
   FOOTER SOCIAL ICONS
   ══════════════════════════════════ */
.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-warm); text-decoration: none;
  font-size: 0;
  transition: color 0.6s var(--silk-ease), border-color 0.6s var(--silk-ease), transform 0.6s var(--silk-ease);
}
.footer-social a::before {
  content: "";
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-social a[href*="x.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23aab2c0' d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}
.footer-social a[href*="instagram.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aab2c0' stroke-width='1.8'%3E%3Crect x='2.5' y='2.5' width='19' height='19' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4.5'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%23aab2c0' stroke='none'/%3E%3C/svg%3E");
}
.footer-social a:hover {
  color: var(--silver); border-color: rgba(176,184,196,0.2); transform: scale(1.1);
}
.footer-disclaimer {
  font-size: 9px; font-weight: 400; letter-spacing: 0.1em;
  color: var(--slate-warm); opacity: 0.4;
}

/* ══════════════════════════════════
   RESPONSIVE ADDITIONS
   ══════════════════════════════════ */
@media (max-width: 1024px) {
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .guide-grid { grid-template-columns: 1fr; max-width: 440px; margin: 48px auto 0; }
  .article-featured-image img { height: 260px; }
  .article-content { padding: 40px 0 80px; }
  .page-banner { padding: 140px 0 60px; }
  .cookie-banner { flex-direction: column; text-align: center; padding: 16px 20px; }
  .comparison-table th, .comparison-table td { padding: 14px 16px; }
  .comparison-table th:first-child, .comparison-table td:first-child { padding-left: 20px; }
}
@media (max-width: 420px) {
  .guide-grid { max-width: 100%; }
}
