﻿:root {
  --navy: #062f67;
  --navy-dark: #001e48;
  --teal: #069baa;
  --teal-bright: #09aeba;
  --ink: #05295b;
  --muted: #667890;
  --line: rgba(6, 47, 103, 0.18);
  --white: #ffffff;
  --soft: #f5f9fb;
  --shadow: 0 22px 55px rgba(6, 47, 103, 0.15);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  min-height: 100%;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, rgba(6,155,170,0.12), transparent 32%), linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,251,253,0.92));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 86px) clamp(24px, 7vw, 112px) clamp(30px, 4vw, 58px);
}

.background-mark {
  position: absolute;
  inset: 0 auto auto -90px;
  width: 310px;
  height: 310px;
  opacity: .08;
  pointer-events: none;
}

.mark-dot {
  position: absolute;
  left: 120px;
  top: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
}

.mark-swoosh-one,
.mark-swoosh-two {
  position: absolute;
  border-radius: 50%;
  transform: rotate(-31deg);
}

.mark-swoosh-one {
  left: 0;
  top: 92px;
  width: 250px;
  height: 82px;
  border-top: 34px solid var(--navy);
}

.mark-swoosh-two {
  left: 38px;
  top: 132px;
  width: 240px;
  height: 86px;
  border-bottom: 26px solid var(--teal);
}

.hero-content { position: relative; z-index: 2; }

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo-symbol {
  position: relative;
  width: clamp(86px, 9vw, 128px);
  aspect-ratio: 1;
  flex: 0 0 auto;
}

.person-head {
  position: absolute;
  left: 44%;
  top: 22%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--teal), #027a93);
  transform: translateX(-50%);
}

.person-body {
  position: absolute;
  left: 33%;
  top: 41%;
  width: 34%;
  height: 37%;
  background: linear-gradient(135deg, var(--teal-bright), var(--navy));
  border-radius: 60% 60% 55% 55%;
  transform: rotate(22deg) skewX(-8deg);
}

.orbit {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.orbit-teal { border-top: 8px solid var(--teal); border-left: 6px solid transparent; }
.orbit-navy { border-bottom: 8px solid var(--navy); border-right: 6px solid transparent; }

.wordmark {
  display: flex;
  gap: .18em;
  align-items: baseline;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--navy);
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 3px 0 rgba(0,0,0,.02);
}

.wordmark .teal { color: var(--teal); font-size: .72em; }

.pillars {
  display: grid;
  grid-template-columns: 48px auto min-content auto min-content auto 48px;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: clamp(13px, 1.2vw, 20px);
  font-weight: 800;
}

.pillars span { height: 3px; background: var(--teal); }
.pillars i { color: var(--teal); font-style: normal; }

.launch-copy { margin-top: clamp(48px, 6vw, 92px); }

.launch-copy h1 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: .035em;
  font-weight: 900;
}

.launch-copy p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--navy-dark);
  font-size: clamp(18px, 1.7vw, 27px);
  line-height: 1.48;
  font-weight: 500;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 26px 0 0;
  font-size: clamp(15px, 1.35vw, 22px);
  font-weight: 500;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-dark);
  text-decoration: none;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.divider { width: 1px; height: 34px; background: var(--teal); }

.signup-card {
  display: grid;
  grid-template-columns: 58px minmax(160px, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(720px, 100%);
  margin-top: 34px;
  padding: 24px 28px;
  background: rgba(255,255,255,.9);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.email-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #eaf2f5;
  color: var(--teal);
  font-size: 30px;
}

.signup-card input {
  width: 100%;
  height: 60px;
  border: 1px solid rgba(6,47,103,.28);
  border-radius: 8px;
  padding: 0 22px;
  font: inherit;
  font-size: 18px;
  color: var(--navy);
  outline: none;
}

.signup-card input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(6,155,170,.13); }

.signup-card button {
  height: 60px;
  border: 0;
  border-radius: 9px;
  padding: 0 30px;
  background: linear-gradient(135deg, var(--teal), #047d98);
  color: #fff;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(6,155,170,.25);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.hero-visual img {
  display: block;
  width: min(580px, 100%);
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 18px 28px rgba(6,47,103,.12));
}

.everyone-motion {
  display: grid;
  grid-template-columns: minmax(70px, 220px) auto minmax(70px, 220px);
  align-items: center;
  gap: 28px;
  max-width: 980px;
  margin: 8px auto 32px;
  padding: 0 24px;
  text-align: center;
}

.everyone-motion > span { height: 2px; background: var(--teal); }
.everyone-motion h2 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .45em;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 900;
  white-space: nowrap;
}

.motion-contact {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: -8px;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
  color: var(--teal);
}

.motion-contact a { color: var(--teal); text-decoration: none; }
.motion-contact i { color: var(--navy); font-style: normal; opacity: .55; }

.footer {
  background: linear-gradient(105deg, var(--navy-dark), var(--navy));
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 36px 42px;
}

.footer-point,
.social-point {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 34px;
  border-right: 1px solid rgba(255,255,255,.45);
}

.social-point { flex-direction: column; align-items: flex-start; justify-content: center; border-right: 0; }
.footer-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 3px solid var(--teal-bright);
  border-radius: 50%;
  color: var(--teal-bright);
  font-size: 34px;
}

.footer h3 {
  margin: 0 0 10px;
  color: var(--teal-bright);
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: .03em;
}

.footer p { margin: 0; line-height: 1.45; font-size: 14px; text-align: justify; text-align-last: left; }
.socials { display: flex; gap: 28px; }
.socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
}

.copyright {
  padding: 23px 18px 26px;
  text-align: center;
  background: linear-gradient(90deg, #04909e, #08aeba);
  color: #fff;
  font-size: 18px;
}

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .logo-lockup, .contact-strip { justify-content: center; }
  .pillars { max-width: 760px; margin-left: auto; margin-right: auto; }
  .launch-copy p, .signup-card { margin-left: auto; margin-right: auto; }
  .hero-visual img { width: min(480px, 78vw); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
}

@media (max-width: 700px) {
  .hero { padding: 36px 18px 26px; }
  .logo-lockup { flex-direction: column; gap: 12px; }
  .wordmark { font-size: clamp(34px, 12vw, 50px); }
  .pillars { grid-template-columns: 1fr; gap: 6px; letter-spacing: .16em; }
  .pillars span { display: none; }
  .signup-card { grid-template-columns: 1fr; padding: 22px; }
  .email-icon { margin: 0 auto; }
  .signup-card button { width: 100%; }
  .divider { display: none; }
  .everyone-motion { grid-template-columns: 1fr; gap: 12px; margin-top: 14px; }
  .everyone-motion > span { display: none; }
  .everyone-motion h2 { white-space: normal; letter-spacing: .28em; }
  .motion-contact { flex-direction: column; gap: 7px; }
  .motion-contact i { display: none; }
  .footer-inner { grid-template-columns: 1fr; padding: 30px 22px; }
  .footer-point, .social-point { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); padding: 24px 0; }
  .social-point { align-items: center; border-bottom: 0; }
}
#reference  {

 display:none;  
  }
  .text-center{text-align:center!important}
  .p-4{padding:1.5rem!important}