@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  --ink: #00153C;
  --ink-soft: #1B2E52;
  --blue: #0B5FE0;
  --blue-dark: #0847AD;
  --blue-tint: #EAF1FD;
  --paper: #FFFFFF;
  --paper-tint: #F5F8FC;
  --slate: #45526B;
  --slate-light: #8792A6;
  --line: #E3E9F2;
  --emerald: #059669;
  --amber: #D97706;
  --violet: #7C3AED;
  --rose: #E11D48;
  --radius: 14px;
  --display: 'Sora', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.nav-logo img { height: 65px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.current { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 18px;
  border-radius: 9px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: white; box-shadow: 0 1px 2px rgba(11,95,224,.15), 0 8px 20px -8px rgba(11,95,224,.55); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink-soft); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 13px 24px; font-size: 15.5px; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--blue);
  display: inline-block;
}
h1, h2, h3 { font-family: var(--display); color: var(--ink); margin: 0; letter-spacing: -0.01em; }
h1 { font-size: 46px; line-height: 1.08; font-weight: 700; }
h2 { font-size: 30px; line-height: 1.2; font-weight: 700; }
h3 { font-size: 18px; font-weight: 700; }
p { line-height: 1.65; color: var(--slate); margin: 0; }
.lede { font-size: 18px; line-height: 1.6; color: var(--ink-soft); }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-tint { background: var(--paper-tint); }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 14px; font-size: 16.5px; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 96px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-top: 18px; }
.hero .lede { margin-top: 20px; max-width: 480px; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--slate-light); }

/* Signature: a stylized live ticket thread, echoing the logo's speech
   bubble and the real app's own message-bubble UI. */
