/* ══════════════════════════════════════════════════════════
   VERINTY SHARED STYLESHEET — v1.0
   Extracted from index.html — Official Verinty Design System
   ══════════════════════════════════════════════════════════ */

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

/* ─── COLOR SYSTEM ─── */
:root {
  --bg:           #070d14;
  --bg-2:         #0c1420;
  --bg-card:      #0c1420;
  --bg-card-2:    #0e1826;
  --cyan:         #00f0ff;
  --cyan-dim:     rgba(0,240,255,0.10);
  --cyan-glow:    rgba(0,240,255,0.30);
  --cyan-border:  rgba(0,240,255,0.20);
  --cyan-shadow:  0 0 18px rgba(0,240,255,0.18), 0 0 40px rgba(0,240,255,0.08);
  --green:        #34d399;
  --green-dim:    rgba(52,211,153,0.12);
  --green-border: rgba(52,211,153,0.25);
  --red:          #ff4757;
  --red-dim:      rgba(255,71,87,0.12);
  --amber:        #ffb347;
  --text:         #daeae7;
  --text-2:       #7a9e9a;
  --text-3:       #3d5a57;
  --mono:         'JetBrains Mono', monospace;
  --sans:         'DM Sans', sans-serif;
  --display:      'Syne', sans-serif;
}

/* ─── BASE ─── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box !important; }

/* ─── GRID BACKGROUND ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ─── NOISE OVERLAY ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── LAYOUT ─── */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7,13,20,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cyan-border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: #00f0ff;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(0,240,255,0.5), 0 0 24px rgba(0,240,255,0.2);
}
.wordmark span:first-child { color: #ffffff; text-shadow: none; }
.beta-badge {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 10px;
  vertical-align: middle;
  background: var(--cyan-dim);
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-status {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-2);
  letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 6px;
}
.dot-live {
  width: 6px; height: 6px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52,211,153,0.5); }
  50%      { opacity: 0.8; box-shadow: 0 0 0 4px rgba(52,211,153,0); }
}
.btn-nav {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--cyan);
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 14px rgba(0,240,255,0.25);
}
.btn-nav:hover {
  background: #00f0ff;
  box-shadow: 0 0 24px rgba(0,240,255,0.5), 0 0 48px rgba(0,240,255,0.2);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── PAGE INNER LAYOUT ─── */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  position: relative;
  z-index: 1;
}

.page-hero {
  text-align: center;
  padding: 72px 0 64px;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-transform: uppercase;
  border: 1px solid var(--cyan-border);
  padding: 5px 14px;
  border-radius: 3px;
  background: var(--cyan-dim);
  display: inline-block;
  margin-bottom: 28px;
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0,240,255,0.4), 0 0 40px rgba(0,240,255,0.15);
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── SECTIONS ─── */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}

.section-title em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 16px rgba(0,240,255,0.35), 0 0 32px rgba(0,240,255,0.12);
}

.section-sub {
  color: var(--text-2);
  font-size: 1rem;
  max-width: 580px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-3px);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-3px);
}
.feature-card::before {
  content: '';
  display: block;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.pain-card:hover {
  border-color: rgba(255,71,87,0.3);
  transform: translateY(-3px);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.pain-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text);
}
.pain-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── SOLUTION CARD ─── */
.solution-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.solution-card:hover {
  border-color: var(--green-border);
  transform: translateY(-3px);
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
}
.solution-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--green);
}
.solution-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── PRICING ─── */
.price-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 32px 28px;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: #00f0ff;
  background: var(--bg-card-2);
  box-shadow: 0 0 0 1px rgba(0,240,255,0.20),
              0 0 30px rgba(0,240,255,0.10),
              0 0 60px rgba(0,240,255,0.05);
}
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--bg);
  background: var(--cyan);
  padding: 3px 12px;
  border-radius: 0 0 6px 6px;
}
.price-tier {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.price-period {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 24px;
  font-family: var(--mono);
}
.price-divider {
  height: 1px;
  background: var(--cyan-border);
  margin-bottom: 20px;
}
.price-features { list-style: none; flex: 1; margin-bottom: 28px; }
.price-features li {
  font-size: 0.82rem;
  color: var(--text-2);
  padding: 6px 0;
  display: flex; align-items: flex-start; gap: 8px;
  font-weight: 300;
  line-height: 1.5;
}
.price-features li::before {
  content: '→';
  color: #34d399;
  font-family: var(--mono);
  flex-shrink: 0;
  margin-top: 1px;
}
.price-features li.no { color: var(--text-3); }
.price-features li.no::before { content: '—'; color: var(--text-3); }

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--cyan);
  color: var(--bg);
  border: none;
  padding: 14px 28px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 0 14px rgba(0,240,255,0.25);
}
.btn-primary:hover {
  background: #00f0ff;
  box-shadow: 0 0 24px rgba(0,240,255,0.5), 0 0 48px rgba(0,240,255,0.2);
}

