/* ==========================================================================
   Caldriscoremarket— Shared Theme (Dark, Premium)
   Used across all pages: index, privacy, terms, support, etc.
   ========================================================================== */

:root {
  --bg: #06080c;
  --bg-elev: #0b0f15;
  --bg-card: #10151d;
  --bg-card-2: #141a24;
  --border: #1a2230;
  --border-strong: #273142;
  --text: #edf1f6;
  --text-dim: #8892a2;
  --text-mute: #596373;
  --accent: #00d68f;
  --accent-hover: #00e89b;
  --accent-soft: rgba(0, 214, 143, 0.12);
  --accent-border: rgba(0, 214, 143, 0.28);
  --gold: #e6b87a;
  --gold-soft: rgba(230, 184, 122, 0.12);
  --warm: #ff6b4a;
  --gradient: linear-gradient(135deg, #00e89b 0%, #00a86b 100%);
  --gradient-soft: linear-gradient(
    135deg,
    rgba(0, 214, 143, 0.18) 0%,
    rgba(0, 214, 143, 0.06) 100%
  );
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.35);
  --glow: 0 0 40px rgba(0, 214, 143, 0.25);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --font-sans:
    "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  --font-display: "Canela", "Fraunces", "Playfair Display", Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3a485e;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 8, 12, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.4px;
  color: var(--text);
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  color: var(--bg);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(0, 214, 143, 0.25);
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition:
    width 0.25s ease,
    left 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.1px;
  transition:
    transform 0.18s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-ghost {
  color: var(--text);
}
.btn-ghost:hover {
  color: var(--accent);
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: #fff;
}

.btn-outline {
  border-color: var(--border-strong);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-accent {
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
}
.btn-accent:hover {
  transform: translateY(-1px);
  background: var(--accent-hover);
  box-shadow: 0 12px 32px rgba(0, 214, 143, 0.35);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 15px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}
@media (max-width: 540px) {
  .nav-actions .btn-ghost {
    display: none;
  }
}

/* ==========================================================================
   EYEBROW / TAG
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  padding: 84px 0 36px;
  color: var(--text);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 64px;
}

.foot-brand p {
  color: var(--text-dim);
  font-size: 14px;
  margin: 18px 0 26px;
  max-width: 340px;
  line-height: 1.65;
}

.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-dim);
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.foot-col h5 {
  font-size: 12px;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.foot-col a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.2s;
}
.foot-col a:hover {
  color: var(--accent);
}

.foot-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-mute);
  font-size: 12.5px;
}
.foot-bottom .links {
  display: flex;
  gap: 26px;
}
.foot-bottom a:hover {
  color: var(--text);
}

@media (max-width: 820px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .foot-brand {
    grid-column: span 2;
  }
}
@media (max-width: 500px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .foot-brand {
    grid-column: auto;
  }
}

/* ==========================================================================
   LEGAL / DOC PAGE LAYOUT (privacy, terms)
   ========================================================================== */
.page-hero {
  padding: 160px 0 40px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(
      900px 420px at 20% 0%,
      rgba(0, 214, 143, 0.08),
      transparent 70%
    ),
    radial-gradient(
      700px 400px at 90% 10%,
      rgba(230, 184, 122, 0.06),
      transparent 70%
    );
}
.page-hero .container {
  max-width: 1040px;
}
.page-hero .eyebrow {
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -1.8px;
  line-height: 1.04;
  font-weight: 500;
  margin-bottom: 16px;
}
.page-hero .lead {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 30px;
}
.page-hero .meta {
  color: var(--text-mute);
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding-bottom: 24px;
}

.doc-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 28px 120px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.doc-toc {
  position: sticky;
  top: 100px;
  font-size: 13.5px;
}
.doc-toc h6 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.doc-toc a {
  display: block;
  padding: 7px 0;
  color: var(--text-dim);
  border-left: 1px solid var(--border);
  padding-left: 14px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.doc-toc a:hover,
.doc-toc a.active {
  color: var(--accent);
  border-left-color: var(--accent);
}

.doc-body {
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}
.doc-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.6px;
  margin: 48px 0 18px;
  color: var(--text);
}
.doc-body h2:first-child {
  margin-top: 0;
}
.doc-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text);
  letter-spacing: -0.2px;
}
.doc-body p,
.doc-body li {
  color: var(--text-dim);
  margin-bottom: 16px;
}
.doc-body ul,
.doc-body ol {
  padding-left: 22px;
  margin-bottom: 22px;
}
.doc-body strong {
  color: var(--text);
  font-weight: 600;
}
.doc-body a {
  color: var(--accent);
  border-bottom: 1px solid rgba(0, 214, 143, 0.35);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.doc-body a:hover {
  border-bottom-color: var(--accent);
}
.doc-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 28px;
  font-size: 14.5px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.doc-body th,
.doc-body td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.doc-body th {
  background: var(--bg-card-2);
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.doc-body tr:last-child td {
  border-bottom: none;
}

@media (max-width: 820px) {
  .doc-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 24px 80px;
  }
  .doc-toc {
    position: static;
    display: none;
  }
}

/* ==========================================================================
   SUPPORT PAGE
   ========================================================================== */
.support-hero {
  padding: 160px 0 40px;
  background:
    radial-gradient(
      1000px 500px at 50% 0%,
      rgba(0, 214, 143, 0.08),
      transparent 70%
    ),
    radial-gradient(
      700px 400px at 80% 30%,
      rgba(230, 184, 122, 0.06),
      transparent 70%
    );
  text-align: center;
}
.support-hero .eyebrow {
  margin-bottom: 20px;
}
.support-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -1.8px;
  line-height: 1.04;
  font-weight: 500;
  margin-bottom: 16px;
}
.support-hero p {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 40px;
}

