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

:root {
  --brand:       #f15a29;
  --brand-dark:  #cc4a20;
  --brand-light: #fde9e2;
  --ink:         #0F1923;
  --ink-2:       #3D4F5C;
  --ink-3:       #6B7C8A;
  --surface:     #FFFFFF;
  --surface-2:   #F6F8FA;
  --border:      #E2E8EE;
  --waze:        #33CCFF;
  --apple:       #000000;
  --google:      #4285F4;
  --radius:      14px;
  --shadow-sm:   0 1px 3px rgba(15,25,35,.06), 0 1px 2px rgba(15,25,35,.04);
  --shadow-md:   0 4px 16px rgba(15,25,35,.08), 0 2px 6px rgba(15,25,35,.06);
  --shadow-lg:   0 12px 40px rgba(15,25,35,.12), 0 4px 16px rgba(15,25,35,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
}
.logo-icon svg { width: 130px; height: auto; }
.logo-name { font-weight: 800; font-size: 1.15rem; color: var(--ink); letter-spacing: -.02em; display: none; }
.nav-cta {
  background: var(--brand);
  color: white;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: background .15s;
}
.nav-cta:hover { background: var(--brand-dark); }

/* ── Hero ── */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-visual {
  margin-right: -24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
}
h1 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 20px;
}
h1 em {
  font-style: normal;
  color: var(--brand);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background .15s, transform .1s;
  box-shadow: 0 4px 14px rgba(232,64,42,.35);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  transition: border-color .15s, background .15s;
}
.btn-secondary:hover { border-color: var(--ink-3); background: var(--surface-2); }

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-mbp {
  width: 100%;
  height: auto;
  display: block;
}
.dashboard-mock {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-bar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.r { background: #FF5F57; }
.mock-dot.y { background: #FFBD2E; }
.mock-dot.g { background: #27C93F; }
.mock-url {
  flex: 1;
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .75rem;
  color: var(--ink-3);
  margin-left: 6px;
}
.mock-body { padding: 20px; }
.mock-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.mock-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
}
.mock-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.mock-street { font-weight: 700; font-size: .85rem; }
.mock-pill {
  font-size: .68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}
.mock-pill.attiva { background: #DEF7EC; color: #0E9F6E; }
.mock-pill.futura { background: #EBF5FB; color: #1D7DB5; }
.mock-meta { font-size: .72rem; color: var(--ink-3); }
.mock-portals {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.portal-chip {
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
}
.portal-chip.waze   { background: #E6F9FF; color: #0099BB; }
.portal-chip.apple  { background: #F0F0F0; color: #333; }
.portal-chip.google { background: #EAF1FF; color: #2A5DB0; }

/* Floating badge on hero visual */
.hero-float {
  position: absolute;
  right: -20px;
  bottom: 30px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero-float-icon {
  width: 32px; height: 32px;
  background: #DEF7EC;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hero-float-icon svg { width: 16px; height: 16px; }
.hero-float-sub { font-size: .7rem; font-weight: 400; color: var(--ink-3); }

/* ── Portals strip ── */
.portals-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  padding: 20px 24px;
}
.portals-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.portals-label {
  font-size: .82rem;
  color: var(--ink-3);
  font-weight: 500;
}
.portal-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: .82rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.portal-badge svg { width: 20px; height: 20px; }
.portals-sep { color: var(--border); font-size: 1.2rem; }

/* ── Section base ── */
section { padding: 88px 24px; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── Speed section ── */
.speed-section { background: var(--ink); }
.speed-section h2 { color: white; }
.speed-section .section-tag { background: rgba(232,64,42,.2); color: #FF8070; }
.speed-section .section-lead { color: rgba(255,255,255,.65); }
.speed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
}
.speed-item {
  background: rgba(255,255,255,.04);
  padding: 36px 28px;
  transition: background .2s;
}
.speed-item:hover { background: rgba(255,255,255,.07); }
.speed-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}
.speed-num span { font-size: 1.6rem; }
.speed-desc { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.6; }
.speed-desc strong { color: white; }

/* ── Portals section ── */
.portals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portal-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.portal-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.portal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.portal-card.waze::before   { background: var(--waze); }
.portal-card.apple::before  { background: linear-gradient(90deg,#444,#000); }
.portal-card.google::before { background: linear-gradient(90deg,#4285F4,#34A853,#FBBC05,#EA4335); }
.portal-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.portal-icon svg, .portal-icon img { width: 26px; height: 26px; }
.portal-icon.waze   { background: #E6F9FF; }
.portal-icon.apple  { background: #F0F0F0; }
.portal-icon.google { background: #EAF1FF; }
.portal-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.portal-card p  { font-size: .9rem; color: var(--ink-2); line-height: 1.65; }
.portal-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 100px;
}
.portal-tag.waze   { background: #E6F9FF; color: #0099BB; }
.portal-tag.apple  { background: #F0F0F0; color: #333; }
.portal-tag.google { background: #EAF1FF; color: #2A5DB0; }

/* ── How it works ── */
.how-section { background: var(--surface-2); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100%/8);
  right: calc(100%/8);
  height: 2px;
  background: var(--border);
}
.step { padding: 0 16px; text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand);
  position: relative;
  z-index: 1;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
  cursor: default;
}
.step:hover .step-num {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  box-shadow: 0 0 0 6px var(--brand-light);
}
.step-num.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  box-shadow: 0 0 0 6px var(--brand-light);
}
.step h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.step p   { font-size: .84rem; color: var(--ink-2); line-height: 1.6; }

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow .2s;
}
.feature-card:hover { box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--brand); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-body h3 { font-size: .95rem; font-weight: 700; margin-bottom: 5px; }
.feature-body p  { font-size: .85rem; color: var(--ink-2); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { max-width: 720px; }
details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
details:first-of-type { border-top: 1px solid var(--border); }
summary {
  font-weight: 700;
  font-size: .97rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }
details p { padding-top: 12px; font-size: .9rem; color: var(--ink-2); line-height: 1.7; }

/* ── CTA ── */
.cta-section {
  background: var(--brand);
  text-align: center;
}
.cta-section h2 { color: white; }
.cta-section p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--brand);
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, transform .1s;
}
.btn-white:hover { background: #FFF5F3; transform: translateY(-1px); }
.btn-white:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* ── Contact form ── */
.contact-form {
  display: grid;
  gap: 14px;
}
.form-error-msg {
  display: none;
  font-size: .83rem;
  color: #9B1C1C;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 10px 14px;
}
.form-error-msg.visible { display: block; }
.form-success {
  max-width: 520px;
  margin: 36px auto 0;
  background: rgba(255,255,255,.13);
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 16px;
  padding: 44px 32px;
  text-align: center;
  color: white;
}
.form-success-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.form-success h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: white; }
.form-success p  { font-size: .9rem; color: rgba(255,255,255,.75); }

/* ── Footer ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 40px 24px;
  text-align: center;
  font-size: .82rem;
}
footer strong { color: rgba(255,255,255,.8); }

/* ── Hero list ── */
.hero-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-list li {
  padding-left: 26px;
  position: relative;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.5;
}
.hero-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800;
}

/* ── Phone mockups ── */
.app-screenshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  align-items: end;
  justify-items: center;
}
.phone-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.phone-frame {
  width: 220px;
  height: 476px;
  background: #111827;
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 32px 72px rgba(0,0,0,.22), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.phone-screen-img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}
.phone-label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-2);
}

/* ── How it works preview ── */
.how-section { padding-bottom: 0; }
.how-preview {
  margin: 56px -24px 0;
}
.how-preview-mask {
  overflow: hidden;
  aspect-ratio: 2000 / 658;
}
.how-preview-img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}
.preview-browser {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.preview-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
}
.preview-left {
  border-right: 1px solid var(--border);
  padding: 24px 20px;
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.preview-section-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-3);
}
.preview-pdf-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-2);
}
.preview-pdf-card svg { stroke: var(--brand); flex-shrink: 0; }
.preview-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #DEF7EC;
  color: #0E9F6E;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
}
.preview-ai-badge svg { stroke: #0E9F6E; }
.preview-right {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.preview-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.preview-field {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.preview-field-label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.preview-field-value {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}
.preview-portals-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.preview-portals-label {
  font-size: .8rem;
  color: var(--ink-3);
  font-weight: 500;
}
.preview-btn {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: default;
  width: fit-content;
}

/* ── Contact card (white card on orange background) ── */
.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
  margin: 36px auto 0;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.contact-form label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--surface-2);
  color: var(--ink);
  outline: none;
  display: block;
  transition: border-color .15s, background .15s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-3); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 3px var(--brand-light);
}
.contact-form textarea { resize: vertical; min-height: 108px; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  background: var(--ink);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  margin-top: 4px;
  transition: background .15s, transform .1s;
}
.btn-submit:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { margin-right: 0; }
  .hero-float { right: 10px; bottom: -16px; }
  .portals-grid { grid-template-columns: 1fr; }
  .app-screenshots { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .phone-frame { width: 155px; height: 335px; border-radius: 22px; padding: 8px; }
  .phone-screen-img { border-radius: 14px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .preview-body { grid-template-columns: 1fr; }
  .preview-left { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-card { padding: 28px 24px; }
}
@media (max-width: 540px) {
  .hero { padding: 56px 20px 48px; }
  section { padding: 64px 20px; }
  .steps { grid-template-columns: 1fr; }
  .portals-inner { justify-content: flex-start; }
  .app-screenshots { grid-template-columns: 1fr; }
  .phone-mockup { flex-direction: row; gap: 20px; width: 100%; }
  .phone-frame { width: 110px; height: 238px; border-radius: 16px; padding: 7px; flex-shrink: 0; }
  .phone-screen-img { border-radius: 9px; }
  .preview-field-row { grid-template-columns: 1fr; }
}

/* ── Animations ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroPop {
  from { opacity: 0; transform: scale(.82); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-content { animation: heroFadeUp  .7s cubic-bezier(.22,1,.36,1) .05s both; }
.hero-visual  { animation: heroSlideRight .7s cubic-bezier(.22,1,.36,1) .2s both; }
.hero-float   { animation: heroPop .5s cubic-bezier(.34,1.56,.64,1) .65s both; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-content, .hero-visual, .hero-float { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
