/* ═══════════════════════════════════════════════════════════
   ÂMAGO — Design System
   "A notícia por trás da notícia"
   Dark luxury editorial · Glassmorphism · Premium newspaper
   ═══════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  /* Core palette */
  --bg:             #050505;
  --bg-editorial:   #120C08;
  --bg-warm:        #0B0806;
  --bg-card:        #0d0b09;

  /* Gold system */
  --gold:           #D6B16D;
  --gold-light:     #EAD7A1;
  --gold-dim:       #B49652;
  --gold-glow:      #D6B16D30;
  --gold-border:    #D6B16D44;

  /* Neutrals */
  --cream:          #F5EAD2;
  --white:          #FFFFFF;
  --text:           #F0EBE1;
  --text-muted:     #A8A8A8;
  --text-dim:       #6B6560;
  --line:           #FFFFFF12;
  --line-warm:      #3A2A1E;

  /* Accents */
  --green:          #48B89A;
  --green-dim:      #48B89A80;
  --red:            #D45A4C;
  --red-dim:        #D45A4C80;

  /* Surfaces */
  --panel:          #0d0b09cc;
  --panel-glass:    #0d0b09aa;
  --glass-border:   #FFFFFF10;

  /* Typography */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:      'Lora', 'Source Serif 4', Georgia, serif;
  --font-mono:      'IBM Plex Mono', 'Space Mono', 'Courier New', monospace;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  12px;
  --space-lg:  16px;
  --space-xl:  24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  --space-5xl: 96px;

  /* Radii */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  24px;
  --radius-pill: 999px;

  /* Transitions */
  --ease-out:   cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:   0.3s;
  --duration-slow: 0.6s;
}


/* ─── RESET & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}


/* ─── ATMOSPHERIC BACKGROUNDS ─── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.aurora {
  position: fixed;
  top: -200px;
  left: -20%;
  right: -20%;
  height: 600px;
  background:
    radial-gradient(ellipse at 25% 50%, #D6B16D18, transparent 50%),
    radial-gradient(ellipse at 75% 30%, #48B89A0C, transparent 40%),
    radial-gradient(ellipse at 50% 80%, #D45A4C08, transparent 45%);
  filter: blur(60px);
  z-index: -2;
  animation: auroraFloat 12s ease-in-out infinite alternate;
  will-change: transform;
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(#FFFFFF06 1px, transparent 1px),
    linear-gradient(90deg, #FFFFFF06 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 70%);
}

@keyframes auroraFloat {
  0%   { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(80px) scale(1.1); opacity: 0.7; }
}


/* ─── LAYOUT ─── */
.section-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 64px);
}


/* ─── TOPBAR / HEADER ─── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(24px, 5vw, 64px);
  background: linear-gradient(180deg, #050505ee 0%, #050505cc 60%, transparent 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background var(--duration) var(--ease-out);
}

.topbar.scrolled {
  background: #050505ee;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  transition: opacity var(--duration);
}

.brand:hover { opacity: 0.8; }

.brand-mark {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
}

.desktop-nav {
  display: flex;
  gap: 28px;
}

.desktop-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  transition: color var(--duration);
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration) var(--ease-out);
}

.desktop-nav a:hover {
  color: var(--gold-light);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}


/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
}

.btn-lg {
  min-height: 58px;
  padding: 0 36px;
  font-size: 13px;
}

.btn-gold {
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1A0E05;
  box-shadow: 0 0 30px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px #D6B16D40, 0 8px 32px rgba(0,0,0,0.4);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  background: rgba(0,0,0,0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(214, 177, 109, 0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: #FFFFFF30;
  background: rgba(255,255,255,0.06);
}

.btn-arrow {
  transition: transform var(--duration) var(--ease-out);
}

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


/* ─── PILL / BADGE ─── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  background: rgba(13, 9, 6, 0.7);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-light);
}

.pill-icon {
  color: var(--gold);
  font-size: 10px;
}


/* ─── EYEBROW ─── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.eyebrow.centered {
  justify-content: center;
}

.eyebrow-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}


/* ─── SECTION HEADERS ─── */
.section-header {
  margin-bottom: var(--space-4xl);
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0;
}

