/* =========================================================
   RotaPedágios Brasil — Design System
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* Palette */
  --bg-deep:        #07090F;
  --bg:             #0A0E18;
  --bg-soft:        #0F1422;
  --surface:        #141A2B;
  --surface-2:      #1C2438;
  --line:           rgba(255, 255, 255, 0.08);
  --line-strong:    rgba(255, 255, 255, 0.14);

  --text:           #ECEEF3;
  --text-soft:      #B6BAC6;
  --text-mute:      #7C8298;
  --text-dim:       #565B6D;

  --amber:          #F59E0B;
  --amber-bright:   #FFB128;
  --amber-deep:     #B7740B;
  --rust:           #E2562C;

  --blue:           #4C8DFF;
  --blue-bright:    #6FA5FF;
  --blue-deep:      #1F4FBE;

  --teal:           #38D6C5;

  /* Type scale */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-sans:    'Geist', system-ui, -apple-system, sans-serif;
  --font-mono:    'Geist Mono', 'SFMono-Regular', monospace;

  /* Spacing */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.04) inset, 0 12px 40px -16px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 0 1px rgba(245, 158, 11, 0.18), 0 12px 60px -20px rgba(245, 158, 11, 0.4);
}

/* =========================================================
   Reset & Base
   ========================================================= */

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(245, 158, 11, 0.06), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(76, 141, 255, 0.05), transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--amber); color: #0A0E18; }

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

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

button { font: inherit; cursor: pointer; }

/* =========================================================
   Layout
   ========================================================= */

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

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

.section--tight { padding: 80px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--amber);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 24px;
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

h2 em {
  font-style: italic;
  color: var(--amber);
  font-weight: 300;
}

h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

h4 {
  font-size: 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 8px;
}

p { margin: 0 0 16px; color: var(--text-soft); }

.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text-soft);
  max-width: 640px;
  line-height: 1.55;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
  max-width: 820px;
}

@media (min-width: 900px) {
  .section-head--split {
    grid-template-columns: 1.1fr 1fr;
    align-items: end;
    max-width: 100%;
    gap: 60px;
  }
  .section-head--split .lead { padding-bottom: 8px; }
}

/* =========================================================
   Top Bar / Nav
   ========================================================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(10, 14, 24, 0.72);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--rust) 100%);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 4px 18px -4px rgba(245, 158, 11, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

.brand__mark svg { width: 20px; height: 20px; color: #0A0E18; }

.brand__name b { font-weight: 600; }
.brand__name span { color: var(--text-mute); font-weight: 400; font-family: var(--font-sans); font-size: 13px; margin-left: 4px; letter-spacing: 0; }

.nav {
  display: none;
  gap: 32px;
  align-items: center;
}

@media (min-width: 880px) {
  .nav { display: flex; }
}

.nav a {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 450;
  transition: color 0.2s ease;
  position: relative;
}

.nav a:hover { color: var(--text); }

.nav a.active { color: var(--amber); }

.btn-menu {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  border-radius: 10px;
}

@media (min-width: 880px) { .btn-menu { display: none; } }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 28px 24px;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 24, 0.95);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--text-soft);
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--amber);
  color: #0A0E18;
  box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.6);
}

.btn--primary:hover { background: var(--amber-bright); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

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

.btn--link {
  background: transparent;
  padding: 8px 0;
  border-radius: 0;
  color: var(--amber);
  border-bottom: 1px solid transparent;
}
.btn--link:hover { border-color: var(--amber); transform: none; }

.btn svg { width: 16px; height: 16px; }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(closest-side, rgba(245, 158, 11, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 32px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.hero__tagline b {
  background: var(--amber);
  color: #0A0E18;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero__sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-soft);
  max-width: 620px;
  line-height: 1.55;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__meta {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

@media (min-width: 760px) {
  .hero__meta { grid-template-columns: repeat(4, 1fr); }
}

.hero__meta-cell {
  background: rgba(10, 14, 24, 0.6);
  padding: 24px 22px;
}

.hero__meta-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__meta-num sup { font-size: 16px; vertical-align: super; color: var(--amber); font-family: var(--font-sans); font-weight: 500; }

.hero__meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}

/* =========================================================
   Cards
   ========================================================= */

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .cards--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .cards--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  position: relative;
  padding: 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at var(--mx, 50%) 0%, rgba(245, 158, 11, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover { border-color: var(--line-strong); }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.card__icon svg { width: 22px; height: 22px; }

.card__icon--blue {
  background: rgba(76, 141, 255, 0.12);
  color: var(--blue-bright);
  border-color: rgba(76, 141, 255, 0.2);
}

.card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.card p { color: var(--text-mute); font-size: 15px; margin: 0; line-height: 1.6; }

/* Card variants */

.card--featured {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--bg-soft) 100%);
  border-color: var(--line-strong);
}

.card--region {
  padding: 28px;
}

.card--region .region-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}

.card--region ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px dashed var(--line);
}

.card--region li {
  padding: 8px 0;
  color: var(--text-soft);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
}

.card--region li span { color: var(--text-dim); font-size: 12px; }

/* =========================================================
   Free Flow Section
   ========================================================= */

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

@media (min-width: 980px) {
  .freeflow { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}

.freeflow__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-deep) 100%);
  overflow: hidden;
  padding: 28px;
}

.freeflow__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.freeflow__visual svg { width: 100%; height: 100%; position: relative; z-index: 1; }

