/* AgentIQ Force LaunchPad — shared stylesheet for index.html + contact.html
   Visual language matches clients/agentiq-force (parent brand): same palette,
   type pairing, nav/footer, and card conventions, adapted into a proper
   stylesheet since this is a new site rather than a migration. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0A0F1E;
  --navy2:  #111827;
  --blue:   #2563EB;
  --cyan:   #7C3AED;
  --white:  #F8FAFC;
  --grey:   #94A3B8;
  --grey2:  #1E2A3B;
  --border: rgba(255,255,255,0.08);
  --gold:   #F5B301;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--blue);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 0 0 8px 0;
  z-index: 1000;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

/* ── FOCUS STATES ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6vw;
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.nav-logo span { color: var(--cyan); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--grey); font-size: 0.875rem; font-weight: 500; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--white); }
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover, .nav-cta:focus-visible { background: #1d4ed8; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #1d4ed8;
  transform: translateY(-2px);
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--grey);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  background: transparent;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--grey);
  color: var(--white);
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ── LAYOUT / SECTION PATTERN ── */
section { padding: 7rem 6vw; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-body {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ── HERO ── */
#hero {
  padding-top: 10rem;
  text-align: center;
}
.hero-inner { max-width: 780px; margin: 0 auto; }
.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em { color: var(--cyan); font-style: normal; }
.hero-body {
  color: var(--grey);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PRICING ── */
#pricing { background: var(--navy2); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.pricing-card {
  position: relative;
  background: var(--grey2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(245,179,1,0.08), var(--grey2) 45%);
}

.pricing-badge {
  position: absolute;
  top: -0.85rem;
  left: 2.25rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.pricing-plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 0.25rem;
}
.pricing-amount small {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--grey);
}

.pricing-subnote {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.pricing-features li {
  color: var(--white);
  font-size: 0.92rem;
  padding-left: 1.4rem;
  position: relative;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-domain-note {
  margin-top: 2.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  color: var(--grey);
  font-size: 0.9rem;
}
.pricing-domain-note strong { color: var(--white); }

/* ── ADD-ONS ── */
#addons { background: var(--navy); }

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.addon-card {
  background: var(--grey2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: transform 0.2s, border-color 0.2s;
}
.addon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,0.4);
}

.addon-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.addon-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 0.6rem;
}

.addon-desc {
  color: var(--grey);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── FAQ ── */
#faq { background: var(--navy2); }

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 780px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.02);
}

.faq-q {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.faq-a {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── CTA BANNER ── */
#cta {
  background: linear-gradient(135deg, rgba(37,99,235,0.14), rgba(124,58,237,0.08));
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-inner .section-body { margin: 0 auto 2rem; }

/* ── CONTACT PAGE ── */
#contact-page { background: var(--navy); padding-top: 10rem; }
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-side {
  background: var(--grey2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
}
.contact-side h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.contact-reassure {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-detail a {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-detail a:hover, .contact-detail a:focus-visible { color: var(--gold); }
.contact-detail span {
  display: block;
  color: var(--grey);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

/* ── FORM (shared with contact.html) ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field { display: flex; flex-direction: column; gap: 0.5rem; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.form-help {
  color: var(--grey);
  font-size: 0.78rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(148,163,184,0.6); }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}

.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select option { background: var(--navy2); }

.form-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover, .form-submit:focus-visible { background: #1d4ed8; transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-status {
  font-size: 0.88rem;
  color: var(--grey);
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}

/* ── FOOTER ── */
footer {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
}
.footer-logo span { color: var(--cyan); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { color: var(--grey); font-size: 0.85rem; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--white); }
.footer-copy { color: var(--grey); font-size: 0.8rem; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  section { padding: 4.5rem 6vw; }
  #hero { padding-top: 7rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  section { padding: 3.5rem 5vw; }
  .pricing-card, .contact-side { padding: 1.5rem; }
}