h2 {
  font-size: clamp(42px, 7vw, 88px);
  margin-top: 24px;
}

h2 em, h1 em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 780px;
  margin-top: 28px;
}

.section-header.centered,
.section-header .centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}


/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
}

h1 {
  font-size: clamp(38px, 7.5vw, 82px);
  line-height: 1.0;
  margin-top: 32px;
  max-width: 1000px;
}

.gold-highlight {
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
}

.hero-copy {
  font-size: clamp(17px, 2.2vw, 23px);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 800px;
  margin: 32px auto 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.trust {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-top: 28px;
}


/* ─── LOGO ORB ─── */
.logo-orb {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dim));
  box-shadow: 0 0 80px var(--gold-glow), 0 20px 60px rgba(0,0,0,0.5);
  margin: 36px auto 20px;
}

.orb-letter {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: #150D06;
  position: relative;
  z-index: 2;
}

.orb-ring {
  position: absolute;
  inset: -20px;
  border: 1px solid #D6B16D18;
  border-radius: 38px;
  animation: orbPulse 3.5s ease-in-out infinite;
}

.orb-ring--2 {
  inset: -40px;
  border-radius: 48px;
  animation-delay: 0.7s;
}

.orb-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, #D6B16D15, transparent 70%);
  border-radius: 50%;
  animation: orbGlow 4s ease-in-out infinite alternate;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.06); opacity: 0.7; }
}

@keyframes orbGlow {
  0%   { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.1); }
}


/* ─── CONCEITO CARDS ─── */
.conceito-cards {
  display: grid;
  gap: 24px;
}

.layer-card {
  display: grid;
  grid-template-columns: 80px 1fr minmax(140px, 200px);
  gap: 28px 32px;
  align-items: center;
  padding: 48px clamp(28px, 5vw, 60px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 20px 80px rgba(0,0,0,0.3);
  transition: border-color var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.layer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.layer-card:hover {
  border-color: #FFFFFF1A;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 20px 80px rgba(0,0,0,0.4);
}

.layer-card--gold:hover { border-color: var(--gold-border); }
.layer-card--green:hover { border-color: var(--green-dim); }

.card-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--text-dim);
  line-height: 1;
}

.card-number.gold  { color: var(--gold); }
.card-number.green { color: var(--green); }
.card-number.cream { color: var(--cream); }

.card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.card-label.gold  { color: var(--gold); }
.card-label.green { color: var(--green); }
.card-label.cream { color: var(--cream); }

.card-content h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.card-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

.layer-metaphor {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: radial-gradient(ellipse at 50% 50%, rgba(214, 177, 109, 0.06), transparent 70%);
  border: 1px solid rgba(214, 177, 109, 0.08);
}

.mira-metaphor-stage {
  width: 100%;
  max-width: 180px;
  height: 140px;
}

.mira-metaphor-stage svg {
  display: block;
  width: 100%;
  height: 100%;
}


/* ─── MARQUEE ─── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.01);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-dim);
  white-space: nowrap;
  padding-right: 8px;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ─── METRICS / PERSONALIZAÇÃO ─── */
.personalizacao-section {
  background: linear-gradient(180deg, transparent, rgba(18,12,8,0.4), transparent);
}

.personalizacao-metaphor-wrap {
  max-width: 720px;
  margin: 0 auto var(--space-3xl);
  padding: 20px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at 50% 50%, rgba(214, 177, 109, 0.05), transparent 70%);
}

.mira-personalizacao-stage {
  width: 100%;
  min-height: 160px;
}

.mira-personalizacao-stage svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── Seção "A notícia vem até você" ─── */
.converge {
  text-align: center;
}

