/* === BASE === */
:root {
  --bg: #080810;
  --surface: #0f0f1a;
  --surface-2: #141428;
  --border: rgba(232, 163, 23, 0.12);
  --amber: #e8a317;
  --amber-dim: rgba(232, 163, 23, 0.15);
  --amber-glow: rgba(232, 163, 23, 0.06);
  --text: #ede9e0;
  --text-muted: rgba(237, 233, 224, 0.45);
  --text-dim: rgba(237, 233, 224, 0.25);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 8rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,163,23,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,163,23,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-orb-field {
  position: absolute;
  right: 6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.orb-1 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(232,163,23,0.25) 0%, rgba(232,163,23,0.05) 60%, transparent 100%);
  animation: orb-pulse 4s ease-in-out infinite;
}
.orb-2 {
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(232,163,23,0.35) 0%, rgba(232,163,23,0.08) 70%, transparent 100%);
  animation: orb-pulse 4s ease-in-out infinite 0.5s;
}
.orb-3 {
  width: 60px; height: 60px;
  background: #e8a317;
  box-shadow: 0 0 30px rgba(232,163,23,0.6), 0 0 80px rgba(232,163,23,0.3);
  animation: orb-pulse 4s ease-in-out infinite 1s;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,163,23,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-expand 6s ease-out infinite;
}
.orb-ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.orb-ring-2 { width: 380px; height: 380px; animation-delay: 1.5s; }
@keyframes orb-pulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes ring-expand {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}
.signal-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.signal-line {
  position: absolute;
  background: linear-gradient(to right, rgba(232,163,23,0.6), transparent);
  height: 1px;
  transform-origin: left center;
}
.sl-1 { width: 160px; top: 0; left: 30px; transform: rotate(-30deg); }
.sl-2 { width: 200px; top: 0; left: 30px; transform: rotate(0deg); opacity: 0.5; }
.sl-3 { width: 160px; top: 0; left: 30px; transform: rotate(30deg); }
.platform-icons {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
}
.p-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--amber);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  opacity: 0.85;
  transition: opacity 0.3s;
}
.p-icon:hover { opacity: 1; }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2rem;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--text);
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 3rem;
}
.hero-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  font-family: var(--font-sans);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* === MANIFESTO === */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 8rem;
}
.manifesto-inner { max-width: 900px; }
.manifesto-label {
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.manifesto-label-right { text-align: right; margin-top: 4rem; }
.manifesto-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  font-style: normal;
  padding-left: 0;
}
.manifesto-text-right { padding-right: 0; }
.manifesto-divider {
  width: 1px;
  height: 60px;
  background: var(--amber-dim);
  margin: 3rem 0;
  margin-left: 2rem;
}

/* === FEATURES === */
.features {
  padding: 8rem 8rem;
}
.features-header {
  margin-bottom: 7rem;
}
.section-tag {
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.features-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
  padding-bottom: 8rem;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }
.feature-text { padding: 2rem 0; }
.feature-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}
.feature-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.feature-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 400px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
}

/* Feature Visual: Write */
.fv-write {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.fv-write-sm { margin-bottom: 0; }
.fv-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.fv-dot { width: 6px; height: 6px; border-radius: 50%; }
.fv-dot-amber { background: var(--amber); }
.fv-platform { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); }
.fv-status { font-size: 0.8125rem; color: var(--amber); margin-left: auto; font-family: var(--font-sans); }
.fv-text-lg { font-size: 1rem; line-height: 1.6; color: var(--text); margin-bottom: 0.75rem; font-family: var(--font-sans); }
.fv-text-sm { font-size: 0.9rem; line-height: 1.5; color: var(--text-muted); margin-bottom: 0.5rem; font-family: var(--font-sans); }
.fv-meta { font-size: 0.8125rem; color: var(--text-muted); font-family: var(--font-sans); }
.fv-meta-sm { font-size: 0.8125rem; color: var(--text-muted); font-family: var(--font-sans); }

