/* Fenix IA Solutions — landing styles */

:root {
  --bg: #0a0b0d;
  --bg-2: #111316;
  --bg-3: #16191d;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --text: #f1f3f5;
  --text-dim: #b8bdc4;
  --text-faint: #8b9098;
  --accent: #ff5722;
  --steel: #c5cad1;
  --steel-dark: #6b7280;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body, 'Inter', -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display, 'Space Grotesk', system-ui, sans-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ───── NAV ───── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 220ms ease;
  background: linear-gradient(180deg, rgba(10,11,13,0.6), transparent);
  backdrop-filter: blur(0);
}
.nav--scrolled {
  background: rgba(10,11,13,0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.nav__sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-faint);
  margin-top: 4px;
}
.nav__links {
  display: flex; gap: 32px;
  margin-left: auto;
  font-size: 14px;
  color: var(--text-dim);
}
.nav__links a { transition: color 160ms; }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 160ms;
}
.nav__cta:hover { transform: translateX(2px); }

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 180ms ease;
  cursor: pointer;
  font-family: inherit;
}
.btn--primary {
  color: #0a0b0d;
  border: none;
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px currentColor;
  filter: brightness(1.06);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--text); background: rgba(255,255,255,0.03); }
.btn--xl { padding: 18px 32px; font-size: 16px; }

/* ───── SECTION CHROME ───── */
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.section__bar { width: 32px; height: 2px; }
.section__title {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  margin-bottom: 24px;
  text-wrap: balance;
}
.section__lede {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.6;
  text-wrap: pretty;
}