.converge-inner {
  max-width: 760px;
  margin: 0 auto;
}

.converge-eyebrow {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold, #d6b16d);
  opacity: 0.85;
}

.converge-title {
  margin-top: 20px;
  font-family: var(--font-display, Georgia), serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}

.converge-title em {
  font-style: italic;
  font-weight: 700;
}

.converge-copy {
  margin: 22px auto 0;
  max-width: 560px;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
  color: rgba(245, 234, 210, 0.6);
}

.converge-stage {
  margin-top: 36px;
}

.mira-convergencia-stage {
  width: 100%;
  min-height: 200px;
}

.mira-convergencia-stage svg {
  display: block;
  width: 100%;
  height: auto;
}

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

.metric-card {
  padding: 40px 28px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  text-align: center;
  transition: border-color var(--duration), transform var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.metric-card:hover {
  border-color: #FFFFFF1A;
  transform: translateY(-2px);
}

.metric-card--gold {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, rgba(214,177,109,0.06), rgba(255,255,255,0.01));
}

.metric-card--gold:hover {
  border-color: var(--gold);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.metric-unit {
  font-size: 32px;
}

.metric-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.metric-sublabel {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dim);
}


/* ─── EDITION PREVIEW ─── */
.edicao-section {
  background:
    linear-gradient(180deg,
      transparent 0%,
      rgba(18,12,8,0.5) 10%,
      rgba(18,12,8,0.5) 90%,
      transparent 100%
    );
}

.edition-paper {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 60px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #0F0B08ee, #0A0806ee);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 100px rgba(214,177,109,0.06),
    0 40px 120px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.edition-paper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim), var(--gold));
}

.edition-masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.edition-masthead-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.edition-tag {
  padding: 4px 12px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-size: 10px;
}

.edition-divider {
  color: var(--text-dim);
}

.edition-masthead-right {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
}

.edition-logo {
  letter-spacing: -0.02em;
}

.edition-headline {
  margin-bottom: 40px;
}

.edition-headline h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--cream);
}


/* ─── EDITION BLOCKS ─── */
.edition-block {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #FFFFFF08;
}

.edition-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.edition-block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.edition-block-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}

.edition-block-marker.gold  { background: var(--gold); box-shadow: 0 0 12px var(--gold-glow); }
.edition-block-marker.green { background: var(--green); box-shadow: 0 0 12px rgba(72,184,154,0.3); }

.edition-block-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

.edition-block-label.gold  { color: var(--gold); }
.edition-block-label.green { color: var(--green); }

.edition-block-body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.edition-block-body p:last-child {
  margin-bottom: 0;
}

.edition-block-body strong {
  color: var(--gold-light);
  font-weight: 600;
}

.edition-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}


/* ─── EDITION VIEWS GRID ─── */
.edition-views-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.edition-view {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
}

.edition-view h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.view-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.view-indicator.positive { background: var(--green); box-shadow: 0 0 8px var(--green-dim); }
.view-indicator.negative { background: var(--red); box-shadow: 0 0 8px var(--red-dim); }

.edition-view--positive h4 { color: var(--green); }
.edition-view--negative h4 { color: var(--red); }

.edition-view ul {
  list-style: none;
}

.edition-view li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.edition-view li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-dim);
}


/* ─── INSIGHT QUOTE ─── */
.insight-quote {
  font-family: var(--font-editorial);
  font-size: clamp(22px, 3.5vw, 34px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin: 8px 0;
}


/* ─── EDITION FOOTER ─── */
.edition-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.edition-footer span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-dim);
}


/* ═══════════════════════════════════════════════════════════
   CADASTRO / MULTI-STEP FORM
   ═══════════════════════════════════════════════════════════ */

.cadastro-section {
  text-align: center;
}

.cadastro-section .section-header {
  text-align: center;
}

.cadastro-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.form-container {
  max-width: 760px;
  margin: 0 auto;
}