.btn-ghost {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
  padding: 14px 28px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--cyan-dim); border-color: var(--cyan); }

.btn-price {
  width: 100%;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 13px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  text-align: center;
}
.btn-price.primary {
  background: var(--cyan);
  color: var(--bg);
  border: none;
  box-shadow: 0 0 14px rgba(0,240,255,0.2);
}
.btn-price.primary:hover {
  background: #00f0ff;
  box-shadow: 0 0 24px rgba(0,240,255,0.5);
}
.btn-price.ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan-border);
}
.btn-price.ghost:hover { background: var(--cyan-dim); border-color: var(--cyan); }

/* ─── CODE BLOCK ─── */
.code-block {
  background: var(--bg-card);
  border: 1px solid var(--cyan-border);
  border-radius: 8px;
  overflow: hidden;
}
.code-header {
  background: var(--bg-card-2);
  border-bottom: 1px solid var(--cyan-border);
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.code-title {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-2);
  letter-spacing: 0.08em;
}
.code-body {
  padding: 20px;
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--cyan);
  overflow-x: auto;
}

/* ─── CHIPS / TAGS ─── */
.chip {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 3px;
  display: inline-block;
}
.chip-cyan  { background: var(--cyan-dim);  color: #00f0ff; border: 1px solid var(--cyan-border); }
.chip-green { background: var(--green-dim); color: var(--green); border: 1px solid var(--green-border); }
.chip-amber { background: rgba(255,179,71,0.10); color: #ffb347; border: 1px solid rgba(255,179,71,0.25); }
.chip-red   { background: var(--red-dim);   color: #ff4757; border: 1px solid rgba(255,71,87,0.25); }

/* ─── SECTION DIVIDER ─── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-border), transparent);
  margin: 0;
  position: relative; z-index: 1;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--bg-card);
  border: 1px solid var(--cyan-border);
  border-radius: 12px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,240,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
}
.cta-band p {
  color: var(--text-2);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 32px;
  font-weight: 300;
  position: relative;
}

/* ─── FAQ ─── */
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── CALLOUT ─── */
.callout {
  background: rgba(0,240,255,0.04);
  border-left: 3px solid var(--cyan);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.callout p { color: var(--text); margin-bottom: 0; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-left {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
}
.footer-left strong { color: var(--cyan); }
.footer-right {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 6px;
  flex-direction: column;
  align-items: flex-end;
}

/* ─── GRIDS ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-status { display: none; }
}

@media (max-width: 640px) {
  .btn-nav { display: none !important; }
  footer .dot-live { display: none; }
  .footer-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  .footer-right {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }
  .footer-right > span {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 16px !important;
    width: 100% !important;
    margin-top: 8px !important;
  }
  .footer-right > span a { margin: 0 !important; }
  .page-wrap { padding: 80px 20px 60px; }
  .page-hero { padding: 40px 0 48px; }
  .cta-band { padding: 40px 24px; }
  #landingSignInBtn { padding: 6px 12px !important; font-size: 0.72rem !important; }
}

/* ─── HAMBURGER NAV ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  order: 2;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #daeae7;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links { display: flex; align-items: center; gap: 16px; }
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #080d0c;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15px !important;
    white-space: normal !important;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .btn-nav { display: block !important; }
  .nav-links .nav-status { display: none; }
}