.mock-ticket {
  background: var(--ink);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 60px -25px rgba(0,21,60,.45);
  position: relative;
}
.mock-ticket::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(11,95,224,.7), rgba(11,95,224,0) 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.mock-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mock-id { font-family: var(--mono); font-size: 11.5px; color: #7C90C4; }
.mock-pill {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 600; letter-spacing: .03em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(217,119,6,.18); color: #F0B252;
}
.mock-pill.resolved { background: rgba(5,150,105,.2); color: #34D399; }
.mock-title { color: white; font-family: var(--display); font-weight: 600; font-size: 15.5px; margin-bottom: 16px; }
.mock-msg { max-width: 78%; padding: 10px 13px; border-radius: 12px; font-size: 13.5px; line-height: 1.5; margin-bottom: 10px; }
.mock-msg.them { background: #12224A; color: #C7D3EC; border-bottom-left-radius: 4px; }
.mock-msg.us { background: var(--blue); color: white; margin-left: auto; border-bottom-right-radius: 4px; }
.mock-typing { display: inline-flex; gap: 3px; align-items: center; margin-left: auto; padding: 10px 13px; }
.mock-typing span { width: 5px; height: 5px; border-radius: 999px; background: #5B72A8; animation: bob 1.2s infinite ease-in-out; }
.mock-typing span:nth-child(2) { animation-delay: .15s; }
.mock-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes bob { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-3px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .mock-typing span { animation: none; } }

/* ---------- Callout ---------- */
.callout {
  border-left: 3px solid var(--blue);
  background: var(--blue-tint);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin: 36px 0;
}
.callout h3 { margin-bottom: 8px; }
.callout p { color: var(--ink-soft); }

/* ---------- Feature grid ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; }
.feature {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color .15s ease, transform .15s ease;
}
.feature:hover { border-color: var(--blue); transform: translateY(-2px); }
.feature-dot { width: 9px; height: 9px; border-radius: 999px; margin-bottom: 14px; }
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: 14.5px; }

/* ---------- Logos / trust row ---------- */
.audience-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.audience-chip {
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
  background: var(--paper);
}

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.plan {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 30px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.plan-premium { border-color: var(--blue); position: relative; background: linear-gradient(180deg, var(--blue-tint), #fff 40%); }
.plan-badge {
  position: absolute; top: -13px; left: 30px;
  background: var(--blue); color: white;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .04em;
  padding: 5px 12px; border-radius: 999px;
}
.plan-name { font-family: var(--display); font-weight: 700; font-size: 20px; }
.plan-tagline { font-size: 14px; color: var(--slate); margin-top: 6px; }

.plan-price {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
}

.price {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
  margin-top: -4px;
}

.annual-price {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-top: 10px;
}



.plan-list { margin-top: 24px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.plan-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); align-items: flex-start; }
.plan-list .check { color: var(--blue); font-weight: 700; flex-shrink: 0; }
.plan .btn { margin-top: 28px; width: 100%; }
.plan-compare { margin-top: 90px; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.compare-table th { font-family: var(--display); font-weight: 600; color: var(--ink); }
.compare-table td:not(:first-child), .compare-table th:not(:first-child) { text-align: center; }
.compare-table td:first-child { color: var(--ink-soft); font-weight: 500; }
.yes { color: var(--blue); font-weight: 700; }
.no { color: var(--slate-light); }
.faq { margin-top: 90px; max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item h3 { font-size: 16px; margin-bottom: 8px; }
.faq-item p { font-size: 14.5px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); display: block; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--body); font-size: 14.5px;
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px;
  outline: none; transition: border-color .15s ease; color: var(--ink); background: var(--paper);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 110px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 26px; }
.contact-info-icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--blue-tint);
  color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px;
}
.contact-info-item h3 { font-size: 15px; }
.contact-info-item p { font-size: 14px; margin-top: 3px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  border-radius: 24px;
  padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.cta-band h2 { color: white; font-size: 26px; }
.cta-band p { color: #9CACD1; margin-top: 8px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0; }
footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
footer img { height: 40px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13.5px; color: var(--slate); }
.footer-links a:hover { color: var(--blue); }
.footer-copy { font-size: 12.5px; color: var(--slate-light); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero .wrap, .contact-grid { grid-template-columns: 1fr; }
  .hero .mock-ticket { order: -1; }
  .grid-2, .pricing-grid { grid-template-columns: 1fr; }
  .nav-links { position: fixed; top: 76px; left: 0; right: 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 20px 28px; border-bottom: 1px solid var(--line); gap: 20px; display: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
  h1 { font-size: 34px; }
  h2 { font-size: 25px; }
  .cta-band { flex-direction: column; text-align: center; }
  .plan-compare table { font-size: 13px; }
}

/* ---------- Construction gate ---------- */
.construction-overlay { display: none; }
.construction-mode body > *:not(.construction-overlay) { display: none !important; }
.construction-mode .construction-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 24px;
}
.construction-overlay .emoji { font-size: 56px; margin-bottom: 8px; }
.construction-overlay h1 {
  color: white;
  font-size: 42px;
  margin-bottom: 10px;
}
.construction-overlay p {
  color: #9CACD1;
  font-size: 16px;
  max-width: 440px;
  margin-bottom: 28px;
}
.construction-overlay form {
  display: flex;
  gap: 10px;
}
.construction-overlay input {
  font-family: var(--body);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 9px;
  border: 1px solid #2A3A61;
  background: #0B1730;
  color: white;
  outline: none;
  width: 200px;
}
.construction-overlay input:focus { border-color: var(--blue); }
.construction-overlay .error {
  display: none;
  color: #F87171;
  font-size: 12.5px;
  margin-top: 12px;
}

/* ---- Product preview page ---- */
.preview-block {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.preview-block:last-of-type { border-bottom: none; }
.preview-text { max-width: 640px; }
.preview-text h2 { font-size: 26px; margin-top: 10px; }
.preview-text p { margin-top: 14px; font-size: 16px; line-height: 1.65; color: var(--slate); }
.preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--amber);
  background: #FEF3E2;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 14px;
}
.preview-shot {
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(11,25,64,.04), 0 24px 48px -20px rgba(11,25,64,.25);
  background: #0B1730;
  cursor: zoom-in;
  position: relative;
}
.preview-shot img { width: 100%; display: block; }
.preview-shot::after {
  content: "Click to enlarge";
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  color: white;
  background: rgba(0,21,60,.7);
  padding: 5px 10px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .15s ease;
  pointer-events: none;
}
.preview-shot:hover::after { opacity: 1; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,10,30,.88);
  align-items: center;
  justify-content: center;
  padding: 32px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 96vw;
  max-height: 92vh;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: none;
  color: white;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }
