/* ── ConnectOrbit Technologies — company site ──────────────────────
   Design direction: "quiet orbital system". The company connects
   separate platforms; the visual language is concentric rings and
   nodes on a calm, deep-navy field with a single warm signal accent.
   Corporate-credible first (this site backs a legal-entity
   verification), distinctive second.
   ------------------------------------------------------------------ */

:root{
  --navy:        #0B1B2B;   /* deep field (matches logo dark navy) */
  --navy-2:      #10263B;   /* raised panels */
  --ink:         #14202B;   /* text on light */
  --paper:       #F6F7F5;   /* light sections */
  --paper-2:     #FFFFFF;
  --line:        #DDE3E2;   /* hairlines on light */
  --line-dk:     #24405A;   /* hairlines on navy */
  --muted:       #5C6B74;   /* secondary text on light */
  --muted-dk:    #9FB4C4;   /* secondary text on navy */

  /* logo gradient stops */
  --blue:        #2E6FD6;
  --teal:        #2AA6A0;
  --green:       #4FB03A;
  --signal:      #F0821E;   /* orange — primary accent (the orbiting node) */
  --signal-soft: #F7A94E;

  --maxw: 1120px;
  --r: 14px;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

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

/* ── Header ─────────────────────────────────────────────── */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(11,27,43,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line-dk);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:70px;
}
.brand{ display:flex; align-items:center; gap:11px; }
.brand-icon{ height:34px; width:auto; display:block; }
.brand-name{
  font-family:var(--display);
  font-weight:600; font-size:19px; letter-spacing:.2px;
  color:#fff; white-space:nowrap;
}
.brand-name b{ color:var(--signal); font-weight:600; }
.brand-logo{ height:40px; width:auto; display:block; }
.brand-mark{ width:30px; height:30px; flex:none; }
.brand-name{
  font-family:var(--display);
  font-weight:600; font-size:20px; letter-spacing:.2px;
  color:#fff;
}
.brand-name b{ color:var(--signal); font-weight:600; }
.nav-links{ display:flex; gap:32px; align-items:center; }
.nav-links a{
  color:var(--muted-dk); font-size:15px; font-weight:500;
  transition:color .18s;
}
.nav-links a:hover, .nav-links a.active{ color:#fff; }
.nav-cta{
  border:1px solid var(--signal); color:var(--signal)!important;
  padding:8px 16px; border-radius:999px; font-size:14px;
}
.nav-cta:hover{ background:var(--signal); color:var(--navy)!important; }
.nav-toggle{ display:none; background:none; border:0; cursor:pointer; padding:6px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:#fff; margin:5px 0; transition:.2s; }

/* ── Hero ───────────────────────────────────────────────── */
.hero{
  position:relative; overflow:hidden;
  background:
    radial-gradient(1200px 600px at 72% -10%, #16324B 0%, transparent 60%),
    var(--navy);
  color:#fff;
  padding:96px 0 104px;
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-size:13px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--signal); font-weight:600; margin-bottom:22px;
}
.eyebrow::before{ content:""; width:26px; height:1px; background:var(--signal); display:inline-block; }
.hero h1{
  font-family:var(--display);
  font-weight:600; font-size:clamp(34px,5vw,56px);
  line-height:1.05; letter-spacing:-.5px; margin:0 0 22px;
}
.hero h1 em{ font-style:italic; color:var(--signal-soft); }
.hero p.lead{
  font-size:19px; color:var(--muted-dk); max-width:34ch; margin:0 0 34px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:600; font-size:15px; border-radius:999px;
  padding:13px 24px; cursor:pointer; transition:.18s; border:1px solid transparent;
}
.btn-primary{ background:var(--signal); color:var(--navy); }
.btn-primary:hover{ background:var(--signal-soft); transform:translateY(-1px); }
.btn-ghost{ border-color:var(--line-dk); color:#fff; }
.btn-ghost:hover{ border-color:#fff; }

/* hero logo signature (real brand mark on a soft disc) */
.hero-logo-wrap{ position:relative; aspect-ratio:1/1; width:100%; max-width:440px; margin-inline:auto; display:grid; place-items:center; }
.hero-logo{
  position:relative; z-index:2; width:78%; height:auto;
  filter:drop-shadow(0 18px 40px rgba(0,0,0,.35));
  background:#fff; border-radius:24px; padding:26px;
}
.hero-ring{
  position:absolute; inset:0; border-radius:50%;
  border:1px solid var(--line-dk);
  z-index:1;
}
.hero-ring::before, .hero-ring::after{
  content:""; position:absolute; border-radius:50%;
}
.hero-ring::before{
  inset:6%; border:1px dashed rgba(240,130,30,.35);
  animation:spin 34s linear infinite;
}
.hero-ring::after{
  inset:-9%; border:1px solid rgba(42,166,160,.28);
}
@keyframes spin{ to{ transform:rotate(360deg); } }
@media (prefers-reduced-motion:reduce){ .hero-ring::before{ animation:none; } }

/* ── Section scaffolding ────────────────────────────────── */
section{ padding:88px 0; }
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head .eyebrow{ color:var(--teal); }
.section-head .eyebrow::before{ background:var(--teal); }
.section-head h2{
  font-family:var(--display); font-weight:600;
  font-size:clamp(27px,3.4vw,38px); line-height:1.12; letter-spacing:-.4px;
  margin:0 0 14px; color:var(--ink);
}
.section-head p{ font-size:18px; color:var(--muted); margin:0; }
.on-navy{ background:var(--navy); color:#fff; }
.on-navy h2{ color:#fff; }
.on-navy .section-head p{ color:var(--muted-dk); }

/* pillars */
.pillars{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.pillar{
  background:var(--paper-2); border:1px solid var(--line); border-radius:var(--r);
  padding:30px 26px; transition:.2s;
}
.pillar:hover{ transform:translateY(-3px); box-shadow:0 14px 34px rgba(11,27,43,.08); }
.pillar .ic{
  width:44px; height:44px; border-radius:11px; display:grid; place-items:center;
  background:rgba(232,161,60,.13); margin-bottom:18px;
}
.pillar h3{ font-size:19px; margin:0 0 9px; letter-spacing:-.2px; }
.pillar p{ color:var(--muted); font-size:15.5px; margin:0; }

/* product feature */
.product{
  display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:center;
  background:var(--paper-2); border:1px solid var(--line);
  border-radius:20px; padding:44px; overflow:hidden;
}
.product-copy .kicker{
  font-size:13px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--signal); font-weight:700; margin-bottom:12px;
}
.product-copy h3{ font-family:var(--display); font-weight:600; font-size:30px; margin:0 0 8px; }
.product-copy .rel{ font-size:14px; color:var(--muted); margin:0 0 18px; }
.product-copy ul{ list-style:none; padding:0; margin:0 0 26px; }
.product-copy li{ padding:7px 0 7px 26px; position:relative; color:var(--ink); }
.product-copy li::before{
  content:""; position:absolute; left:0; top:14px;
  width:9px; height:9px; border-radius:50%; background:var(--teal);
}
.product-visual{
  align-self:stretch; border-radius:14px; min-height:300px;
  background:
    radial-gradient(420px 220px at 30% 20%, #1C3A54 0%, transparent 70%),
    linear-gradient(160deg,#0E2438 0%, var(--navy) 100%),
    var(--navy);
  position:relative; display:grid; place-items:center; color:#fff;
  border:1px solid var(--line-dk);
}
.pc-badge{
  font-family:var(--display); font-size:26px; font-weight:600; color:#fff;
  display:flex; align-items:center; gap:12px;
}
.pc-badge .dot{ width:12px; height:12px; border-radius:50%; background:var(--signal); box-shadow:0 0 0 6px rgba(232,161,60,.2); }
.pc-sub{ position:absolute; bottom:22px; left:0; right:0; text-align:center; color:var(--muted-dk); font-size:13.5px; }

/* stats strip */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--line-dk); border-radius:var(--r); overflow:hidden; }
.stat{ padding:30px 26px; border-right:1px solid var(--line-dk); }
.stat:last-child{ border-right:0; }
.stat .n{ font-family:var(--display); font-size:34px; font-weight:600; color:var(--signal); line-height:1; }
.stat .l{ color:var(--muted-dk); font-size:14px; margin-top:8px; }

/* about values */
.values{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:8px; }
.value{ padding:26px; border:1px solid var(--line); border-radius:var(--r); background:var(--paper-2); }
.value h3{ margin:0 0 8px; font-size:18px; }
.value p{ margin:0; color:var(--muted); font-size:15.5px; }
.prose{ max-width:720px; }
.prose p{ font-size:17.5px; color:var(--ink); margin:0 0 20px; }
.prose p.muted{ color:var(--muted); }

/* contact */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.contact-card{ background:var(--paper-2); border:1px solid var(--line); border-radius:var(--r); padding:34px; }
.contact-row{ display:flex; gap:16px; padding:16px 0; border-bottom:1px solid var(--line); }
.contact-row:last-child{ border-bottom:0; }
.contact-row .ic{ width:40px; height:40px; flex:none; border-radius:10px; background:rgba(62,156,147,.12); display:grid; place-items:center; }
.contact-row .k{ font-size:13px; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; }
.contact-row .v{ font-size:16px; color:var(--ink); font-weight:500; }
.contact-row .v a:hover{ color:var(--teal); }
.field{ margin-bottom:16px; }
.field label{ display:block; font-size:14px; font-weight:600; margin-bottom:6px; }
.field input, .field textarea{
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:10px;
  font-family:inherit; font-size:15px; background:var(--paper); color:var(--ink);
}
.field input:focus, .field textarea:focus{ outline:2px solid var(--signal); border-color:transparent; }
.form-note{ font-size:13px; color:var(--muted); margin-top:10px; }

/* map embed */
.map{ border:0; width:100%; height:260px; border-radius:var(--r); margin-top:22px; filter:grayscale(.15); }

/* ── Footer (Meta reads legal identity here) ────────────── */
.site-footer{ background:var(--navy); color:var(--muted-dk); padding:64px 0 30px; border-top:1px solid var(--line-dk); }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:40px; margin-bottom:44px; }
.footer-brand .brand-name{ font-size:22px; margin-bottom:14px; }
.footer-brand p{ font-size:14.5px; max-width:36ch; margin:0 0 18px; }
.legal-block{ font-size:13.5px; line-height:1.7; }
.legal-block .legal-name{ color:#fff; font-weight:600; }
.footer-col h4{ color:#fff; font-size:13px; letter-spacing:.08em; text-transform:uppercase; margin:0 0 16px; }
.footer-col a, .footer-col span{ display:block; color:var(--muted-dk); font-size:14.5px; padding:5px 0; }
.footer-col a:hover{ color:var(--signal); }
.footer-bottom{
  border-top:1px solid var(--line-dk); padding-top:24px;
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:13.5px;
}
.footer-bottom .legal-name{ color:#fff; font-weight:600; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; gap:40px; }
  .orbit{ max-width:340px; }
  .pillars{ grid-template-columns:1fr; }
  .product{ grid-template-columns:1fr; padding:30px; }
  .product-visual{ min-height:220px; order:-1; }
  .stats{ grid-template-columns:repeat(2,1fr); }
  .stat:nth-child(2){ border-right:0; }
  .stat:nth-child(1),.stat:nth-child(2){ border-bottom:1px solid var(--line-dk); }
  .values, .contact-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:30px; }
  .nav-links{
    position:absolute; top:70px; left:0; right:0; flex-direction:column; gap:0;
    background:var(--navy); border-bottom:1px solid var(--line-dk);
    padding:10px 24px 20px; display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:12px 0; width:100%; border-bottom:1px solid var(--line-dk); }
  .nav-cta{ margin-top:10px; text-align:center; }
  .nav-toggle{ display:block; }
}
