/* ================================================================
   LOGIC WEISE LLC — Coming Soon  |  styles.css  v2
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --bg:        #08080b;
  --surface:   #0e0e12;
  --surface-2: #13131a;
  --surface-3: #18181f;
  --border:    #1c1c27;
  --border-2:  #242433;
  --border-3:  #2c2c3e;
  --accent:    #2e6fdc;
  --accent-h:  #4a87f5;
  --accent-2:  #b03060;
  --white:     #ffffff;
  --text:      #c2c4d4;
  --text-2:    #8c8fa6;
  --muted:     #5e6078;
  --dim:       #30313f;
  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
  --ease: 0.18s ease;
  --mw:      820px;
  --mw-wide: 1040px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--fb); font-weight: 400; line-height: 1.7;
  min-height: 100vh; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-h); }
ul  { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
h1, h2, h3 { font-family: var(--fd); font-weight: 700; color: var(--white); line-height: 1.06; letter-spacing: -0.01em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.container       { width: 100%; max-width: var(--mw);      margin: 0 auto; padding: 0 1.75rem; }
.container--wide { width: 100%; max-width: var(--mw-wide); margin: 0 auto; padding: 0 1.75rem; }

/* ── BACKGROUND ── */
.page-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.page-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--border-2) 1px, transparent 1px);
  background-size: 32px 32px; opacity: 0.6;
}
.glow-a { position: absolute; top: -20%; left: -12%; width: 760px; height: 760px; background: radial-gradient(circle, rgba(46,111,220,0.08) 0%, transparent 58%); }
.glow-b { position: absolute; bottom: -25%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(176,48,96,0.06) 0%, transparent 60%); }

.site-wrapper { position: relative; z-index: 1; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero { padding: 3.75rem 0 2.75rem; text-align: center; }

.logo-wrap { display: inline-flex; justify-content: center; margin-bottom: 1.85rem; opacity: 0; animation: fadeUp 0.65s ease 0.05s forwards; }
.logo-wrap img { height: 46px; width: auto; filter: brightness(0) invert(1); transition: opacity var(--ease); }
.logo-wrap:hover img { opacity: 0.8; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--fd); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(46,111,220,0.25); padding: 0.25rem 0.8rem;
  border-radius: 100px; background: rgba(46,111,220,0.05);
  margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.65s ease 0.18s forwards;
}
.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; animation: blink 2.4s ease-in-out infinite; }

.headline { font-size: clamp(2.9rem, 6.5vw, 5.2rem); font-weight: 800; margin-bottom: 1.1rem; opacity: 0; animation: fadeUp 0.75s ease 0.3s forwards; }
.headline em { font-style: normal; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-sub { font-size: 0.99rem; font-weight: 300; font-style: italic; color: var(--text-2); max-width: 480px; margin: 0 auto 1.75rem; line-height: 1.75; opacity: 0; animation: fadeUp 0.75s ease 0.44s forwards; }

.hero-cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--fd); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2);
  opacity: 0; animation: fadeUp 0.65s ease 0.58s forwards;
  transition: color var(--ease), gap var(--ease);
}
.hero-cta:hover { color: var(--accent-h); gap: 0.65rem; }
.hero-cta-icon {
  width: 18px; height: 18px; border: 1.5px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; flex-shrink: 0;
}

/* ══════════════════════════════════════════
   LEAD CAPTURE — two-column layout
══════════════════════════════════════════ */
.capture-section { padding: 0 0 5rem; }

.section-rule { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.65s ease 0.66s forwards; }
.section-rule-line { flex: 1; height: 1px; background: var(--border); }
.section-rule-label { font-family: var(--fd); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

.capture-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3.5rem; align-items: start; }

/* ── LEFT ── */
.capture-context { opacity: 0; animation: fadeUp 0.75s ease 0.78s forwards; }
.capture-context h2 { font-size: clamp(1.45rem, 2.6vw, 1.85rem); font-weight: 700; margin-bottom: 0.6rem; line-height: 1.1; }
.capture-lead { font-size: 0.88rem; font-weight: 300; color: var(--text-2); line-height: 1.75; margin-bottom: 1.75rem; }

