:root{
  --bg: #F6F7F9;
  --card: #FFFFFF;
  --text: #202124;
  --muted: #5F6368;
  --border: rgba(32,33,36,0.10);
  --shadow: 0 10px 30px rgba(0,0,0,0.06);

  /* Approx PrecisOne accent blue */
  --blue: #3F8CFF;
  --blue-dark: #2B6FE0;
  --pill: rgba(63,140,255,0.12);
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

.container{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246,247,249,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-wordmark{
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--blue);
}

.brand-o{
  color: #ffffff;
  background: var(--blue);
  padding: 0 8px;
  border-radius: 999px;
  margin: 0 2px;
  display: inline-block;
  transform: translateY(-1px);
}

.brand-sub{
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 10px;
  background: rgba(32,33,36,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.nav{
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-link{
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.nav-link:hover{ color: var(--text); }

.hero{
  padding: 42px 0 28px;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.kicker{
  display: inline-block;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-dark);
  background: var(--pill);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero-title{
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.hero-title .muted{
  color: var(--muted);
  font-weight: 700;
}

.hero-lede{
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--muted);
  max-width: 64ch;
}

.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 14px 0 18px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid rgba(63,140,255,0.35);
  box-shadow: 0 10px 20px rgba(63,140,255,0.16);
}
.btn:hover{ background: var(--blue-dark); }

.btn-secondary{
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-secondary:hover{
  background: rgba(32,33,36,0.03);
}

.link{
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
}
.link:hover{ text-decoration: underline; }

.trust{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.trust-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 14px 10px;
  box-shadow: var(--shadow);
}
.trust-title{
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 8px;
}
.trust-card ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual{
  display: grid;
  gap: 12px;
}

.visual-card{
  background: radial-gradient(1200px 500px at 15% 20%, rgba(63,140,255,0.18), transparent 40%),
              radial-gradient(900px 450px at 90% 10%, rgba(0,0,0,0.06), transparent 45%),
              var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.visual-badge{
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(32,33,36,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 900;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
}

.visual-img{
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
  display: block;
  margin-top: 28px;
}

.visual-fallback .visual-fallback-copy{ display: block; }
.visual-fallback-copy{
  display: none;
  margin-top: 56px;
  padding: 10px 8px;
}
.visual-fallback-title{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 8px;
}
.visual-fallback-sub{
  color: var(--muted);
  font-size: 14px;
}

.visual-note{
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
}

.content{
  padding: 18px 0 22px;
}

.content-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.card h2{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.contact{
  padding: 10px 0 44px;
}

.contact-inner{
  display: flex;
  justify-content: center;
}

.contact-card{
  width: min(820px, 100%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-card h2{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.contact-copy{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.contact-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.email-img{
  height: 28px;
  width: auto;
}

.contact-foot{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer{
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-dot{ opacity: 0.5; }

/* Responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
  .content-grid{ grid-template-columns: 1fr; }
  .brand-wordmark{ font-size: 30px; }
}
.site-footer {
  margin-top: 64px;
  padding: 24px 16px;
  text-align: center;
  font-size: 13px;
  color: #6b7280; /* neutral gray */
}
.site-footer a {
  color: inherit;
  text-decoration: underline;
}
.email-img {
  height: 28px;
  width: auto;
  vertical-align: middle;
}


/* --- Brand logo sizing fix --- */
.brand-logo{
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 920px){
  .brand-logo{ height: 32px; }
}