.freeflow__points {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.freeflow__points li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.freeflow__points li:last-child { border-bottom: 0; }

.freeflow__num {
  font-family: var(--font-mono);
  color: var(--amber);
  font-size: 13px;
  letter-spacing: 0.06em;
  min-width: 36px;
  padding-top: 2px;
}

.freeflow__points b {
  display: block;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 16px;
}

.freeflow__points p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-mute);
  line-height: 1.55;
}

/* =========================================================
   Tech Section
   ========================================================= */

.tech {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(600px 400px at 100% 0%, rgba(76, 141, 255, 0.08), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(245, 158, 11, 0.05), transparent 60%),
    var(--bg-soft);
  padding: 60px;
  overflow: hidden;
}

@media (max-width: 700px) {
  .tech { padding: 36px 28px; }
}

.tech__scan {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(180deg, transparent, transparent 4px, rgba(255,255,255,0.012) 4px, rgba(255,255,255,0.012) 5px);
  pointer-events: none;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.tech-item {
  background: var(--bg-soft);
  padding: 28px 24px;
  transition: background 0.3s ease;
}

.tech-item:hover { background: var(--surface); }

.tech-item__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tech-item__head svg { width: 18px; height: 18px; color: var(--blue-bright); }

.tech-item h4 { margin: 0; }

.tech-item p { font-size: 14px; margin: 0; color: var(--text-mute); }

/* =========================================================
   Tips list
   ========================================================= */

.tips {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

@media (min-width: 720px) { .tips { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .tips { grid-template-columns: repeat(3, 1fr); } }

.tip {
  background: var(--bg-soft);
  padding: 32px;
  transition: background 0.3s ease;
  position: relative;
}

.tip:hover { background: var(--surface); }

.tip__num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.tip h4 { margin-bottom: 10px; }
.tip p { color: var(--text-mute); font-size: 14.5px; margin: 0; line-height: 1.6; }

/* =========================================================
   FAQ
   ========================================================= */

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

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.faq__q:hover { color: var(--amber); }

.faq__q-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.faq__q-icon svg { width: 14px; height: 14px; transition: transform 0.3s ease; }

.faq__item.open .faq__q-icon { background: var(--amber); border-color: var(--amber); color: #0A0E18; }
.faq__item.open .faq__q-icon svg { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__a-inner {
  padding: 0 0 28px;
  max-width: 720px;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.7;
}

.faq__item.open .faq__a { max-height: 400px; }

/* =========================================================
   Footer
   ========================================================= */

.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  background: var(--bg-deep);
  position: relative;
}

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

@media (min-width: 760px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; }
}

.footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 20px;
  font-weight: 500;
}

.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 6px 0; }
.footer li a {
  font-size: 14.5px;
  color: var(--text-soft);
  transition: color 0.2s ease;
}
.footer li a:hover { color: var(--amber); }

.footer__brand p {
  font-size: 14.5px;
  color: var(--text-mute);
  max-width: 360px;
  margin-top: 20px;
  line-height: 1.6;
}

.legal {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.legal__disclaimer {
  font-size: 13px;
  color: var(--text-mute);
  max-width: 720px;
  line-height: 1.6;
  font-family: var(--font-mono);
  letter-spacing: 0.005em;
}

.legal__disclaimer b { color: var(--text-soft); font-weight: 500; }

.legal__copy {
  font-size: 12.5px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* =========================================================
   Page header (institutional pages)
   ========================================================= */

.pagehead {
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.pagehead__crumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 24px;
}

.pagehead__crumb a { color: var(--amber); }

.pagehead h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.pagehead h1 em { font-style: italic; color: var(--amber); }

.pagehead p { max-width: 640px; font-size: 17px; color: var(--text-soft); }

/* =========================================================
   Long-form content (legal pages)
   ========================================================= */

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 0;
}

.prose h2 {
  font-size: clamp(26px, 2.6vw, 32px);
  margin: 56px 0 16px;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: 20px;
  font-family: var(--font-sans);
  font-weight: 600;
  margin: 32px 0 10px;
  letter-spacing: -0.005em;
}

.prose p, .prose li {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.75;
}

.prose ul, .prose ol { padding-left: 22px; margin: 16px 0 24px; }
.prose li { padding: 4px 0; }

.prose strong { color: var(--text); font-weight: 600; }

.prose .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}

/* =========================================================
   Contact form (visual only — non-functional, no payment)
   ========================================================= */

.contact-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
  padding: 80px 0;
}

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

.contact-info h3 { margin-top: 0; }

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}

.contact-info li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-info li:last-child { border-bottom: 1px solid var(--line); }

.contact-info .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: block;
  margin-bottom: 4px;
}

.contact-info .value { color: var(--text); font-size: 15px; }

.form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}

.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color 0.2s ease;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--amber);
}

.field textarea { min-height: 140px; resize: vertical; }

.form__note {
  font-size: 12.5px;
  color: var(--text-mute);
  margin-top: 16px;
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* =========================================================
   Disclaimer banner (sitewide)
   ========================================================= */

.notice {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--r-md);
  padding: 18px 22px;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.6;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.notice svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }

.notice b { color: var(--text); font-weight: 600; }

/* =========================================================
   Animations
   ========================================================= */

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

/* Subtle entrance — CSS-only, robust */

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

.hero__content {
  animation: riseIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero__meta {
  animation: riseIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s both;
}

@keyframes dashFlow {
  to { stroke-dashoffset: -200; }
}

.flow-dash { animation: dashFlow 4s linear infinite; }

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.pulse { animation: pulse 2.2s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