.reasons { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.reason  { display: flex; align-items: flex-start; gap: 0.75rem; }
.reason-mark {
  width: 20px; height: 20px; border: 1.5px solid rgba(46,111,220,0.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.52rem; color: var(--accent); flex-shrink: 0; margin-top: 2px;
}
.reason-body { font-size: 0.85rem; line-height: 1.55; color: var(--text-2); }
.reason-body strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 0.05rem; }

.direct { padding-top: 1.5rem; border-top: 1px solid var(--border); }
.direct-label { font-family: var(--fd); font-size: 0.59rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.85rem; }
.direct-link { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.55rem; color: inherit; transition: color var(--ease); }
.direct-link:hover { color: var(--accent-h); }
.direct-link-icon {
  width: 30px; height: 30px; background: var(--surface-2); border: 1px solid var(--border-2);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0; transition: border-color var(--ease), background var(--ease);
}
.direct-link:hover .direct-link-icon { border-color: rgba(46,111,220,0.4); background: rgba(46,111,220,0.07); }
.direct-link-text { font-size: 0.86rem; font-weight: 500; color: var(--text-2); transition: color var(--ease); }
.direct-link:hover .direct-link-text { color: var(--accent-h); }

/* ── RIGHT ── */
.capture-form-col { opacity: 0; animation: fadeUp 0.85s ease 0.9s forwards; }

.form-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; position: relative;
  box-shadow: 0 0 0 1px rgba(46,111,220,0.06), 0 20px 40px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.2);
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%); z-index: 2;
}

.form-card-head { padding: 1.25rem 1.5rem 1rem; border-bottom: 1px solid var(--border); }
.form-card-eyebrow { font-family: var(--fd); font-size: 0.59rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.form-card-title { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.15rem; }
.form-card-sub { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

.iframe-shell { position: relative; background: var(--surface-2); min-height: 500px; }
.iframe-shell::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(46,111,220,0.03) 40%, rgba(46,111,220,0.06) 50%, rgba(46,111,220,0.03) 60%, transparent 100%);
  background-size: 200% 100%; animation: shimmer 2.2s ease infinite;
  pointer-events: none; z-index: 0;
}
.iframe-shell iframe { position: relative; z-index: 1; display: block; width: 100%; border: none; min-height: 500px; }

.form-card-foot {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 0.8rem 1.5rem;
  border-top: 1px solid var(--border); background: var(--surface-2); flex-wrap: wrap;
}
.foot-trust { display: flex; align-items: center; gap: 0.35rem; font-size: 0.69rem; color: var(--muted); }
.foot-trust-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); opacity: 0.4; }
.foot-divider { color: var(--dim); font-size: 0.5rem; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-section { padding: 0 0 4.5rem; opacity: 0; animation: fadeUp 0.75s ease 1.05s forwards; }
.services-label { text-align: center; font-family: var(--fd); font-size: 0.59rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.service-item { background: var(--surface-2); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.6rem; transition: background var(--ease); }
.service-item:hover { background: rgba(46,111,220,0.04); }
.service-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: 0.55; flex-shrink: 0; }
.service-name { font-size: 0.82rem; font-weight: 500; color: var(--text-2); letter-spacing: 0.01em; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer { border-top: 1px solid var(--border); padding: 1.75rem 0 2.25rem; }
.footer-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem 1.5rem; margin-bottom: 1.25rem; }
.footer-logo img { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: 0.35; transition: opacity var(--ease); }
.footer-logo:hover img { opacity: 0.6; }
.footer-contact { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem 0.9rem; }
.footer-contact a { font-size: 0.77rem; color: var(--muted); transition: color var(--ease); }
.footer-contact a:hover { color: var(--accent-h); }
.footer-contact-sep { color: var(--dim); font-size: 0.55rem; }
.footer-copy { font-size: 0.7rem; color: var(--dim); }
.footer-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.trust-item { display: flex; align-items: center; gap: 0.35rem; font-size: 0.68rem; color: var(--dim); }
.trust-check { color: var(--accent); opacity: 0.55; font-size: 0.55rem; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink  { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.2; transform: scale(0.6); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .logo-wrap, .eyebrow, .headline, .hero-sub, .hero-cta,
  .section-rule, .capture-context, .capture-form-col, .services-section { opacity: 1; transform: none; animation: none; }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 820px) {
  .capture-grid { grid-template-columns: 1fr; gap: 2rem; }
  .capture-form-col { order: 1; }   /* form first on mobile */
  .capture-context  { order: 2; }
}
@media (max-width: 680px) {
  .hero { padding: 3rem 0 2.25rem; }
  .logo-wrap img { height: 38px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .iframe-shell, .iframe-shell iframe { min-height: 560px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-contact-sep { display: none; }
  .footer-contact { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
}
@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
  .iframe-shell, .iframe-shell iframe { min-height: 620px; }
  .form-card-foot { flex-direction: column; gap: 0.4rem; }
  .foot-divider { display: none; }
}