/* ─── PROGRESS BAR ─── */
.form-progress {
  margin-bottom: 40px;
}

.progress-track {
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 16.66%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.5s var(--ease-out);
  box-shadow: 0 0 12px var(--gold-glow);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: default;
  padding: 0;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--line);
  color: var(--text-dim);
  background: var(--bg);
  transition: all var(--duration) var(--ease-out);
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
  border-color: var(--gold);
  color: var(--bg);
  background: var(--gold);
}

.progress-step.completed .step-number {
  background: var(--gold-dim);
  border-color: var(--gold-dim);
}

.step-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  transition: color var(--duration);
}

.progress-step.active .step-label {
  color: var(--gold);
}

.progress-step.completed .step-label {
  color: var(--text-muted);
}


/* ─── FORM CARD ─── */
.form-card {
  padding: 40px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(13,11,9,0.9), rgba(8,6,4,0.95));
  backdrop-filter: blur(12px);
  box-shadow: 0 0 80px rgba(214,177,109,0.06), 0 20px 60px rgba(0,0,0,0.4);
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}


/* ─── FORM STEPS ─── */
.form-step {
  display: none;
  animation: stepFadeIn 0.4s var(--ease-out);
}

.form-step.active {
  display: block;
}

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

.step-intro {
  margin-bottom: 32px;
  text-align: center;
}

.step-intro h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 8px;
}

.step-intro p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ─── FORM FIELDS ─── */
.form-fields {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-light);
}

.field-optional {
  display: inline;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: lowercase;
  letter-spacing: 0.06em;
  font-size: 10px;
  margin-left: 6px;
}

input, textarea, select {
  width: 100%;
  background: rgba(5,5,5,0.6);
  border: 1px solid #FFFFFF18;
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 16px 18px;
  outline: none;
  transition: border-color var(--duration), box-shadow var(--duration);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,177,109,0.12);
}

input::placeholder, textarea::placeholder {
  color: var(--text-dim);
  font-style: italic;
}

textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}


/* ─── CHIPS (Multi-select) ─── */
.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.03);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  user-select: none;
}

.chip:hover {
  border-color: var(--gold-border);
  color: var(--gold-light);
  background: rgba(214,177,109,0.04);
}

.chip.selected {
  border-color: var(--gold);
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 16px var(--gold-glow);
}

.chip-icon {
  font-size: 10px;
  transition: transform var(--duration);
}

.chip.selected .chip-icon {
  transform: scale(1.2);
}

.chips-grid--intentions {
  gap: 10px;
}

.chip--intention {
  padding: 14px 22px;
  font-size: 13px;
}

/* Contador de caracteres: só aparece perto do limite, para não virar ruído. */
.field-counter {
  align-self: flex-end;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--text-dim);
  min-height: 12px;
}

.field-counter.is-over {
  color: #d45a4c;
  font-weight: 700;
}

.field-label input.is-over,
.field-label textarea.is-over {
  border-color: #d45a4c;
  box-shadow: 0 0 0 3px rgba(212, 90, 76, 0.15);
}

.chip-counter {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.chip-counter span {
  color: var(--gold);
  font-weight: 700;
}


/* ─── TONE GRID ─── */
.tone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  text-align: center;
}

.tone-card:hover {
  border-color: var(--gold-border);
  background: rgba(214,177,109,0.04);
  transform: translateY(-2px);
}

.tone-card.selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(214,177,109,0.1), rgba(214,177,109,0.03));
  box-shadow: 0 0 30px var(--gold-glow);
}

.tone-icon {
  font-size: 24px;
  color: var(--text-dim);
  transition: color var(--duration);
}

.tone-card.selected .tone-icon,
.tone-card:hover .tone-icon {
  color: var(--gold);
}

.tone-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.tone-desc {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}


/* ─── CONFIRMATION ─── */
.confirmation-content {
  text-align: center;
  padding: 20px 0;
}

