:root{
  --navy:#0B1C2D;
  --blue:#1F4ED8;
  --cyan:#00C2D1;
  --white:#FFFFFF;
  --light:#F3F5F7;
  --dark:#2B2B2B;

  --radius:16px;
  --radius-lg:22px;

  --shadow-sm: 0 10px 30px rgba(11,28,45,.12);
  --shadow-md: 0 18px 60px rgba(11,28,45,.18);
  --shadow-glow: 0 18px 60px rgba(0,194,209,.18);

  --border: 1px solid rgba(255,255,255,.12);
  --border-soft: 1px solid rgba(11,28,45,.10);

  --container: 1200px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--dark);
  background:var(--white);
  line-height:1.65;
  overflow-x:hidden;
}

.container{
  width:min(92%, var(--container));
  margin:0 auto;
}

/* Ambient */
.ambient{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(31,78,216,.08), transparent 60%),
    radial-gradient(700px 480px at 85% 22%, rgba(0,194,209,.06), transparent 62%),
    radial-gradient(900px 650px at 55% 85%, rgba(11,28,45,.06), transparent 65%);
}
.orb{
  position:absolute;
  filter: blur(24px);
  opacity:.55;
  border-radius:999px;
}
.orb-1{ width:420px; height:420px; left:-90px; top:120px; background:rgba(31,78,216,.10); }
.orb-2{ width:360px; height:360px; right:-90px; top:220px; background:rgba(0,194,209,.08); }
.orb-3{ width:520px; height:520px; left:35%; bottom:-220px; background:rgba(11,28,45,.08); }

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,28,45,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--navy);
  font-weight:800;
  letter-spacing:.2px;
}
.brand-mark{
  width:34px; height:34px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(31,78,216,.18), rgba(0,194,209,.18));
  border: 1px solid rgba(0,194,209,.28);
  box-shadow: 0 10px 26px rgba(11,28,45,.12);
  position:relative;
}
.brand-mark::after{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:10px;
  border:1px solid rgba(0,194,209,.35);
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-link{
  text-decoration:none;
  color:rgba(43,43,43,.82);
  font-weight:500;
  font-size:13.5px;
  letter-spacing:.2px;
  position:relative;
  padding:8px 10px;
  border-radius:12px;
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover{
  background:rgba(31,78,216,.06);
  color:rgba(11,28,45,.92);
}
.nav-link.active{
  background:rgba(0,194,209,.08);
  color:rgba(11,28,45,.95);
  box-shadow: 0 10px 26px rgba(11,28,45,.08);
}

.header-cta{
  display:flex;
  gap:10px;
  align-items:center;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  font-size:13.5px;
  letter-spacing:.2px;
  border:1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
}
.btn-primary{
  color:#fff;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 22px 70px rgba(0,194,209,.22); }
.btn-secondary{
  background: transparent;
  color: var(--navy);
  border-color: rgba(31,78,216,.28);
}
.btn-secondary:hover{
  transform: translateY(-2px);
  border-color: rgba(0,194,209,.38);
  box-shadow: var(--shadow-sm);
}
.btn-ghost{
  background: rgba(255,255,255,.06);
  color:#fff;
  border-color: rgba(255,255,255,.14);
}
.btn-ghost:hover{
  transform: translateY(-2px);
  border-color: rgba(0,194,209,.28);
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
}
.btn-wide{ width:100%; padding:12px 16px; }

/* Mobile menu */
.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  background: rgba(31,78,216,.06);
  border: 1px solid rgba(11,28,45,.10);
  cursor:pointer;
}
.menu-btn span{
  display:block;
  height:2px;
  width:18px;
  background: rgba(11,28,45,.85);
  margin:5px auto;
  border-radius:8px;
}
.drawer{
  display:none;
  border-top: 1px solid rgba(11,28,45,.08);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
}
.drawer-inner{
  padding:14px 0 18px;
  display:grid;
  gap:10px;
}
.drawer-link{
  text-decoration:none;
  color: rgba(43,43,43,.90);
  font-weight:600;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(31,78,216,.05);
  border: 1px solid rgba(11,28,45,.08);
}
.drawer-btn{ margin-top:6px; }

/* Hero */
.hero{
  position:relative;
  padding: 84px 0 42px;
  background: linear-gradient(135deg, var(--navy), #06111d);
  color:#fff;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(31,78,216,.18), transparent 60%),
    radial-gradient(720px 520px at 85% 25%, rgba(0,194,209,.12), transparent 62%),
    radial-gradient(900px 700px at 55% 95%, rgba(255,255,255,.06), transparent 65%);
  opacity:.9;
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:36px;
  align-items:start;
}
.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom:14px;
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(0,194,209,.85);
  box-shadow: 0 0 0 6px rgba(0,194,209,.10);
}
.hero-title{
  font-size: clamp(34px, 4vw, 56px);
  line-height:1.05;
  margin:0 0 18px;
  letter-spacing:-.03em;
}
.hero-subhead{
  font-size:18px;
  max-width: 720px;
  margin:0 0 14px;
  color: rgba(255,255,255,.88);
}
.hero-mission{
  font-size:15.5px;
  max-width: 720px;
  margin:0 0 26px;
  color: rgba(255,255,255,.80);
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.micro-proof{
  margin-top:22px;
  display:flex;
  gap:12px;
  align-items:center;
  color: rgba(255,255,255,.68);
  font-size:12.5px;
}
.micro-line{
  width:44px;
  height:1px;
  background: rgba(0,194,209,.75);
  box-shadow: 0 0 0 6px rgba(0,194,209,.06);
}

/* Glass panel */
.hero-panel .panel{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.08);
  border: var(--border);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  padding:18px;
}
.panel-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.panel-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,194,209,.24);
  background: rgba(0,194,209,.06);
  color: rgba(255,255,255,.92);
  font-weight:600;
  font-size:13px;
}
.badge-glow{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(0,194,209,.95);
  box-shadow: 0 0 0 6px rgba(0,194,209,.10);
}
.panel-divider{
  flex:1;
  height:1px;
  background: linear-gradient(90deg, rgba(0,194,209,.45), rgba(255,255,255,.08));
  opacity:.9;
}
.panel-stats{ display:grid; gap:12px; margin-top:14px; }
.kpi{
  padding:12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.kpi-label{
  font-size:12px;
  color: rgba(255,255,255,.70);
  letter-spacing:.10em;
  text-transform:uppercase;
  margin-bottom:6px;
}
.kpi-value{
  font-size:13.5px;
  color: rgba(255,255,255,.92);
  font-weight:600;
}
.panel-actions{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.panel-foot{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:14px;
  color: rgba(255,255,255,.64);
  font-size:12px;
}
.thin-cyan{
  width:2px;
  height:34px;
  background: rgba(0,194,209,.85);
  border-radius:999px;
  box-shadow: 0 0 0 6px rgba(0,194,209,.08);
}

/* Proof strip */
.proof-strip{
  background: var(--light);
  border-bottom: 1px solid rgba(11,28,45,.06);
}
.proof-inner{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  flex-wrap:wrap;
}
.proof-item{
  display:flex;
  gap:10px;
  align-items:center;
  color: rgba(43,43,43,.86);
  font-weight:600;
  font-size:13px;
}
.proof-icon{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(0,194,209,.85);
  box-shadow: 0 0 0 6px rgba(0,194,209,.08);
}
.proof-divider{
  width:1px;
  height:18px;
  background: rgba(11,28,45,.12);
}

/* Sections */
.section{
  padding: 78px 0;
}
.section-alt{
  background: var(--light);
  border-top: 1px solid rgba(11,28,45,.05);
  border-bottom: 1px solid rgba(11,28,45,.05);
}
.section-head{
  margin-bottom:28px;
}
.section-title{
  margin:0;
  color: var(--navy);
  font-size: clamp(26px, 2.4vw, 38px);
  letter-spacing:-.02em;
}
.section-subtitle{
  margin:10px 0 0;
  color: rgba(43,43,43,.72);
  font-weight:600;
}

/* Stats */
.stats{
  padding: 62px 0 76px;
  background:#fff;
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.stat-card{
  border-radius: var(--radius);
  border: var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 22px 20px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.stat-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.stat-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.stat-line{
  width:26px;
  height:2px;
  background: rgba(0,194,209,.92);
  border-radius:999px;
}
.stat-title{
  margin:0;
  color: var(--navy);
  font-size: 14px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.stat-text{
  margin:0;
  color: rgba(43,43,43,.80);
  font-weight:600;
}

/* Pillars */
.pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.pillar{
  border-radius: var(--radius-lg);
  background: #fff;
  border: var(--border-soft);
  box-shadow: var(--shadow-sm);
  padding:22px;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pillar:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pillar::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background: linear-gradient(90deg, rgba(31,78,216,.9), rgba(0,194,209,.9));
}
.pillar-num{
  font-weight:800;
  color: rgba(11,28,45,.22);
  letter-spacing:.12em;
  font-size: 12px;
  margin-bottom:10px;
}
.pillar-title{
  margin:0 0 10px;
  color: var(--navy);
  font-size:18px;
}
.pillar-text{
  margin:0;
  color: rgba(43,43,43,.78);
}

/* Synergy visual */
.synergy{
  margin-top:26px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap:14px;
  align-items:center;
}
.syn-card{
  background:#fff;
  border: var(--border-soft);
  border-radius: 18px;
  padding:14px 16px;
  box-shadow: var(--shadow-sm);
}
.syn-label{
  color: var(--navy);
  font-weight:700;
}
.syn-bar{
  margin-top:10px;
  height:2px;
  width:100%;
  background: rgba(11,28,45,.10);
  position:relative;
  border-radius:999px;
}
.syn-bar::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:2px;
  width:60%;
  border-radius:999px;
  background: rgba(0,194,209,.85);
}
.syn-connector{
  display:flex;
  align-items:center;
  gap:10px;
}
.syn-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(0,194,209,.85);
  box-shadow: 0 0 0 6px rgba(0,194,209,.08);
}
.syn-line{
  width:120px;
  height:1px;
  background: linear-gradient(90deg, rgba(0,194,209,.8), rgba(31,78,216,.55));
}

/* Cards */
.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.card{
  background:#fff;
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding:22px;
  transition: transform .18s ease, box-shadow .18s ease;
  position:relative;
  overflow:hidden;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card-icon{
  width:38px; height:38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(31,78,216,.10), rgba(0,194,209,.10));
  border: 1px solid rgba(0,194,209,.18);
  margin-bottom:12px;
}
.card-title{
  margin:0 0 10px;
  color: var(--navy);
  font-size:18px;
}
.card-text{
  margin:0;
  color: rgba(43,43,43,.78);
}

/* Video placeholder (dark block) */
.video-block{
  margin-top:22px;
  border-radius:22px;
  overflow:hidden;
  box-shadow: 0 30px 90px rgba(11,28,45,.25);
  background: linear-gradient(135deg, #081524, #050d18);
  border: 1px solid rgba(255,255,255,.08);
 
}
.video-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:0;
}
.video-frame{
  height:100%;
  overflow:hidden;
  border-radius:18px 0 0 18px;
}
.video-frame::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(11,28,45,.35),
    rgba(11,28,45,.55)
  );
}
.video-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.portrait{
  height:290px;
  overflow:hidden;
  position:relative;

  background:
    radial-gradient(900px 320px at 30% 30%, rgba(31,78,216,.18), transparent 60%),
    radial-gradient(700px 320px at 70% 60%, rgba(0,194,209,.12), transparent 62%),
    linear-gradient(180deg, rgba(11,28,45,.06), rgba(11,28,45,.02));

}

.portrait img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.video-copy{
  padding:18px;
  border-left: 1px solid rgba(255,255,255,.08);
}

/* Split acquisitions */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:start;
}
.body-block{
  margin:0 0 14px;
  color: rgba(43,43,43,.80);
  font-weight:500;
}
.steps{
  display:grid;
  gap:12px;
}
.step{
  display:grid;
  grid-template-columns: 16px 1fr;
  column-gap:12px;
  align-items:start;
}
.step-dot{
  width:10px; height:10px;
  margin-top:14px;
  border-radius:999px;
  background: rgba(0,194,209,.85);
  box-shadow: 0 0 0 6px rgba(0,194,209,.08);
}
.step-line{
  width:2px;
  height:36px;
  background: rgba(11,28,45,.10);
  margin-left:4px;
  margin-top:2px;
}
.step-card{
  background:#fff;
  border: var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding:14px 14px;
  min-height: 70px;   /* ⭐ ADD THIS */
}
.step-head{
  font-weight:800;
  color: rgba(11,28,45,.30);
  letter-spacing:.12em;
  font-size:12px;
}
.note{
  margin-top:12px;
  display:flex;
  gap:10px;
  align-items:center;
  color: rgba(43,43,43,.62);
  font-size:12.5px;
}
.note-line{
  width:26px;
  height:2px;
  border-radius:999px;
  background: rgba(0,194,209,.85);
}.video-copy{
  padding: 28px;
  border-left: 1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.video-title{
  color:#fff;
  font-size:22px;
  font-weight:700;
  margin-bottom:12px;
}

.video-sub{
  color:rgba(255,255,255,.75);
  font-size:14px;
  line-height:1.6;
  margin-bottom:20px;
}

.video-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}


