/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #0f172a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  --blue:       #2563eb;
  --blue-dark:  #1d4ed8;
  --blue-light: #3b82f6;
  --blue-50:    #eff6ff;
  --blue-100:   #dbeafe;
  --navy:       #0f172a;
  --navy-2:     #1e293b;
  --slate:      #334155;
  --gray:       #64748b;
  --gray-light: #94a3b8;
  --border:     #e2e8f0;
  --bg-soft:    #f8fafc;
  --green:      #16a34a;
  --green-50:   #f0fdf4;
  --r4:  4px;
  --r8:  8px;
  --r12: 12px;
  --r16: 16px;
  --r24: 24px;
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 68px;
  background: rgba(15,23,42,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center;
}
.nav__inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-size: 1.4rem; font-weight: 800;
  letter-spacing: -0.5px; display: flex; gap: 1px;
}
.nav__logo .pc   { color: #60a5fa; }
.nav__logo .trek { color: #fff; }
.nav__links {
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav__links a {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.6);
  padding: 7px 14px; border-radius: var(--r8);
  transition: color .15s, background .15s;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav__links .cta {
  background: var(--blue); color: #fff !important;
  font-weight: 600; padding: 8px 20px !important; border-radius: var(--r8);
  transition: background .15s;
}
.nav__links .cta:hover { background: var(--blue-dark) !important; }
@media (max-width: 860px) {
  .nav__links .cta { transition: background .15s; }
  .nav__links .cta:hover { transform: none; }
  .nav__links a:hover { transform: none; }
}
.nav__burger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav__burger span {
  width: 22px; height: 2px; background: rgba(255,255,255,.7);
  border-radius: 2px; transition: .2s;
}
@media (max-width: 860px) {
  .nav__burger { display: flex; }
  .nav__links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--navy-2); padding: 8px 16px 16px; gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav__links.open { display: flex; }
  .nav__links li { display: block; }
  .nav__links a {
    display: block;
    padding: 12px 14px !important;
    border-radius: 6px;
    transform: none !important;
    transition: background .15s, color .15s !important;
    margin-bottom: 2px;
  }
  .nav__links .cta {
    display: block;
    margin-top: 8px;
    margin-bottom: 0;
    text-align: center;
    transform: none !important;
    transition: background .15s !important;
  }
  .nav__links .cta:hover {
    transform: none !important;
  }
}

/* ══════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════ */
.breadcrumb {
  background: var(--navy-2); border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 10px 32px; margin-top: 68px;
}
.breadcrumb__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.breadcrumb__inner a { color: rgba(255,255,255,.45); transition: color .15s; }
.breadcrumb__inner a:hover { color: rgba(255,255,255,.8); }
.breadcrumb__inner .sep { opacity: .3; }
.breadcrumb__inner .current { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
/* Subtle grid pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
/* Blue glow top right */
.hero::after {
  content: '';
  position: absolute; top: -200px; right: -150px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 72px 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.hero__text {
  padding-bottom: 56px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(59,130,246,.25);
  color: #93c5fd;
  font-size: .75rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero__eyebrow-dot { width: 6px; height: 6px; background: #60a5fa; border-radius: 50%; }
.hero__h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 24px;
}
.hero__h1 em { font-style: normal; color: #60a5fa; }
.hero__sub {
  font-size: 1.1rem; font-weight: 400;
  color: rgba(255,255,255,.55);
  line-height: 1.75; max-width: 480px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 40px;
}
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: inherit; font-size: .95rem; font-weight: 600;
  padding: 13px 28px; border-radius: var(--r8); border: none;
  cursor: pointer; transition: all .18s; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; fill: currentColor; }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.4); }
.btn--ghost {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn--ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.4); }
.btn--blue-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn--blue-outline:hover { background: var(--blue-50); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: #15803d; transform: translateY(-2px); }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 6px 20px;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.4);
}
.hero__trust-item svg { width: 14px; height: 14px; fill: #4ade80; flex-shrink: 0; }

/* Hero image — centered, natural proportions, no cropping */
.hero__img-wrap {
  align-self: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__badge {
  position: absolute; top: 12px; right: 12px; left: auto; z-index: 2;
  background: var(--blue); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .4px;
  padding: 5px 14px; border-radius: 100px;
}
.hero__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  /* No border-radius, no object-fit, no height constraint */
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    gap: 32px;
  }
  .hero__text { padding-bottom: 0; }
  .hero__img-wrap { width: 100%; padding-bottom: 32px; }
  .hero__img-wrap img { max-width: 480px; margin: 0 auto; }
}

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
}
.trust-bar__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 36px;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 8px;
  font-size: .87rem; font-weight: 600; color: var(--slate);
}
.trust-bar__item svg { width: 16px; height: 16px; fill: var(--green); flex-shrink: 0; }