/* Feature Visual: Engage */
.feature-visual-engage .engage-panel {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.engage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.engage-title { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.engage-badge { font-size: 0.8125rem; background: var(--amber-dim); color: var(--amber); padding: 0.25rem 0.7rem; border-radius: 100px; font-family: var(--font-sans); }
.engage-item {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.engage-item:last-child { border-bottom: none; }
.engage-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.engage-item-sm .engage-avatar { width: 28px; height: 28px; font-size: 0.75rem; }
.engage-body { }
.engage-name { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.25rem; }
.engage-platform { font-weight: 400; color: var(--text-dim); }
.engage-comment { font-size: 0.9rem; color: var(--text); line-height: 1.6; margin-bottom: 0.5rem; font-style: italic; }
.engage-response {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: var(--amber-glow);
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid var(--border);
}
.ai-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  background: var(--amber);
  color: var(--bg);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.response-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; font-family: var(--font-sans); }

/* Feature Visual: Report */
.report-panel {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.report-title { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.report-period { font-size: 0.8125rem; color: var(--text-muted); font-family: var(--font-sans); }
.report-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 1.5rem 1.5rem 0.75rem;
  height: 120px;
}
.chart-bar {
  flex: 1;
  background: var(--surface);
  border-radius: 4px 4px 0 0;
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.chart-bar span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  width: 100%;
  padding-bottom: 0.25rem;
  font-family: var(--font-sans);
}
.chart-bar-active { background: var(--amber-dim); }
.report-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.metric { padding: 1rem 1.5rem; border-right: 1px solid var(--border); }
.metric:last-child { border-right: none; }
.metric-value { font-size: 1.5rem; font-weight: 700; font-family: var(--font-serif); margin-bottom: 0.2rem; }
.metric-up { color: var(--amber); }
.metric-label { font-size: 0.65rem; color: var(--text-dim); font-family: var(--font-sans); }
.report-insight {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--amber-glow);
  border-top: 1px solid var(--border);
}
.insight-icon { color: var(--amber); font-size: 0.7rem; }
.insight-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; font-family: var(--font-sans); }

/* === ETHICS === */
.ethics {
  padding: 5rem 8rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ethics-inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 900px;
}
.ethics-icon { flex-shrink: 0; margin-top: 0.25rem; }
.ethics-headline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.ethics-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.ethics-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
}
.pillar-icon {
  width: 20px; height: 20px;
  border: 1px solid var(--amber-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* === BRAND VOICE PANEL === */
.brand-panel {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.brand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.brand-title { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.brand-score {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}
.brand-score-max { font-size: 1rem; color: var(--text-dim); }
.brand-bars { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.brand-bar-row { display: flex; align-items: center; gap: 0.75rem; }
.brand-bar-label { font-size: 0.8125rem; color: var(--text-muted); min-width: 130px; font-family: var(--font-sans); }
.brand-bar-track { flex: 1; height: 6px; background: var(--surface); border-radius: 3px; overflow: hidden; }
.brand-bar-fill { height: 100%; background: var(--amber); border-radius: 3px; }
.brand-bar-val { font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); min-width: 28px; text-align: right; }
.brand-footer {
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--amber-glow);
}
.brand-flag { font-size: 0.8125rem; color: var(--amber); font-family: var(--font-sans); }

/* === PRICING === */
.pricing {
  padding: 7rem 8rem;
  border-top: 1px solid var(--border);
}
.pricing-header { margin-bottom: 4rem; }
.pricing-tag {
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.pricing-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}
.pricing-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}
.pricing-card-wrap { display: flex; justify-content: flex-start; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  max-width: 440px;
  width: 100%;
  position: relative;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(to right, var(--amber), rgba(232,163,23,0.3));
  border-radius: 16px 16px 0 0;
}
.pricing-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-dim);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.pricing-dollar { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--text); }
.pricing-price { font-family: var(--font-serif); font-size: 4rem; font-weight: 700; color: var(--text); line-height: 1; }
.pricing-period { font-size: 0.9375rem; color: var(--text-muted); font-family: var(--font-sans); }
.pricing-note { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 2rem; font-family: var(--font-sans); }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 2rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
}
.pricing-feature-icon { color: var(--amber); flex-shrink: 0; margin-top: 0.1rem; }
.pricing-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--amber);
  color: #080810;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.pricing-cta:hover { background: #f5b52a; }
.pricing-comparison {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--surface-2);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.pricing-comparison-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}
.pricing-compare-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  font-family: var(--font-sans);
}
.pricing-compare-row:last-child { border-bottom: none; }
.pricing-compare-row span:first-child { color: var(--text-muted); }
.pricing-compare-row span:last-child { font-weight: 600; }
.pricing-compare-cast { color: var(--amber) !important; }
.pricing-compare-hire { color: var(--text-dim); }

/* === CLOSING === */
.closing {
  padding: 10rem 8rem;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232,163,23,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { position: relative; z-index: 1; }
.closing-bg-line {
  position: absolute;
  top: 0;
  left: 8rem;
  right: 8rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--amber-dim), transparent);
}
.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 2rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 8rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-sans);
}
.footer-meta {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-sep { color: var(--border); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 4rem 2rem; min-height: 100svh; }
  .hero-orb-field { display: none; }
  .manifesto { padding: 4rem 2rem; }
  .manifesto-label-right { text-align: left; }
  .manifesto-divider { margin-left: 0; }
  .features { padding: 4rem 2rem; }
  .feature-row, .feature-row-reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .pricing { padding: 4rem 2rem; }
  .pricing-card { padding: 2rem; }
  .pricing-comparison { display: none; }
  .ethics { padding: 3rem 2rem; }
  .ethics-inner { flex-direction: column; }
  .closing { padding: 5rem 2rem; }
  .site-footer { padding: 2rem; }
  .footer-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
}