/* =================================================================
   Calixis — Design System
   Brand: Deep Ocean #174F62 · Sunset Radiance #F87315 · Silver #B3B3B3
   Type:  Montserrat (headings) · Inter (body, substituting brand's Mortise)
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand core */
  --ocean:        #174F62;
  --ocean-700:    #123f4f;
  --ocean-900:    #0d2c37;
  --ocean-050:    #eaf1f3;
  --orange:       #f87315;
  --orange-600:   #e0640c;
  --orange-050:   #fef1e7;
  --silver:       #b3b3b3;

  /* Neutrals */
  --ink:          #1c2b31;   /* primary text (ocean-tinted near-black) */
  --slate:        #4a5c63;   /* secondary text */
  --line:         #e2e6e8;   /* hairlines / borders */
  --mist:         #f4f6f7;   /* section tint */
  --paper:        #ffffff;

  /* Type */
  --font-head: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --wrap: 1160px;
  --wrap-narrow: 800px;
  --gap: clamp(1rem, 2vw, 1.5rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(13,44,55,.06), 0 1px 2px rgba(13,44,55,.04);
  --shadow-md: 0 10px 30px -12px rgba(13,44,55,.18);
  --shadow-lg: 0 30px 60px -25px rgba(13,44,55,.28);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset & base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, .55vw + .9rem, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ocean); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--orange-600); }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--ocean); line-height: 1.1; letter-spacing: -.015em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); }