/* ══════════════════════════════════════════
   LAYOUT PRIMITIVES
══════════════════════════════════════════ */
.section { padding: 64px 32px; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); }
.wrap { max-width: 1280px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.section-tag--light { color: #60a5fa; }
.section-h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -1px; color: #0f172a;
  margin-bottom: 16px;
}
.section-h2--light { color: #fff; }
.section-p {
  font-size: 1.05rem; color: var(--gray);
  line-height: 1.75; max-width: 580px;
}
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ══════════════════════════════════════════
   FEATURE SPLIT LAYOUT
   Image always natural size, no distortion
══════════════════════════════════════════ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split--flip .feature-split__img { order: -1; }

.feature-split__img img {
  width: 100%;
  height: auto;
  display: block;
  /* No border-radius — clean, sharp edges */
}

.feature-split__text .section-p { margin-bottom: 32px; }

@media (max-width: 860px) {
  .feature-split { grid-template-columns: 1fr; gap: 36px; }
  .feature-split--flip .feature-split__img { order: 0; }
}

/* ══════════════════════════════════════════
   CHECKLIST
══════════════════════════════════════════ */
.checklist {
  list-style: none;
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 8px;
}
.checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 1rem; color: var(--slate); line-height: 1.6;
}
.checklist__icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.checklist__icon--blue { background: var(--blue-50); }
.checklist__icon--blue svg { fill: var(--blue); }
.checklist__icon--green { background: var(--green-50); }
.checklist__icon--green svg { fill: var(--green); }
.checklist__icon svg { width: 14px; height: 14px; }
.checklist li strong { color: #0f172a; font-weight: 700; }

/* ══════════════════════════════════════════
   CAPABILITY CARDS
══════════════════════════════════════════ */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.cap-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.cap-card:hover {
  box-shadow: 0 8px 32px rgba(15,23,42,.08);
  transform: translateY(-4px);
  border-color: var(--blue-100);
}
.cap-icon {
  width: 52px; height: 52px; border-radius: var(--r12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.cap-icon svg { width: 24px; height: 24px; }
.cap-icon--blue   { background: var(--blue-50);  } .cap-icon--blue   svg { fill: var(--blue); }
.cap-icon--teal   { background: #f0fdfa; }         .cap-icon--teal   svg { fill: #0d9488; }
.cap-icon--amber  { background: #fffbeb; }         .cap-icon--amber  svg { fill: #d97706; }
.cap-icon--purple { background: #faf5ff; }         .cap-icon--purple svg { fill: #7c3aed; }
.cap-icon--red    { background: #fef2f2; }         .cap-icon--red    svg { fill: #dc2626; }
.cap-icon--green  { background: var(--green-50); } .cap-icon--green  svg { fill: var(--green); }
.cap-card h4 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.cap-card p  { font-size: .92rem; color: var(--gray); line-height: 1.65; }
@media (max-width: 860px) { .caps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .caps-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   SAFETY PANEL
══════════════════════════════════════════ */
.safety {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r24);
  padding: 52px 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
}
.safety__icon {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: var(--r12);
  background: rgba(37,99,235,.2);
  border: 1px solid rgba(59,130,246,.2);
  display: flex; align-items: center; justify-content: center;
}
.safety__icon svg { width: 28px; height: 28px; fill: #60a5fa; }
.safety h3 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -.4px; }
.safety > div > p { font-size: 1rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 24px; }
.safety__list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px;
}
.safety__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .92rem; color: rgba(255,255,255,.65); font-weight: 500;
}
.safety__list li svg { width: 15px; height: 15px; fill: #4ade80; flex-shrink: 0; }
@media (max-width: 700px) {
  .safety { grid-template-columns: 1fr; padding: 32px 28px; }
  .safety__list { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.step:hover { box-shadow: 0 8px 32px rgba(15,23,42,.08); transform: translateY(-4px); }
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-weight: 800; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step h4 { text-align: center; }
.step h4 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.step p  { font-size: .93rem; color: var(--gray); line-height: 1.65; }
.step__arrow {
  position: absolute; top: 50px; right: -13px; z-index: 1;
  font-size: 1.1rem; color: var(--border);
}
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } .step__arrow { display: none; } }

/* Tip */
.tip {
  margin-top: 32px; max-width: 740px; margin-left: auto; margin-right: auto;
  background: var(--blue-50); border-left: 4px solid var(--blue); border-radius: var(--r8);
  padding: 18px 22px;
  font-size: .95rem; color: var(--slate); line-height: 1.65;
}
.tip strong { color: var(--blue); }

/* ══════════════════════════════════════════
   SCREENSHOTS
══════════════════════════════════════════ */
.ss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.ss-item a {
  display: block;
  border-radius: var(--r12);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ss-item a:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
  transform: translateY(-4px);
}
.ss-item a img { width: 100%; height: auto; display: block; }
.ss-item p { font-size: .8rem; font-weight: 600; color: var(--gray-light); text-align: center; margin-top: 9px; }
@media (max-width: 800px) { .ss-grid { grid-template-columns: 1fr 1fr; } }

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  max-width: 960px; margin-left: auto; margin-right: auto;
}
.price-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r16);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.price-card:hover { box-shadow: 0 8px 32px rgba(15,23,42,.09); transform: translateY(-3px); }
.price-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,.06);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .5px;
  padding: 4px 18px; border-radius: 100px; white-space: nowrap;
}
.price-tier { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--gray-light); margin-bottom: 16px; }
.price-amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.price-num { font-size: 2.8rem; font-weight: 800; letter-spacing: -1.5px; color: #0f172a; }
.price-was { font-size: .95rem; color: var(--gray-light); text-decoration: line-through; }
.price-note { font-size: .83rem; color: var(--gray); margin-bottom: 28px; font-weight: 500; }
.price-feats { list-style: none; flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.price-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--slate); }
.price-feats li svg { width: 18px; height: 18px; fill: var(--green); flex-shrink: 0; margin-top: 2px; }
.price-feats li.dim { color: var(--gray-light); }
.price-feats li.dim svg { fill: var(--border); }
.price-card .btn { width: 100%; justify-content: center; }
.pricing-footer { text-align: center; margin-top: 28px; font-size: .87rem; color: var(--gray); display: flex; align-items: center; justify-content: center; gap: 8px; }
.pricing-footer svg { width: 16px; height: 16px; fill: var(--green); }
@media (max-width: 820px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; } }

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews-head { text-align: center; margin-bottom: 52px; }
.reviews-stars { font-size: 1.5rem; color: #f59e0b; letter-spacing: 3px; margin-bottom: 10px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r16);
  padding: 28px;
  transition: box-shadow .2s;
}
.review:hover { box-shadow: 0 4px 20px rgba(15,23,42,.07); }
.review__stars { color: #f59e0b; font-size: .95rem; letter-spacing: 1px; margin-bottom: 14px; }
.review__text { font-size: .97rem; color: var(--slate); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.review__author { display: flex; align-items: center; gap: 12px; }
.av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.av--blue   { background: var(--blue); }
.av--green  { background: var(--green); }
.av--amber  { background: #d97706; }
.review__name { font-size: .9rem; font-weight: 700; color: #0f172a; }
.review__role { font-size: .77rem; color: var(--gray-light); font-weight: 500; }
@media (max-width: 820px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list {
  max-width: 800px; margin: 52px auto 0;
  display: flex; flex-direction: column; gap: 6px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border); border-radius: var(--r12);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item:has(.faq-body.open) { border-color: var(--blue-100); }
.faq-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: #0f172a;
  cursor: pointer; transition: background .15s;
}
.faq-btn:hover { background: var(--bg-soft); }
.faq-btn svg { width: 18px; height: 18px; fill: var(--gray-light); flex-shrink: 0; transition: transform .22s; }
.faq-btn.open svg { transform: rotate(180deg); fill: var(--blue); }
.faq-body {
  display: none; padding: 0 24px 20px;
  font-size: .97rem; color: var(--slate); line-height: 1.75;
}
.faq-body.open { display: block; }
.faq-more { text-align: center; margin-top: 24px; font-size: .9rem; color: var(--gray); }
.faq-more a { color: var(--blue); font-weight: 600; }

/* ══════════════════════════════════════════
   PROSE
══════════════════════════════════════════ */
.prose { max-width: 800px; margin: 0 auto; }
.prose h3 {
  font-size: 1.45rem; font-weight: 800; color: #0f172a;
  margin: 44px 0 14px; letter-spacing: -.4px;
}
.prose p { font-size: 1rem; color: var(--slate); line-height: 1.78; margin-bottom: 16px; }
.prose a { color: var(--blue); font-weight: 600; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer__inner {
  max-width: 1280px; margin: 0 auto; padding: 56px 32px 36px;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.footer__logo { font-size: 1.35rem; font-weight: 800; letter-spacing: -.5px; }
.footer__logo .pc   { color: #60a5fa; }
.footer__logo .trek { color: rgba(255,255,255,.9); }
.footer__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 20px;
}
.footer__links a {
  font-size: .83rem; font-weight: 500;
  color: rgba(255,255,255,.4); transition: color .15s;
}
.footer__links a:hover { color: rgba(255,255,255,.8); }
.footer__social { display: flex; gap: 14px; }
.footer__social a { color: rgba(255,255,255,.35); transition: color .15s; }
.footer__social a:hover { color: rgba(255,255,255,.75); }
.footer__social svg { width: 20px; height: 20px; fill: currentColor; display: block; }
.footer__copy { font-size: .79rem; color: rgba(255,255,255,.25); font-weight: 500; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__text > * { animation: fadeUp .5s ease both; }
.hero__text > *:nth-child(1) { animation-delay: .04s; }
.hero__text > *:nth-child(2) { animation-delay: .10s; }
.hero__text > *:nth-child(3) { animation-delay: .16s; }
.hero__text > *:nth-child(4) { animation-delay: .22s; }
.hero__text > *:nth-child(5) { animation-delay: .28s; }
.hero__img-wrap { animation: fadeUp .65s .1s ease both; }
