/* ==========================================================================
   His Super Affiliates — Master Stylesheet
   Design system: refined American, conversion-focused
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Color system */
  --red: #C8102E;
  --red-deep: #9E0C24;
  --blue: #002868;
  --blue-deep: #001A47;
  --cream: #FAF7F0;
  --cream-warm: #F4EFE3;
  --ink: #0B0E1A;
  --ink-soft: #2A2F45;
  --muted: #6B7280;
  --line: #E5E1D6;
  --gold: #D4A24C;

  /* Type */
  --display: 'Bricolage Grotesque', Georgia, serif;
  --body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1180px;
  --container-narrow: 780px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 14, 26, 0.06), 0 2px 8px rgba(11, 14, 26, 0.04);
  --shadow-md: 0 4px 12px rgba(11, 14, 26, 0.08), 0 12px 28px rgba(11, 14, 26, 0.06);
  --shadow-lg: 0 8px 24px rgba(11, 14, 26, 0.12), 0 24px 60px rgba(11, 14, 26, 0.10);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1em; }

.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.35);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200, 16, 46, 0.45);
}
.btn-secondary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 40, 104, 0.3);
}
.btn-secondary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-large {
  padding: 1.2rem 2.4rem;
  font-size: 1.1rem;
}

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.nav-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.nav-brand-text span:last-child {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--red); }
.nav-cta { display: flex; gap: 0.75rem; align-items: center; }
.nav-cta .btn { padding: 0.65rem 1.25rem; font-size: 0.9rem; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
}

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-open .nav-links,
  .nav-open .nav-cta {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
    gap: 1rem;
  }
  .nav-open .nav-cta { padding-top: 0; }
}

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 40, 104, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .underline {
  position: relative;
  display: inline-block;
  color: var(--red);
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.32em;
  background: rgba(200, 16, 46, 0.15);
  z-index: -1;
}
.hero-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-trust strong {
  color: var(--ink);
  font-weight: 700;
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 40, 104, 0.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
}

/* Section wrapper */
section { padding: 5rem 0; position: relative; }
section.alt-bg { background: var(--cream-warm); }
section.dark-bg { background: var(--ink); color: var(--cream); }
section.dark-bg h1, section.dark-bg h2, section.dark-bg h3 { color: var(--cream); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-head .eyebrow { justify-content: center; }
.section-head p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}

/* Offer grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.75rem;
}
.offer-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.offer-card-number {
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.offer-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.offer-card .tagline {
  color: var(--red);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.offer-card .desc {
  color: var(--ink-soft);
  font-size: 0.96rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.offer-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.offer-card .price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--blue);
}
.offer-card .price .sub {
  font-family: var(--body);
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: -2px;
}
.offer-card .arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.offer-card:hover .arrow {
  background: var(--red);
  transform: translateX(4px);
}

/* Feature grid (homepage) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.feature {
  text-align: left;
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  font-family: var(--display);
}
.feature h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }
.feature p { color: var(--ink-soft); font-size: 0.96rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(200, 16, 46, 0.4) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner h2 { color: white; margin-bottom: 1rem; }
.cta-banner p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto 2rem;
}
.cta-banner .btn { position: relative; z-index: 1; }

/* Product logo plates (dark badge for product brand logos) */
.product-logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.product-logo-plate img {
  max-height: 56px;
  width: auto;
  display: block;
}
.offer-sidebar .product-logo-plate {
  display: flex;
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
}
.offer-sidebar .product-logo-plate img { max-height: 44px; }

/* Offer card logo banner (home page cards) */
.offer-card-logo {
  height: 88px;
  background: var(--ink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
}
.offer-card-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

/* Offer detail page */
.offer-detail {
  padding: 4rem 0 5rem;
}
.offer-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.offer-detail h1 { margin-bottom: 1.5rem; }
.offer-detail .lead {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-weight: 400;
}
.offer-content p { margin-bottom: 1.2em; font-size: 1.05rem; color: var(--ink-soft); }
.offer-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.offer-content h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.offer-content ul { padding-left: 0; list-style: none; margin: 1.5rem 0; }
.offer-content ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.offer-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 16px; height: 16px;
  background: var(--red);
  border-radius: 4px;
  transform: rotate(45deg);
}
.offer-content ul li::after {
  content: '';
  position: absolute;
  left: 4px; top: 0.7em;
  width: 8px; height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.offer-sidebar {
  position: sticky;
  top: 100px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.offer-sidebar .price-tag {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.offer-sidebar .price-label {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.offer-sidebar .feature-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.offer-sidebar .feature-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.offer-sidebar .feature-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.offer-sidebar .btn { width: 100%; }
.offer-sidebar .guarantee {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 0.85rem;
  background: var(--cream);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  justify-content: center;
}
.offer-sidebar .guarantee strong { color: var(--ink); }

@media (max-width: 880px) {
  .offer-detail-grid { grid-template-columns: 1fr; }
  .offer-sidebar { position: static; }
}

/* Breadcrumb */
.breadcrumb {
  padding: 1.25rem 0;
  font-size: 0.88rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { margin: 0 0.6rem; opacity: 0.5; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card .meta {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.blog-card .meta .cat {
  color: var(--red);
  margin-right: 0.5rem;
}
.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}
.blog-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 1.25rem;
}
.blog-card .read-more {
  font-weight: 600;
  color: var(--red);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-card .read-more::after {
  content: '→';
  transition: transform 0.2s ease;
}
.blog-card:hover .read-more::after { transform: translateX(4px); }

/* Article (single blog post) */
.article {
  padding: 3rem 0 4rem;
}
.article-head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.article-head .meta {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.article-head .meta .cat { color: var(--red); }
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.article-body h2 {
  margin: 3rem 0 1rem;
  font-size: 1.9rem;
  color: var(--ink);
}
.article-body h3 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.35rem;
  color: var(--ink);
}
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.article-body ul li, .article-body ol li { margin-bottom: 0.5rem; }
.article-body blockquote {
  border-left: 4px solid var(--red);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--ink);
  font-size: 1.15rem;
}
.article-body a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

/* Forms */
.form { display: grid; gap: 1.25rem; max-width: 540px; margin: 0 auto; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* Generic text page */
.text-page { padding: 3.5rem 0 5rem; }
.text-page h1 { margin-bottom: 2rem; }
.text-page h2 { margin: 2.5rem 0 1rem; }
.text-page p, .text-page li { font-size: 1.05rem; color: var(--ink-soft); }
.text-page ul, .text-page ol { margin: 1rem 0 1.5rem 1.5rem; }
.text-page li { margin-bottom: 0.5rem; }
.text-page .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(250, 247, 240, 0.7);
  font-size: 0.95rem;
  max-width: 320px;
  margin-top: 0.5rem;
}
.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
  font-family: var(--body);
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(250, 247, 240, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 247, 240, 0.5);
}
.footer-disclosure {
  font-size: 0.8rem;
  color: rgba(250, 247, 240, 0.5);
  max-width: 800px;
  margin: 0 auto 1rem;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