/* ───── HERO common ───── */
.hero {
  position: relative;
  padding: 140px 32px 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__grid-bg {
  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: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero__sep { color: var(--text-faint); }
.hero__title {
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero__accent { font-style: italic; font-weight: 500; }
.hero__lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 0 40px 0;
  text-wrap: pretty;
}
.hero__cta-row {
  display: flex; gap: 14px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.hero__meta {
  display: flex;
  align-items: stretch;
  gap: 28px;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__meta-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__meta-label {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.hero__meta-divider {
  width: 1px;
  background: var(--line);
}

/* hero visual — eagle shield */
.hero__visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__shield {
  width: 78%;
  height: auto;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  filter: contrast(1.05) saturate(0.9);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero__shield-glow {
  position: absolute;
  inset: -10%;
  z-index: 1;
  filter: blur(40px);
}
.hero__rings {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: ring-rotate 60s linear infinite;
}
.hero__ring--1 { inset: -5%; }
.hero__ring--2 { inset: -15%; opacity: 0.5; animation-duration: 90s; animation-direction: reverse; }
.hero__ring--3 { inset: -25%; opacity: 0.25; animation-duration: 120s; }
@keyframes ring-rotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* hero — terminal variant */
.hero__inner--terminal {
  grid-template-columns: 1fr;
  max-width: 960px;
  text-align: left;
}
.hero__title--terminal {
  font-size: clamp(40px, 5vw, 64px);
}
.terminal {
  background: #07080a;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 32px 0 40px;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.8);
  font-family: var(--font-mono);
  font-size: 14px;
  max-width: 720px;
}
.terminal__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #101216;
  border-bottom: 1px solid var(--line);
}
.terminal__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.terminal__dot--r { background: #ff5f56; }
.terminal__dot--y { background: #ffbd2e; }
.terminal__dot--g { background: #27c93f; }
.terminal__title {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-faint);
}
.terminal__body {
  padding: 18px 20px;
  line-height: 1.7;
  color: var(--text);
}
.terminal__prompt { font-weight: 600; }
.terminal__sep { color: var(--text-faint); margin: 0 6px; }
.terminal__cmd { color: var(--text); }
.terminal__caret {
  display: inline-block;
  width: 8px; height: 16px;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.terminal__line { white-space: pre-wrap; }
.terminal__line--out { color: var(--text-dim); padding-left: 0; }

/* hero — bold variant */
.hero__bold-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__ember {
  position: absolute;
  inset: 0;
}
.hero__inner--bold {
  display: block;
  max-width: 1400px;
}
.hero__title--bold {
  font-size: clamp(64px, 11vw, 180px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin: 32px 0 48px;
}
.hero__line { display: block; }
.hero__line--accent { font-style: italic; font-weight: 500; }
.hero__bold-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.hero__lede--bold { font-size: 20px; max-width: 540px; }
.hero__bold-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero__bold-note { font-size: 13px; color: var(--text-faint); font-family: var(--font-mono); }
.hero__marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.hero__marquee-track {
  display: flex;
  align-items: center;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  width: max-content;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.marquee__copy {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(var(--marquee-shift, -100%)); }
}

/* ───── SERVICES ───── */
.services {
  padding: 140px 32px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.services__head { max-width: 720px; margin-bottom: 72px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--bg-2);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 220ms ease;
  position: relative;
}
.service-card:hover { background: var(--bg-3); }
.service-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.service-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}
.service-card__title {
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.service-card__desc {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.55;
}
.service-card__bullets {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.service-card__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}
.service-card__bullet-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ───── PROCESS ───── */
.process {
  padding: 100px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.process__head { margin-bottom: 64px; max-width: 720px; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process__step {
  position: relative;
  padding-top: 56px;
}
.process__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
}
.process__line {
  position: absolute;
  top: 24px;
  left: 80px;
  right: -32px;
  height: 1px;
}
.process__t {
  font-size: 20px;
  margin: 0 0 10px;
}
.process__d {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ───── CONTACT ───── */
.contact {
  padding: 120px 32px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
}
.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: stretch;
}
.contact__left { display: flex; flex-direction: column; }
.contact__left .section__title { margin-bottom: 24px; }
.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 32px;
}
.contact__channel {
  flex: 1;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,0.015);
  transition: all 180ms;
}
a.contact__channel:hover {
  border-color: var(--line-2);
  transform: translateX(2px);
}
.contact__channel-label {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact__channel-value {
  font-size: 15px;
  margin-top: 2px;
}

/* form */
.contact__form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--text-dim);
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.field__optional { color: var(--text-faint); font-size: 11px; }
.field__error { color: #ff6b6b; font-size: 11px; margin-left: auto; }
.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  transition: border-color 160ms, background 160ms;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--text-dim);
  background: var(--bg-3);
}
.field--error input,
.field--error textarea { border-color: #ff6b6b80; }

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text-dim);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  transition: all 160ms;
}
.chip:hover { border-color: var(--line-2); color: var(--text); }
.chip--on { font-weight: 500; }

.contact__submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.contact__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
}
.contact__check input { accent-color: var(--accent); }
.contact__check a { text-decoration: underline; text-decoration-color: var(--text-faint); }

.contact__success {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 56px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact__success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__success h3 { font-size: 26px; }
.contact__success p { color: var(--text-dim); margin: 0; max-width: 420px; }

/* ───── FOOTER ───── */
.footer {
  background: #06070a;
  border-top: 1px solid var(--line);
  padding: 0 32px;
}
.footer__big {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}
.footer__big-text {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.footer__cols {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer__col h4 {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a { color: var(--text-dim); transition: color 140ms; font-size: 14.5px; }
.footer__col a:hover { color: var(--text); }
.footer__contact { color: var(--text-dim); font-size: 14.5px; }
.footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer__logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
}
.footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.footer__tagline { font-size: 10px; color: var(--text-faint); margin-top: 4px; letter-spacing: 0.04em; }
.footer__about { color: var(--text-dim); font-size: 14px; line-height: 1.6; max-width: 380px; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 160ms;
}
.footer__social a:hover { color: var(--text); border-color: var(--line-2); }
.footer__base {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.footer__legal a:hover { color: var(--text); }

/* ───── RESPONSIVE ───── */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .hero__bold-row { grid-template-columns: 1fr; gap: 32px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__line { display: none; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__big { flex-direction: column; align-items: flex-start; padding: 64px 0; }
  .nav__links { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 120px 20px 80px; }
  .hero__meta { flex-direction: column; gap: 18px; }
  .hero__meta-divider { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .footer__cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__col h4 { font-size: 11px; margin-bottom: 14px; }
  .footer__col a, .footer__contact { font-size: 13px; }
  .footer__col ul { gap: 8px; }
  .hero { padding: 76px 20px 48px; }
  .services { padding: 72px 20px 56px; }
  .process { padding: 56px 20px; }
  .contact { padding: 64px 20px; }
  .footer__big { padding: 48px 0; }
  .footer__cols { padding: 40px 0; }
  .footer { padding: 0 20px; }

  /* nav: hide secondary text, keep logo + CTA */
  .nav__inner { padding: 0 18px; gap: 12px; }
  .nav__sub { display: none; }
  .nav__cta { padding: 8px 14px; font-size: 12px; }

  /* hero bold: keep title controllable on tiny screens */
  .hero__title--bold { font-size: clamp(40px, 12vw, 72px) !important; line-height: 0.95; word-break: break-word; overflow-wrap: anywhere; hyphens: auto; }
  .hero__lede--bold { font-size: 16px; }
  .hero__bold-cta .btn--xl { width: 100%; justify-content: center; }

  /* footer big */
  .footer__big-text { font-size: clamp(32px, 9vw, 56px); }
  .footer__big { gap: 24px; }
  .footer__base { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer__legal { flex-wrap: nowrap; gap: 12px; font-size: 11.5px; white-space: nowrap; }
  .footer__legal > span:first-child { white-space: normal; flex: 1 1 100%; }
  .footer__legal > span:nth-child(2) { display: none; }
  .footer__made { display: none; }
  .footer__cif { display: none; }

  /* contact form padding */
  .contact__form { padding: 24px 20px; }
  .contact__channel { padding: 14px 14px; }

  /* services title sizing */
  .section__title { font-size: clamp(28px, 7.5vw, 40px); word-break: break-word; }

  /* legal pages */
  .shell-nav__inner { padding: 0 18px; gap: 12px; }
  .shell-nav__links { display: none; }

  /* contact form: hide phone country prefix overflow */
  .field input, .field textarea { font-size: 16px; } /* prevent iOS zoom */
}

@media (max-width: 380px) {
  .hero__title--bold { font-size: 38px !important; }
  .nav__name { font-size: 13px; }
}
