/* =============================================
   Entenda seu Contracheque
   Warm Paper — mobile-first, accessible
   Pico CSS v2 foundation + custom design layer
   ============================================= */

/* --- 1. CUSTOM PROPERTIES --- */

:root {
  /* Typography — Lexend: designed for reading proficiency */
  --pico-font-family: 'Lexend', system-ui, sans-serif;
  --pico-font-size: 106.25%;
  --pico-line-height: 1.7;
  --pico-border-radius: 1rem;
  --pico-block-spacing-vertical: 1.5rem;
  --pico-block-spacing-horizontal: 1.5rem;
  --font-display: 'Outfit', 'Lexend', system-ui, sans-serif;

  /* Warm foundation */
  --bg: #FAF7F2;
  --bg-alt: #F3EDE4;
  --surface: #FFFFFF;
  --surface-warm: #FFFDF8;
  --text: #2C2825;
  --text-soft: #5C554D;
  --text-muted: #9C948A;
  --border: #E8E0D4;
  --border-light: #F0E8DC;

  /* Accent colors */
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --teal-light: #CCFBF1;
  --amber: #D97706;
  --amber-light: #FEF3C7;
  --amber-text: #92400E;
  --rose: #E11D48;
  --rose-light: #FFE4E6;
  --rose-text: #9F1239;
  --emerald: #059669;
  --emerald-light: #D1FAE5;
  --emerald-text: #065F46;
  --blue: #2563EB;
  --blue-light: #EFF6FF;
  --blue-text: #1E40AF;

  /* Shadows — warm tones */
  --shadow-sm: 0 1px 3px rgba(44, 40, 37, 0.05), 0 1px 2px rgba(44, 40, 37, 0.03);
  --shadow-md: 0 4px 16px rgba(44, 40, 37, 0.07), 0 2px 4px rgba(44, 40, 37, 0.04);
  --shadow-lg: 0 12px 32px rgba(44, 40, 37, 0.1), 0 4px 8px rgba(44, 40, 37, 0.05);

  /* Pico color overrides */
  --pico-background-color: var(--bg);
  --pico-color: var(--text);
  --pico-muted-color: var(--text-muted);
  --pico-muted-border-color: var(--border);
  --pico-card-background-color: var(--surface);
  --pico-card-sectioning-background-color: var(--surface-warm);
  --pico-primary: var(--teal);
  --pico-primary-hover: var(--teal-dark);
  --pico-card-box-shadow: var(--shadow-md);
}

html {
  scroll-padding-top: 5rem;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
}

/* --- 2. LAYOUT --- */

.container {
  max-width: 660px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

section {
  margin-bottom: 3rem;
}

/* --- 3. NAV --- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* Hamburger button */
.nav-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0.4rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: border-color 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--teal);
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Collapsible nav menu */
.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 1.25rem 1.25rem;
  z-index: 99;
}

.nav-menu.open {
  display: block;
}

.nav-group {
  margin-bottom: 0.75rem;
}

.nav-group:last-child {
  margin-bottom: 0;
}

.nav-group-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem 0.25rem;
}

.nav-group a {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.15s ease;
}

.nav-group a:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.nav-group a.active {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 600;
}

/* --- 3b. BREADCRUMB --- */

.breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.3rem;
}

/* --- 3c. HOME PAGE --- */

.home-topics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.topic-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

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

.topic-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topic-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.topic-icon-teal { background: var(--teal-light); color: var(--teal-dark); }
.topic-icon-amber { background: var(--amber-light); color: var(--amber); }
.topic-icon-blue { background: var(--blue-light); color: var(--blue); }

.topic-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.topic-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border-light);
  transition: all 0.15s ease;
}

.topic-links a:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
}

.topic-links a .arrow {
  font-size: 1rem;
  color: var(--text-muted);
}

/* --- 4. HERO --- */

.hero {
  text-align: center;
  padding: 2.5rem 0 2rem;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.hero p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Hero illustration */
.hero-image {
  margin: 1.5rem auto 0;
  max-width: 320px;
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}

/* --- 5. SECTION HEADERS --- */

.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

section > h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

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

/* --- 6. TIMELINE --- */

.timeline {
  position: relative;
  padding-left: 3.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.0625rem;
  top: 2.5rem;
  bottom: 2.5rem;
  width: 4px;
  background: linear-gradient(to bottom, var(--teal), var(--emerald));
  border-radius: 4px;
}

.timeline-step {
  position: relative;
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.timeline-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step-number {
  position: absolute;
  left: -3.5rem;
  top: 1.5rem;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: white;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.step-number-1 { background: var(--teal); }
.step-number-2 { background: var(--emerald); }

.timeline-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.quando {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.timeline-step > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* --- 7. CALLOUT BOXES --- */

.callout {
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border-left: 4px solid;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.callout-warning {
  background: var(--amber-light);
  border-color: var(--amber);
  color: var(--amber-text);
}

.callout-info {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue-text);
}

.callout-danger {
  background: var(--rose-light);
  border-color: var(--rose);
  color: var(--rose-text);
}

.callout-success {
  background: var(--emerald-light);
  border-color: var(--emerald);
  color: var(--emerald-text);
}

/* --- 8. FLOW DIAGRAM (replaces Mermaid) --- */

.flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}

.flow-node {
  width: 100%;
  max-width: 340px;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  border-left: 4px solid;
  text-align: left;
}

.flow-node-teal { border-left-color: var(--teal); }
.flow-node-amber { border-left-color: var(--amber); }
.flow-node-emerald { border-left-color: var(--emerald); }

.flow-node-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.flow-node-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.15rem 0;
  color: var(--text-muted);
}

.flow-connector::before,
.flow-connector::after {
  content: '';
  width: 2px;
  height: 0.6rem;
  background: var(--border);
}

.flow-connector-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--bg);
  padding: 0.1rem 0.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.flow-outcomes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  width: 100%;
  max-width: 340px;
}