.support-search {
  max-width: 640px;
  margin: 0 auto 32px;
  display: flex;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  transition: border-color 0.2s;
}
.support-search:focus-within {
  border-color: var(--accent);
}
.support-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}
.support-search input::placeholder {
  color: var(--text-mute);
}

.support-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 28px 60px;
}
.support-section h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}
.support-section .sub {
  color: var(--text-dim);
  margin-bottom: 36px;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 72px;
}
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    border-color 0.25s,
    transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.support-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.support-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.support-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.2px;
}
.support-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item h3 {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.faq-item p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

.contact-card {
  margin-top: 52px;
  padding: 40px;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient);
}
.contact-card h2 {
  margin-bottom: 10px;
}
.contact-card p {
  color: var(--text-dim);
  margin-bottom: 12px;
  font-size: 15px;
}
.contact-card strong {
  color: var(--text);
}
.contact-card a {
  color: var(--accent);
}

/* ==========================================================================
   GENERIC CONTENT PAGES (about, fees, security, careers, blog, press, api)
   ========================================================================== */
.content-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 28px;
}
.content-section + .content-section {
  padding-top: 20px;
}
.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.9px;
  margin-bottom: 14px;
  line-height: 1.12;
}
.content-section .sub {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 40px;
}
.content-section p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-section strong {
  color: var(--text);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.feature-grid .card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.feature-grid .card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.feature-grid .card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-grid .card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}
.feature-grid .card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 40px 0;
}
.stat-row .stat .val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.stat-row .stat .lbl {
  color: var(--text-dim);
  font-size: 13px;
}

/* Roles / list rows (careers, press) */
.row-list {
  border-top: 1px solid var(--border);
}
.row-list .row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.row-list .row:hover {
  background: rgba(0, 214, 143, 0.03);
}
.row-list .row h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.2px;
}
.row-list .row .meta {
  color: var(--text-dim);
  font-size: 13.5px;
}
.row-list .row .arrow {
  color: var(--accent);
  font-size: 18px;
}
@media (max-width: 720px) {
  .row-list .row {
    grid-template-columns: 1fr auto;
  }
  .row-list .row .meta:nth-of-type(2) {
    display: none;
  }
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.blog-card .thumb {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(0, 214, 143, 0.3),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(230, 184, 122, 0.22),
      transparent 60%
    ),
    var(--bg-card-2);
  position: relative;
}
.blog-card .thumb.variant-2 {
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(230, 184, 122, 0.3),
      transparent 60%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(0, 214, 143, 0.2),
      transparent 60%
    ),
    var(--bg-card-2);
}
.blog-card .thumb.variant-3 {
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(0, 214, 143, 0.22),
      transparent 65%
    ),
    linear-gradient(135deg, #11161f 0%, #1a2230 100%);
}
.blog-card .body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card .tag {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
}
.blog-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.4px;
  line-height: 1.3;
}
.blog-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
.blog-card .date {
  color: var(--text-mute);
  font-size: 12.5px;
  margin-top: auto;
  padding-top: 10px;
}

/* Fee tables */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 14.5px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.fee-table th,
.fee-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.fee-table th {
  background: var(--bg-card-2);
  color: var(--text);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.fee-table td strong {
  color: var(--text);
}
.fee-table tr:last-child td {
  border-bottom: none;
}

/* Code block (api page) */
.code-block {
  background: #05070b;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  font-family: "JetBrains Mono", "SF Mono", Menlo, monospace;
  font-size: 13.5px;
  color: #c8d1dc;
  overflow-x: auto;
  line-height: 1.7;
  margin: 16px 0;
}
.code-block .k {
  color: var(--accent);
}
.code-block .s {
  color: var(--gold);
}
.code-block .c {
  color: var(--text-mute);
  font-style: italic;
}

/* CTA band */
.cta-band {
  max-width: 1120px;
  margin: 40px auto 100px;
  padding: 56px 48px;
  background: linear-gradient(
      135deg,
      rgba(0, 214, 143, 0.12),
      rgba(230, 184, 122, 0.08)
    ),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.7px;
  color: var(--text);
  margin-bottom: 6px;
}
.cta-band p {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 520px;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