.confirmation-orb {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
}

.confirmation-orb-inner {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: #150D06;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 40px var(--gold-glow);
  position: relative;
  z-index: 2;
}

.confirmation-rings {
  position: absolute;
  inset: 0;
}

.c-ring {
  position: absolute;
  inset: -10px;
  border: 1px solid #D6B16D18;
  border-radius: 28px;
  animation: cRingPulse 2.5s ease-in-out infinite;
}

.c-ring--2 {
  inset: -22px;
  border-radius: 34px;
  animation-delay: 0.5s;
}

.c-ring--3 {
  inset: -34px;
  border-radius: 42px;
  animation-delay: 1s;
}

@keyframes cRingPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.05); }
}

.confirmation-content h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 12px;
}

.confirmation-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.confirmation-text em {
  color: var(--gold-light);
  font-style: italic;
  font-family: var(--font-editorial);
  font-size: 19px;
}

.confirmation-summary {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  text-align: left;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #FFFFFF06;
}

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

.summary-key {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.summary-value {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gold-light);
  text-align: right;
  max-width: 60%;
}


/* ─── FORM NAVIGATION ─── */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #FFFFFF08;
}

.form-nav .btn {
  min-width: 160px;
}

.form-submit {
  min-width: 260px !important;
}

.form-trust {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.form-error {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--red-dim);
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}


/* ─── SUCCESS STATE ─── */
.form-success {
  text-align: center;
  padding: 60px 40px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(13,11,9,0.9), rgba(8,6,4,0.95));
  animation: successFadeIn 0.6s var(--ease-out);
}

@keyframes successFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.success-animation {
  margin-bottom: 28px;
}

.success-orb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 60px var(--gold-glow);
  animation: successPulse 2s ease-in-out infinite;
}

.success-orb span {
  font-size: 28px;
  color: #150D06;
}

@keyframes successPulse {
  0%, 100% { box-shadow: 0 0 40px var(--gold-glow); }
  50%      { box-shadow: 0 0 80px #D6B16D50; }
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 14px;
}

.form-success p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}


/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px clamp(24px, 5vw, 64px);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
}

.footer-tagline {
  font-family: var(--font-editorial);
  font-size: 14px;
  font-style: italic;
  color: var(--text-dim);
}

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

.footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  transition: color var(--duration);
}

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

.footer-copy {
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #FFFFFF08;
  margin-top: 16px;
}

.footer-copy span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}


/* ─── REVEAL ANIMATION ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-reveal-delay="5"] { transition-delay: 0.5s; }

/* Hero: animado via motion-reveal.js no carregamento */

/* ─── MIRA MOTION (landing) ─── */
.mira-orb-stage {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}

.orb-letter,
.orb-ring,
.orb-glow {
  z-index: 1;
}

.mira-flow-section {
  padding-top: 40px;
  padding-bottom: 20px;
}

.mira-flow-wrap {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 28px 20px 20px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(214, 177, 109, 0.08);
}

.mira-flow-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.mira-flow-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  line-height: 1.3;
}

.mira-flow-legend li span {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 10px;
}

.mira-flow-stage {
  width: 100%;
  min-height: 200px;
}

.mira-flow-stage svg {
  display: block;
  width: 100%;
  height: auto;
}

.layer-card--gold {
  animation: mira-card-glow 4s ease-in-out infinite;
}

