/* Blue Magic Labs Ltd — Corporate site stylesheet (visual upgrade)
   Visual-only update: HTML copy, links and navigation intentionally untouched. */

:root{
  --ink: #15171d;
  --ink-soft: #313844;
  --navy: #14213f;
  --navy-deep: #070b14;
  --blue: #203CFF;
  --blue-soft: #E9EDFF;
  --gold: #B8925A;
  --gold-deep: #8A6636;
  --cream: #F8F5EF;
  --cream-2: #EFE7D8;
  --paper: #FEFCF8;
  --white: #FFFFFF;
  --line: rgba(20, 33, 63, .12);
  --line-warm: rgba(184, 146, 90, .24);
  --muted: #6f7480;
  --muted-warm: #736C60;
  --shadow-soft: 0 20px 60px rgba(7, 11, 20, .09);
  --shadow-card: 0 18px 40px rgba(20, 33, 63, .08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 94% -16%, rgba(32,60,255,.10), transparent 58%),
    radial-gradient(760px 440px at 0% 2%, rgba(184,146,90,.10), transparent 58%),
    linear-gradient(180deg, #fff 0%, var(--paper) 42%, #fff 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(20,33,63,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,33,63,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.08) 45%, transparent 82%);
}

::selection{ background: rgba(32,60,255,.16); color: var(--navy-deep); }

a{
  color: var(--navy);
  text-decoration: none;
  text-underline-offset: 4px;
  transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
a:hover{ color: var(--blue); text-decoration: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline: 3px solid rgba(32,60,255,.22);
  outline-offset: 3px;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* Top accent bar */
.accent-bar{
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, #6E7CFF 34%, var(--gold) 68%, var(--navy) 100%);
  box-shadow: 0 1px 18px rgba(32,60,255,.22);
}

/* Header */
header.site{
  border-bottom: 1px solid rgba(20,33,63,.10);
  background: rgba(254,252,248,.82);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 0;
  gap: 24px;
}
.wordmark{
  position: relative;
  font-weight: 760;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  display:flex;
  align-items:center;
  gap:10px;
  white-space: nowrap;
}
.wordmark::before{
  content:"";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 30%, #fff 0 10%, transparent 12%),
    linear-gradient(135deg, var(--blue), #6E7CFF 56%, var(--gold));
  display:inline-block;
  box-shadow: 0 0 0 5px rgba(32,60,255,.08), 0 10px 24px rgba(32,60,255,.25);
}
.wordmark span{ color: var(--muted); font-weight: 560; }
nav.main{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap: wrap;
  gap: 6px;
}
nav.main a{
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 620;
  margin-left: 20px;
  letter-spacing: -0.005em;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
nav.main a:hover{ color: var(--blue); border-bottom-color: rgba(32,60,255,.45); }
nav.main a.current{ color: var(--navy); border-bottom: 1px solid var(--blue); }

/* Mobile nav toggle (hidden on desktop/tablet) */
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:40px;
  height:40px;
  padding:0;
  margin-left:auto;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(20,33,63,.14);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(20,33,63,.06);
  cursor:pointer;
  flex-shrink:0;
}
.nav-toggle:hover{ border-color: rgba(32,60,255,.35); }
.nav-toggle-bar{
  display:block;
  width:18px;
  height:2px;
  border-radius:2px;
  background: var(--navy);
}
header.site.menu-open .nav-toggle{
  background: rgba(32,60,255,.08);
  border-color: rgba(32,60,255,.35);
}
header.site.menu-open .nav-toggle-bar:nth-child(1){ transform: translateY(7px) rotate(45deg); }
header.site.menu-open .nav-toggle-bar:nth-child(2){ opacity:0; }
header.site.menu-open .nav-toggle-bar:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
@media (prefers-reduced-motion: no-preference){
  .nav-toggle-bar{ transition: transform .22s ease, opacity .22s ease; }
}
body.nav-scroll-lock{ overflow: hidden; }

/* Hero */
.hero{
  position: relative;
  overflow: hidden;
  padding: 110px 0 76px;
  border-bottom: 1px solid rgba(20,33,63,.10);
  background:
    radial-gradient(680px 440px at 84% 8%, rgba(32,60,255,.14), transparent 60%),
    radial-gradient(560px 360px at 77% 28%, rgba(184,146,90,.13), transparent 68%),
    linear-gradient(140deg, rgba(255,255,255,.96) 0%, rgba(248,245,239,.92) 48%, rgba(233,237,255,.46) 100%);
}
.hero::before{
  content:"";
  position:absolute;
  right: -120px;
  top: 36px;
  width: 520px;
  height: 520px;
  border-radius: 46px;
  transform: rotate(-11deg);
  background:
    linear-gradient(135deg, rgba(255,255,255,.70), rgba(255,255,255,.14)),
    radial-gradient(circle at 30% 24%, rgba(32,60,255,.22), transparent 34%),
    radial-gradient(circle at 74% 78%, rgba(184,146,90,.20), transparent 36%);
  border: 1px solid rgba(255,255,255,.80);
  box-shadow: 0 44px 120px rgba(7,11,20,.13);
  opacity: .78;
}
.hero::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    linear-gradient(101deg, transparent 0 71%, rgba(32,60,255,.14) 71.2% 71.7%, transparent 72% 100%),
    linear-gradient(rgba(20,33,63,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,33,63,.025) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.16), rgba(0,0,0,.70) 55%, transparent 96%);
  pointer-events: none;
}
.hero .wrap{ position: relative; z-index: 2; }
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  font-weight: 780;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}
h1{
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -0.045em;
  line-height: .98;
  margin: 0 0 24px;
  max-width: 860px;
  font-weight: 600;
  color: var(--navy-deep);
}
.lede{
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.68;
  color: var(--muted);
  max-width: 704px;
  margin: 0 0 34px;
}
.hero-ctas{
  display:flex;
  flex-wrap: wrap;
  align-items:center;
  gap: 14px;
  margin-bottom: 10px;
}
.facts{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  padding-top: 30px;
  border-top: 1px solid rgba(20,33,63,.10);
  max-width: 920px;
}
.facts div{
  position: relative;
  font-size: 12.5px;
  color: var(--navy);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(20,33,63,.10);
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(20,33,63,.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.facts div::before{
  content:"";
  display:inline-block;
  width:5px;
  height:5px;
  border-radius:50%;
  margin: 0 8px 2px 0;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(32,60,255,.10);
}
.facts strong{ color: var(--ink); font-weight: 760; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  min-height: 48px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 720;
  border-radius: 999px;
  letter-spacing: -0.005em;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 46px rgba(20,33,63,.22), inset 0 1px 0 rgba(255,255,255,.18);
  cursor: pointer;
}
.btn::after{
  content:"→";
  font-size: 14px;
  line-height: 1;
  transition: transform .18s ease;
}
.btn:hover{
  color:#fff;
  background: linear-gradient(135deg, #05070d, #162B5A);
  transform: translateY(-1px);
  box-shadow: 0 22px 56px rgba(20,33,63,.28), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn:hover::after{ transform: translateX(3px); }
.btn.ghost{
  background: rgba(255,255,255,.60);
  color: var(--navy);
  border: 1px solid var(--line-warm);
  box-shadow: none;
}
.btn.ghost:hover{ background: var(--white); color: var(--blue); }

/* Sections */
section.block{
  position: relative;
  padding: 84px 0;
  border-bottom: 1px solid rgba(20,33,63,.10);
  background: rgba(255,255,255,.74);
}
section.block::before{
  content:"";
  position:absolute;
  left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  top: 0;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(184,146,90,.85));
}
section.block.soft{
  background:
    radial-gradient(700px 320px at 92% 0%, rgba(184,146,90,.10), transparent 62%),
    linear-gradient(180deg, rgba(248,245,239,.92), rgba(255,255,255,.94));
}
section.block.dark{
  overflow: hidden;
  background:
    radial-gradient(800px 520px at 84% 0%, rgba(32,60,255,.30), transparent 58%),
    radial-gradient(640px 400px at 14% 100%, rgba(184,146,90,.19), transparent 62%),
    linear-gradient(145deg, var(--navy-deep), #101A31 56%, #15213D);
  color: rgba(255,255,255,0.86);
  border-bottom: none;
}
section.block.dark::before{ background: linear-gradient(90deg, var(--blue), var(--gold)); opacity:.9; }
section.block.dark::after{
  content:"";
  position:absolute;
  right: -110px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  transform: rotate(-11deg);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 38px;
  background: rgba(255,255,255,.035);
}
section.block.dark .wrap{ position: relative; z-index: 1; }
section.block.dark h2{ color: #fff; }
section.block.dark .section-intro{ color: rgba(255,255,255,0.68); }
section.block.dark .card{
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.14);
  border-top-color: rgba(32,60,255,.90);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
section.block.dark .card h3{ color: #fff; }
section.block.dark .card p{ color: rgba(255,255,255,0.68); }

h2{
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--navy-deep);
  margin: 0 0 12px;
  font-weight: 600;
}
.section-intro{
  color: var(--muted);
  max-width: 710px;
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.75;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.card{
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(20,33,63,.10);
  border-top: 2px solid var(--gold);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 12px 36px rgba(20,33,63,.055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.card::after{
  content:"";
  position:absolute;
  right:-56px;
  top:-56px;
  width: 118px;
  height: 118px;
  border-radius: 36px;
  transform: rotate(-11deg);
  background: linear-gradient(135deg, rgba(32,60,255,.10), rgba(184,146,90,.08));
  opacity: .78;
}
.card.accent-blue{ border-top-color: var(--blue); }
.card.accent-blue::after{ background: linear-gradient(135deg, rgba(32,60,255,.14), rgba(32,60,255,.04)); }
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(32,60,255,.22);
  box-shadow: var(--shadow-card);
  background: rgba(255,255,255,.92);
}
.card h3{
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.015em;
}
.card p{
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
  margin:0;
}
.num{
  position: relative;
  z-index: 1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-soft), #fff);
  color: var(--blue);
  border: 1px solid rgba(32,60,255,.14);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(32,60,255,.10);
}

table.info{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(20,33,63,.10);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(20,33,63,.055);
}
table.info tr:first-child td{ padding-top: 18px; }
table.info tr:last-child td{ border-bottom: none; padding-bottom: 18px; }
table.info td{
  padding: 15px 22px;
  border-bottom: 1px solid rgba(20,33,63,.08);
  vertical-align: top;
}
table.info td:first-child{
  color: var(--muted);
  width: 240px;
  font-weight: 650;
  background: linear-gradient(90deg, rgba(248,245,239,.72), rgba(248,245,239,.20));
  border-left: 3px solid var(--gold);
}
table.info td:last-child{ color: var(--ink); font-weight: 560; }

ul.plain{ margin:0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; line-height: 1.65; }
ul.plain li{
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}
ul.plain li::before{
  content:"";
  position:absolute;
  left:0; top:10px;
  width:7px; height:7px;
  border-radius:50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(32,60,255,.08);
}

.note{
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted-warm);
  background: rgba(248,245,239,.78);
  border: 1px solid rgba(20,33,63,.10);
  border-left: 3px solid var(--blue);
  padding: 17px 20px;
  border-radius: var(--radius-sm);
  margin-top: 24px;
  box-shadow: 0 12px 36px rgba(20,33,63,.045);
}
section.block.dark .note{
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
  border-left: 3px solid var(--gold);
  color: rgba(255,255,255,0.75);
  box-shadow: none;
}

/* Founder */
.founder{
  display:flex;
  gap: 32px;
  align-items:flex-start;
  flex-wrap: wrap;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(20,33,63,.10);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 14px 44px rgba(20,33,63,.055);
}
.founder .initials{
  width: 78px;
  height: 78px;
  border-radius: 24px;
  transform: rotate(-2deg);
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.20), transparent 34%),
    linear-gradient(145deg, var(--navy-deep), var(--navy) 62%, #233A75);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size: 22px;
  flex-shrink:0;
  border: 1px solid rgba(184,146,90,.38);
  box-shadow: 0 20px 46px rgba(20,33,63,.18);
}
.founder-name{ font-family:'Fraunces', Georgia, serif; font-weight:600; font-size: 22px; letter-spacing: -.025em; margin: 0 0 2px; color: var(--ink); }
.founder-role{ font-size: 12px; color: var(--gold-deep); margin: 0 0 14px; font-weight: 760; letter-spacing: 0.12em; text-transform: uppercase; }
.founder-bio{ font-size: 14px; color: var(--muted); max-width: 640px; line-height: 1.75; }

/* Form */
form.contact-form{ max-width: 580px; }
form.contact-form label{
  display:block;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
form.contact-form input,
form.contact-form select,
form.contact-form textarea{
  width:100%;
  padding: 13px 14px;
  font-size: 15px;
  border: 1px solid rgba(20,33,63,.12);
  border-radius: 12px;
  margin-bottom: 20px;
  font-family: inherit;
  color: var(--ink);
  background: rgba(255,255,255,.78);
  box-shadow: 0 1px 0 rgba(255,255,255,.90) inset;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus{
  outline: none;
  border-color: rgba(32,60,255,.52);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(32,60,255,.10), 0 14px 32px rgba(20,33,63,.055);
}
form.contact-form textarea{ min-height: 132px; resize: vertical; }

/* Footer */
footer.site{
  position: relative;
  padding: 54px 0 42px;
  background:
    radial-gradient(600px 320px at 90% 10%, rgba(32,60,255,.22), transparent 62%),
    linear-gradient(145deg, #060914, var(--navy-deep));
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  border-top: 1px solid rgba(184,146,90,.38);
}
footer.site::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #6E7CFF 35%, var(--gold) 72%, transparent 100%);
}
footer.site .wrap{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 28px;
}
footer.site a{ color: rgba(255,255,255,0.86); }
footer.site a:hover{ color: #fff; }
footer.site .col{ min-width: 220px; }
footer.site .col h4{
  color: rgba(255,255,255,.92);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
}
footer.site .col h4::after{
  content:"";
  display:block;
  width: 32px;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}
footer.site .col div{ margin-bottom: 7px; }
footer.site .bottom{
  border-top: 1px solid rgba(255,255,255,0.13);
  margin-top: 34px;
  padding-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.48);
}

@media (prefers-reduced-motion: no-preference){
  .hero .eyebrow,
  .hero h1,
  .hero .lede,
  .hero .btn,
  .facts,
  section.block .wrap{
    animation: fadeUp .62s ease both;
  }
  .hero h1{ animation-delay: .04s; }
  .hero .lede{ animation-delay: .08s; }
  .hero .btn{ animation-delay: .12s; }
  .facts{ animation-delay: .16s; }
  @keyframes fadeUp{
    from{ opacity: 0; transform: translateY(12px); }
    to{ opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 860px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .hero{ padding: 82px 0 58px; }
  .hero::before{ opacity: .45; right: -240px; top: 80px; }
  h1{ font-size: clamp(38px, 10vw, 56px); }
  section.block{ padding: 68px 0; }
}

@media (max-width: 760px){
  .wrap{ padding: 0 22px; }
  .nav-row{
    align-items:center;
    flex-direction: row;
    padding: 16px 22px 14px;
    gap: 12px;
    position: relative;
  }
  .nav-toggle{ display:inline-flex; }
  nav.main{
    position:absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content:flex-start;
    width:100%;
    gap: 0;
    padding: 6px 22px 16px;
    background: rgba(254,252,248,.98);
    border-bottom: 1px solid rgba(20,33,63,.10);
    box-shadow: 0 24px 48px rgba(20,33,63,.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
  }
  header.site.menu-open nav.main{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: no-preference){
    nav.main{ transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s; }
    header.site.menu-open nav.main{ transition: opacity .2s ease, transform .2s ease; }
  }
  nav.main a{
    margin-left: 0;
    font-size: 15px;
    padding: 14px 2px 14px 14px;
    border-bottom: 1px solid rgba(20,33,63,.08);
  }
  nav.main a:last-child{ border-bottom: none; }
  nav.main a.current{
    color: var(--navy);
    background: rgba(32,60,255,.06);
    border-bottom: 1px solid rgba(20,33,63,.08);
    border-radius: 10px;
    box-shadow: inset 3px 0 0 var(--blue);
  }
  .wordmark{ font-size: 12px; }
  .lede{ max-width: 100%; }
  .facts{ gap: 8px; padding-top: 22px; }
  .facts div{ width: 100%; border-radius: 14px; }
  .card{ padding: 24px; border-radius: 16px; }
  table.info{ border-radius: 16px; }
  table.info td:first-child{ width: auto; display:block; padding-bottom: 2px; border-bottom: none; }
  table.info td:last-child{ display:block; padding-top:0; }
  .founder{ padding: 24px; }
  footer.site .wrap{ display:block; }
  footer.site .col{ margin-bottom: 26px; }
}