h4 { font-size: 1.05rem; letter-spacing: .01em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--mist { background: var(--mist); }
.section--ocean { background: var(--ocean); color: #dfeaed; }
.section--ocean h2, .section--ocean h3 { color: #fff; }
.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange-600);
  margin: 0 0 1rem; display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.section--ocean .eyebrow { color: var(--orange); }
.lede { font-size: clamp(1.1rem, 1.4vw, 1.3rem); color: var(--slate); line-height: 1.6; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.measure { max-width: 65ch; }
.measure.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all .22s var(--ease); white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-600); color:#fff; transform: translateY(-2px); box-shadow: 0 12px 22px -10px rgba(248,115,21,.7); }
.btn--ocean { background: var(--ocean); color:#fff; }
.btn--ocean:hover { background: var(--ocean-700); color:#fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ocean); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ocean); color: var(--ocean); transform: translateY(-2px); }
.section--ocean .btn--ghost, .hero .btn--ghost { color:#fff; border-color: rgba(255,255,255,.35); }
.section--ocean .btn--ghost:hover, .hero .btn--ghost:hover { border-color:#fff; color:#fff; background: rgba(255,255,255,.06); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav__logo img { height: 32px; width: auto; }
.nav__links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--ink);
  padding: .55rem .85rem; border-radius: 8px; position: relative;
}
.nav__links a:hover { color: var(--ocean); background: var(--ocean-050); }
.nav__links a.is-active { color: var(--ocean); }
.nav__links a.is-active::after {
  content:""; position:absolute; left: .85rem; right:.85rem; bottom: .2rem; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.nav__cta { margin-left: .5rem; }
.nav__cta-mobile { display: none; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav__toggle span { display:block; width: 24px; height: 2px; background: var(--ocean); margin: 5px 0; border-radius: 2px; transition: .25s var(--ease); }

@media (max-width: 860px) {
  .nav__cta { display: none; }
  .nav__logo img { height: 28px; }
  .nav__cta-mobile { display: inline-flex; margin-left: auto; margin-right: .6rem;
    padding: .5rem .85rem; font-size: .78rem; white-space: nowrap; }
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: .5rem 1.25rem 1.25rem; display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: .85rem .5rem; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav__links a.is-active::after { display: none; }
  .nav__links a.is-active { border-left: 3px solid var(--orange); padding-left: 1rem; }
  .nav__links .btn { margin-top: .9rem; justify-content: center; }
  .nav__toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2){ opacity: 0; }
  .nav__toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ocean); color: #dbe7ea; }
.hero__bg { position:absolute; inset:0; z-index:0; opacity:.5; }
.hero__inner { position: relative; z-index: 1; padding-block: clamp(4rem, 9vw, 7.5rem); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lede { color: #bcd2d8; max-width: 54ch; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__art { position: relative; }
@media (max-width: 900px){ .hero__grid { grid-template-columns: 1fr; } .hero__art { order: -1; max-width: 460px; } }

/* pill tag */
.tag {
  display:inline-flex; align-items:center; gap:.5rem; font-family:var(--font-head);
  font-weight:600; font-size:.8rem; letter-spacing:.04em; padding:.4rem .9rem;
  border-radius:999px; background: rgba(255,255,255,.1); color:#fff; border:1px solid rgba(255,255,255,.2);
  margin-bottom: 1.4rem;
}
.tag .dot { width:8px; height:8px; border-radius:50%; background: var(--orange); box-shadow:0 0 0 4px rgba(248,115,21,.25); }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px){ .grid-3,.grid-4 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--ocean-050); color: var(--ocean); margin-bottom: 1.1rem; }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--slate); font-size: .98rem; }

/* feature row (icon + text) */
.feature { display: flex; gap: 1rem; }
.feature__num { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; color: #fff; background: var(--orange); }
.feature h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.feature p { color: var(--slate); margin: 0; }

/* stat */
.stat__num { font-family: var(--font-head); font-weight: 800; color: var(--ocean); font-size: clamp(2.2rem,4vw,3rem); line-height: 1; }
.section--ocean .stat__num { color: #fff; }
.stat__num span { color: var(--orange); }
.stat__label { color: var(--slate); font-size: .95rem; margin-top: .4rem; }
.section--ocean .stat__label { color: #a9c4cb; }

/* split media */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.figure { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1rem,2.5vw,2rem); box-shadow: var(--shadow-md); }
.figure figcaption { font-size: .85rem; color: var(--slate); margin-top: 1rem; text-align: center; font-style: italic; }

/* ---------- Pipeline table ---------- */
.pipeline { width: 100%; border-collapse: separate; border-spacing: 0; }
.pipeline th { font-family: var(--font-head); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--slate); text-align: left; padding: 0 1rem .8rem; font-weight: 700; }
.pipeline td { padding: 1rem; border-top: 1px solid var(--line); vertical-align: middle; }
.pipeline tr:hover td { background: var(--mist); }
.pipeline .prog { position: relative; height: 12px; border-radius: 999px; background: var(--ocean-050); overflow: hidden; min-width: 180px; }
.pipeline .prog span { position:absolute; inset:0 auto 0 0; border-radius:999px;
  background: linear-gradient(90deg, var(--ocean), var(--orange)); }
.pipeline .prog__ticks { display:flex; justify-content: space-between; font-size:.68rem; color: var(--silver); margin-top:.35rem; letter-spacing:.03em; }
.prog-cell { min-width: 220px; }
.badge { display:inline-block; font-family:var(--font-head); font-weight:600; font-size:.75rem;
  padding:.25rem .7rem; border-radius:999px; background: var(--orange-050); color: var(--orange-600); }
.badge--ocean { background: var(--ocean-050); color: var(--ocean); }
@media (max-width: 720px){ .pipeline, .pipeline thead, .pipeline tbody, .pipeline tr, .pipeline td, .pipeline th { display:block; }
  .pipeline thead { display:none; }
  .pipeline tr { border:1px solid var(--line); border-radius: var(--radius); margin-bottom:1rem; padding:.5rem; }
  .pipeline td { border-top:0; padding:.5rem 1rem; }
  .pipeline td::before { content: attr(data-label); display:block; font-family:var(--font-head); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--silver); margin-bottom:.2rem;} }

/* ---------- News ---------- */
.post { display:grid; grid-template-columns: 150px 1fr; gap: 1.5rem; padding: 1.75rem; border:1px solid var(--line);
  border-radius: var(--radius); background:#fff; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.post:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post__date { font-family: var(--font-head); color: var(--slate); font-size: .9rem; }
.post__date .day { font-size: 2rem; font-weight: 800; color: var(--ocean); display:block; line-height:1; }
.post__tag { margin-bottom:.5rem; }
.post h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.post p { color: var(--slate); margin: 0 0 .8rem; }
@media (max-width:560px){ .post { grid-template-columns: 1fr; gap:.6rem; } .post__date .day { display:inline; font-size:1.1rem;} }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label { display:block; font-family: var(--font-head); font-weight:600; font-size:.85rem; color: var(--ocean); margin-bottom:.4rem; }
.field input, .field select, .field textarea {
  width:100%; padding:.8rem 1rem; border:1px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background:#fff; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ocean); box-shadow: 0 0 0 3px var(--ocean-050); }
.contact-item { display:flex; gap:1rem; align-items:flex-start; margin-bottom:1.5rem; }
.contact-item .ci-icon { flex:none; width:44px; height:44px; border-radius:12px; background: var(--ocean-050); color:var(--ocean); display:grid; place-items:center; }
.contact-item .ci-icon svg{ width:22px;height:22px; }
.contact-item h4 { margin:0 0 .15rem; }
.contact-item p { margin:0; color: var(--slate); }
.note { font-size: .82rem; color: var(--silver); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ocean-900); color: #a9c4cb; padding-block: 3.5rem 2rem; }
.site-footer a { color: #cfe0e4; }
.site-footer a:hover { color: #fff; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; gap:2rem 1.5rem; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer img.footer-logo { height: 30px; margin-bottom: 1rem; }
.footer-col h4 { color:#fff; font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:1rem; }
.footer-col ul { list-style:none; margin:0; padding:0; }
.footer-col li { margin-bottom:.6rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem;
  display:flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size:.82rem; color:#7fa0a9; }
.footer-disclaimer { font-size:.78rem; color:#6d919b; margin-top:1rem; max-width: 70ch; }

/* ---------- Utility & motion ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ * { animation: none !important; transition: none !important; scroll-behavior:auto; } .reveal { opacity:1; transform:none; } }
.mt-1{margin-top:.5rem} .mt-2{margin-top:1rem} .mt-3{margin-top:1.75rem} .mt-4{margin-top:2.5rem}
.mb-0{margin-bottom:0}
.pill-list { list-style:none; padding:0; margin:1rem 0 0; display:flex; flex-wrap:wrap; gap:.6rem; }
.pill-list li { font-family:var(--font-head); font-weight:500; font-size:.85rem; padding:.45rem .9rem; border-radius:999px; background:#fff; border:1px solid var(--line); color: var(--ocean); }
.section--ocean .pill-list li { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color:#fff; }

/* disclaimer band */
.disclaimer-band { background: var(--mist); border-top:1px solid var(--line); }
.disclaimer-band p { font-size:.82rem; color: var(--slate); margin:0; }

/* cookie consent banner */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.1rem 1.25rem;
  transform: translateY(140%); opacity: 0; pointer-events: none;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.cookie-banner.is-visible { transform: none; opacity: 1; pointer-events: auto; }
.cookie-banner__inner { display: flex; align-items: center; gap: 1.25rem;
  max-width: var(--wrap); margin-inline: auto; flex-wrap: wrap; }
.cookie-banner__text { flex: 1 1 340px; font-size: .9rem; color: var(--slate); line-height: 1.55; }
.cookie-banner__text strong { color: var(--ink); }
.cookie-banner__actions { display: flex; gap: .6rem; flex: 0 0 auto; }
.cookie-banner .cookie-btn { padding: .6rem 1.3rem; font-size: .9rem; }
@media (max-width: 560px){
  .cookie-banner { left: .6rem; right: .6rem; bottom: .6rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner .cookie-btn { flex: 1; justify-content: center; }
}

/* team avatars (leadership / board) */
.avatar { width:88px; height:88px; border-radius:50%; margin:0 auto 1rem;
  background:linear-gradient(135deg,var(--ocean),var(--ocean-900));
  display:grid; place-items:center; color:#fff; font-family:var(--font-head);
  font-weight:700; font-size:1.4rem; letter-spacing:.03em; }

/* board affiliation (investment firm) */
.card .affil { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ocean); letter-spacing: .01em; }

/* investor logo tiles — sized by width so all render at the same ~34px height */
.logo-row { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 1.5rem; }
.logo-tile { display:grid; place-items:center; min-height: 96px;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 1.4rem 2rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.logo-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.logo-tile img { height:auto; max-width: 100%; display:block; }
.logo-atlas   { width: 300px; }   /* ratio 8.9 → ~34px tall */
.logo-orbimed { width: 143px; }   /* ratio 4.2 → ~34px tall */
.logo-aditum  { width: 138px; }   /* ratio 4.1 → ~34px tall */
@media (max-width: 560px){ .logo-tile { width: 100%; min-height: 84px; } }

/* legal pages (privacy / terms) */
.legal h1 { margin-top: .3rem; }
.legal h2 { margin-top: 2.6rem; font-size: 1.5rem; scroll-margin-top: 90px; }
.legal h3 { margin-top: 2.2rem; font-size: 1.2rem; scroll-margin-top: 90px; }
.legal h4 { margin-top: 1.6rem; margin-bottom: .3rem; font-size: 1rem; color: var(--ocean); }
.legal p { color: var(--slate); }
.legal ul, .legal ol { color: var(--slate); padding-left: 1.25rem; }
.legal li { margin-bottom: .5rem; }
.legal .card p { color: var(--slate); }
.legal a { text-decoration: underline; text-underline-offset: 2px; }
/* table of contents */
.legal-toc { background: var(--mist); border:1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.75rem 0; }
.legal-toc h4 { margin-top:0; }
.legal-toc ol { margin:0; color: var(--ocean); columns: 2; column-gap: 2rem; }
.legal-toc a { text-decoration: none; }
@media (max-width: 620px){ .legal-toc ol { columns: 1; } }
/* data-category table */
.legal-table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; }
.legal table { width:100%; border-collapse: collapse; font-size: .92rem; min-width: 520px; }
.legal table th, .legal table td { text-align:left; vertical-align:top; padding: .7rem .85rem; border:1px solid var(--line); }
.legal table th { background: var(--ocean-050); font-family: var(--font-head); font-weight:600; color: var(--ocean); font-size:.82rem; }
.legal table td { color: var(--slate); }

/* draft marker (unpublished press releases) */
.draft-flag { display:inline-flex; align-items:center; gap:.5rem; font-family:var(--font-head);
  font-weight:700; font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:#b42318;
  background:#fee4e2; border:1px solid #f4b9b2; padding:.32rem .8rem; border-radius:999px; }
.draft-flag::before { content:""; width:7px; height:7px; border-radius:50%; background:#e0463a; }
.draft-banner { display:flex; gap:.85rem; align-items:flex-start; background:#fef3f2; border:1px solid #f4b9b2;
  border-radius:var(--radius); padding:1rem 1.25rem; margin-bottom:1.75rem; }
.draft-banner svg { flex:none; width:22px; height:22px; color:#e0463a; margin-top:1px; }
.draft-banner p { margin:0; font-size:.9rem; color:#8a2b23; }
.draft-banner strong { color:#b42318; }

/* press release page */
.pr-meta { color: var(--slate); font-size:.9rem; margin-bottom:1.5rem; }
.pr-lead { font-size:1.15rem; color:var(--ink); font-weight:500; line-height:1.55; }
.pr-quote { border-left:4px solid var(--orange); background:var(--mist); border-radius:0 var(--radius) var(--radius) 0;
  padding:1.25rem 1.5rem; margin:1.75rem 0; }
.pr-quote p { color:var(--ink); font-style:italic; margin:0 0 .6rem; }
.pr-quote cite { color:var(--slate); font-style:normal; font-size:.9rem; font-family:var(--font-head); font-weight:600; }
.pr-boiler { margin-top:2.5rem; padding-top:1.5rem; border-top:1px solid var(--line); font-size:.9rem; }
.pr-boiler p { color:var(--slate); }
.footer-bottom a { color:#9fc0c9; }
.footer-bottom a:hover { color:#fff; }