.flow-outcome {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.flow-outcome-bad {
  background: var(--rose-light);
  color: var(--rose-text);
  border: 1px solid rgba(225, 29, 72, 0.15);
}

.flow-outcome-good {
  background: var(--emerald-light);
  color: var(--emerald-text);
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.flow-outcome-neutral {
  background: var(--bg-alt);
  color: var(--text-soft);
  border: 1px solid var(--border);
}

.flow-outcome-icon {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.15rem;
}

/* --- 9. SCENARIO CARDS --- */

.scenario-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.scenario-card {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.scenario-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.scenario-bad h3 { color: var(--rose); }
.scenario-good h3 { color: var(--emerald); }

.scenario-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.resultado {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 0.625rem;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
}

.resultado-bad {
  background: var(--rose-light);
  color: var(--rose-text);
}

.resultado-good {
  background: var(--emerald-light);
  color: var(--emerald-text);
}

/* --- 10. CONTRACHEQUE-STYLE DATA DISPLAY --- */

.contracheque {
  background: var(--surface-warm);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  font-variant-numeric: tabular-nums;
}

.contracheque-header {
  background: var(--bg-alt);
  padding: 0.6rem 1rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border);
}

.contracheque-body {
  padding: 0.75rem 1rem;
}

.cq-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.3rem 0;
  font-size: 0.85rem;
  color: var(--text-soft);
  border-bottom: 1px dotted var(--border-light);
  gap: 0.75rem;
}

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

.cq-row .code {
  font-size: 0.65rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.cq-row .value {
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.cq-row.total {
  border-bottom: none;
  border-top: 2px solid var(--border);
  margin-top: 0.3rem;
  padding-top: 0.5rem;
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
}

.cq-row.text-red .value { color: var(--rose); }
.cq-row.text-green .value { color: var(--emerald); }

.cq-row.note {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-bottom: none;
  font-style: italic;
}

.cq-row.divider {
  border-top: 1px dashed var(--border);
  margin-top: 0.4rem;
  padding-top: 0.5rem;
}

/* Data comparison layout */
.data-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.data-compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  color: var(--text-muted);
  font-size: 1.25rem;
}

/* --- 11. BADGES --- */

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.badge-red {
  background: var(--rose-light);
  color: var(--rose);
}

.badge-green {
  background: var(--emerald-light);
  color: var(--emerald);
}

/* --- 12. RESULT BOXES --- */

.result-box {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.65;
}

.result-box p {
  margin-bottom: 0.5rem;
}

.result-box p:last-child {
  margin-bottom: 0;
}

.result-box-bad {
  background: var(--rose-light);
  border: 1px dashed rgba(225, 29, 72, 0.25);
  color: var(--rose-text);
}

.result-box-good {
  background: var(--emerald-light);
  border: 1px dashed rgba(5, 150, 105, 0.25);
  color: var(--emerald-text);
}

/* --- 13. EXAMPLE CARDS --- */

.example-card {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.example-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.example-reveal {
  background: var(--bg-alt);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-top: 1.25rem;
}

.example-reveal-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

/* --- 14. TABLES --- */

article table {
  font-size: 0.85rem;
}

table .rub-code {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

tr.highlight-red {
  background: var(--rose-light) !important;
}

tr.highlight-red td {
  color: var(--rose-text);
  font-weight: 600;
}

tr.highlight-yellow {
  background: var(--amber-light) !important;
}

tr.highlight-yellow td {
  color: var(--amber-text);
  font-weight: 600;
}

tr.table-separator td {
  padding: 0.1rem;
  background: var(--border);
}

/* --- 15. FAQ / DETAILS --- */

.faq-list details {
  background: var(--surface);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-list details:hover {
  box-shadow: var(--shadow-md);
}

.faq-list details[open] {
  box-shadow: var(--shadow-md);
}

.faq-list summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
}

/* --- 16. PAGE LINKS --- */

.page-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.page-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.page-link:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--teal);
}

.page-link-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.page-link-icon-teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.page-link-icon-amber {
  background: var(--amber-light);
  color: var(--amber);
}

.page-link-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.page-link-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.page-link-arrow {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --- 17. FOOTER --- */

.site-footer {
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.site-footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.65;
}

/* --- 18. ANIMATIONS --- */

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Hero entrance */
.hero-badge { animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
.hero h1    { animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.hero p     { animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }

/* --- 19. RESPONSIVE --- */

@media (min-width: 480px) {
  .flow-outcomes {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 576px) {
  .scenario-grid {
    grid-template-columns: 1fr 1fr;
  }

  .data-compare {
    grid-template-columns: 1fr auto 1fr;
  }

  .page-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .data-compare-arrow {
    transform: rotate(90deg);
  }

  .hero h1 {
    font-size: 1.45rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-badge,
  .hero h1,
  .hero p {
    animation: none;
  }
}