@keyframes mira-card-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(214, 177, 109, 0); }
  50% { box-shadow: 0 0 32px rgba(214, 177, 109, 0.12); }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .desktop-nav { display: none; }

  .topbar {
    padding: 16px 20px;
  }

  .topbar-actions {
    gap: 8px;
  }

  .topbar .btn {
    min-height: 44px;
    padding: 0 16px;
    font-size: 10px;
  }

  .brand-mark, .brand-text { font-size: 26px; }

  .layer-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 28px;
  }

  .layer-metaphor {
    order: 3;
    max-width: 200px;
    margin: 0 auto;
  }

  .card-number {
    font-size: 48px;
  }

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

  .mira-flow-legend {
    grid-template-columns: 1fr 1fr;
  }

  .tone-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .edition-views-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .section-shell {
    padding-inline: 20px;
  }

  h1 {
    font-size: clamp(32px, 9vw, 52px);
  }

  h2 {
    font-size: clamp(32px, 8vw, 50px);
  }

  .hero {
    min-height: 90svh;
    padding-top: 100px;
  }

  .logo-orb {
    width: 100px;
    height: 100px;
    border-radius: 24px;
  }

  .orb-letter {
    font-size: 54px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .pill {
    font-size: 10px;
    padding: 10px 18px;
    letter-spacing: 0.16em;
  }

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

  .metric-card {
    padding: 28px 20px;
  }

  .metric-value {
    font-size: 42px;
  }

  .tone-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .tone-card {
    padding: 20px 12px;
  }

  .tone-name {
    font-size: 15px;
  }

  .edition-paper {
    padding: 24px 20px;
  }

  .edition-headline h3 {
    font-size: 24px;
  }

  .insight-quote {
    font-size: 20px;
    padding-left: 20px;
  }

  .progress-steps {
    gap: 4px;
  }

  .step-label {
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .form-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .form-nav .btn {
    min-width: 0;
    flex: 1;
  }

  .form-submit {
    min-width: 0 !important;
    width: 100%;
  }

  .confirmation-summary {
    padding: 16px;
  }

  .summary-row {
    flex-direction: column;
    gap: 4px;
  }

  .summary-value {
    text-align: left;
    max-width: 100%;
  }

  .chip {
    font-size: 11px;
    padding: 10px 16px;
  }

  .chip--intention {
    padding: 12px 16px;
    font-size: 12px;
  }

  .mira-flow-legend {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 30px;
  }

  .card-content h3 {
    font-size: 24px;
  }

  .tone-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Assistente de preenchimento ─── */
.assist-panel {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.assist-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.assist-panel__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.assist-panel__btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--gold);
  border: 1px solid rgba(214, 177, 109, 0.35);
  background: transparent;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.assist-panel__btn:hover:not(:disabled) {
  background: rgba(214, 177, 109, 0.1);
}

.assist-panel__btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

.assist-panel__msg {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(232, 226, 216, 0.78);
  margin: 0 0 10px;
}

.assist-panel__question {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gold);
  border: 1px solid rgba(214, 177, 109, 0.25);
  background: rgba(214, 177, 109, 0.1);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 0 0 10px;
}

.assist-panel__avoid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.assist-panel__avoid-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(212, 90, 76, 0.95);
  border: 1px solid rgba(212, 90, 76, 0.35);
  background: rgba(212, 90, 76, 0.1);
  border-radius: 8px;
  padding: 6px 10px;
}

.assist-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.assist-panel__apply {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #0a0908;
  background: var(--gold);
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

.assist-panel__use-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(232, 226, 216, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

.assist-panel__suggestion {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(232, 226, 216, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 10px 12px;
  white-space: pre-wrap;
  margin: 0 0 8px;
}

.assist-panel__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(232, 226, 216, 0.25);
  margin: 0;
}

.assist-panel__error {
  font-size: 13px;
  color: #d45a4c;
  margin: 0;
}

.chip.suggested:not(.selected),
.tone-card.suggested:not(.selected) {
  border-color: rgba(214, 177, 109, 0.45);
  box-shadow: 0 0 0 1px rgba(214, 177, 109, 0.35);
  color: var(--gold-light);
  background: rgba(214, 177, 109, 0.08);
}

.chip.avoid:not(.selected),
.tone-card.avoid:not(.selected) {
  border-color: rgba(212, 90, 76, 0.4);
  background: rgba(212, 90, 76, 0.08);
  color: rgba(212, 90, 76, 0.9);
}