/* CTA band */
.cta-band{
  background: linear-gradient(90deg, rgba(31,78,216,.95), rgba(0,194,209,.82));
  padding: 34px 0;
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* Leadership */
.leader{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:22px;
  align-items:start;
}
.leader-media{
  border-radius: var(--radius-lg);
  background: #fff;
  border: var(--border-soft);
  box-shadow: var(--shadow-sm);
  overflow:hidden;
}

.cred-strip{
  display:flex;
  gap:10px;
  align-items:center;
  padding:14px 16px;
  border-top: 1px solid rgba(11,28,45,.08);
}
.cred-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(0,194,209,.85);
  box-shadow: 0 0 0 6px rgba(0,194,209,.08);
}
.leader-content{
  background:#fff;
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding:22px;
}
.leader-name{
  margin:0 0 10px;
  color: var(--navy);
  font-size:18px;
}
.leader-text{
  margin:0 0 12px;
  color: rgba(43,43,43,.78);
  font-weight:500;
}
.capabilities{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.cap-card{
  border-radius: 18px;
  border: var(--border-soft);
  background: rgba(243,245,247,.65);
  padding:12px;
}
.cap-line{
  display:block;
  width:26px;
  height:2px;
  background: rgba(0,194,209,.85);
  border-radius:999px;
  margin-bottom:8px;
}

/* Footer */
.footer{
  background: var(--navy);
  color: rgba(255,255,255,.86);
  padding: 34px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer-brand{
  font-weight:800;
  letter-spacing:.2px;
  color:#fff;
  margin-bottom:8px;
}
.footer-text{
  margin:4px 0;
}
.footer-links{
  margin:0 0 10px;
  color: rgba(255,255,255,.78);
}
.backtop{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  border-bottom:1px solid rgba(0,194,209,.55);
  padding-bottom:2px;
}

/* Reveal animations (very restrained) */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero-grid{ grid-template-columns: 1fr; }
  .stats-grid, .pillars, .cards-3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .leader{ grid-template-columns: 1fr; }
  .capabilities{ grid-template-columns: 1fr; }
  .video-inner{ grid-template-columns: 1fr; }
  .video-copy{ border-left:none; border-top: 1px solid rgba(255,255,255,.08); }
  .proof-divider{ display:none; }
}

/* CARDS */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.card{
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}
/* FINTECH SECTION */
.fin-intro{
  max-width:900px;
  margin-bottom:30px;
  font-size:17px;
}

.fin-subtitle{
  margin-top:50px;
  margin-bottom:16px;
  color:var(--navy);
  font-size:26px;
}

.fin-text{
  margin-bottom:24px;
  max-width:900px;
}

.fintech-card{
  border-top:3px solid var(--cyan);
}

/* TABLE */
.table-wrap{
  overflow:auto;
  margin-top:20px;
}

.fin-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.fin-table th{
  background:var(--navy);
  color:#fff;
  padding:14px;
  text-align:left;
}

.fin-table td{
  padding:14px;
  border-bottom:1px solid #eee;
}

/* FEEDBACK LOOP */
.loop-box{
  margin-top:30px;
  display:grid;
  gap:14px;
}

.loop-step{
  background:#fff;
  padding:16px;
  border-left:4px solid var(--cyan);
  border-radius:10px;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
}
/* INVESTOR SECTION */
.investor-intro{
  max-width:850px;
  margin-bottom:40px;
  font-size:17px;
}

.investor-wrapper{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:40px;
}

/* LEFT */
.investor-info h3{
  color:var(--navy);
  margin-bottom:12px;
}

.investor-points{
  margin-top:20px;
  padding-left:18px;
}

.investor-points li{
  margin-bottom:8px;
}

/* FORM BOX */
.investor-form-box{
  background:#fff;
  padding:28px;
  border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,.08);
  border:1px solid #eee;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.form-group{
  display:flex;
  flex-direction:column;
}

.form-group.full{
  grid-column:span 2;
}

.form-group label{
  font-size:13px;
  margin-bottom:6px;
  font-weight:600;
}

.form-group input,
.form-group select,
.form-group textarea{
  padding:12px;
  border-radius:8px;
  border:1px solid #ddd;
  font-family:inherit;
}

.form-btn{
  margin-top:20px;
  width:100%;
}

/* MOBILE */
@media(max-width:900px){
  .investor-wrapper{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .form-group.full{grid-column:span 1}
}
.logo img{
  height:90px;
  width:100%;
  display:block;
}
