/* VrtyQ marketing site — alpine / mountaineering design system */
:root {
  --bg: #ffffff;
  --bg-soft: #eef3ef;          /* misty stone with a green tint */
  --bg-dark: #12231c;          /* deep forest night */
  --ink: #16261e;              /* granite pine charcoal */
  --ink-soft: #37493f;
  --muted: #6a7d70;
  --primary: #2d6a4f;          /* pine green */
  --primary-dark: #1b4332;     /* deep pine */
  --accent: #ea6a33;           /* summit / sunrise orange */
  --accent-dark: #d1521c;
  --glacier: #2c7a7b;          /* alpine-lake teal */
  --check: #2d8a5f;            /* trail-green check */
  --border: #d7e2da;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16, 38, 30, 0.06), 0 1px 3px rgba(16, 38, 30, 0.05);
  --shadow: 0 10px 30px -12px rgba(16, 48, 34, 0.20);
  --shadow-lg: 0 30px 60px -20px rgba(16, 48, 34, 0.30);
  --grad: linear-gradient(135deg, #1b4332 0%, #2d6a4f 55%, #2c7a7b 100%);   /* pine -> alpine teal */
  --grad-cta: linear-gradient(135deg, #f2803a 0%, #e05a1e 100%);            /* summit orange */
  --grad-soft: linear-gradient(135deg, #e4efe7 0%, #dff0ee 100%);
  --maxw: 1120px;
  --font: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Barlow Condensed", "Barlow", var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 0.5em; font-weight: 700; text-transform: none; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--glacier); }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-size: 0.98rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-dark); margin-bottom: 12px;
}
.lead { font-size: 1.2rem; color: var(--muted); }
.center { text-align: center; }
.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 13px 24px; border-radius: 999px; font-family: var(--font); font-weight: 600; font-size: 1rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: 0 8px 20px -8px rgba(224,90,30,.6); }
.btn-primary:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(224,90,30,.7); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { color: var(--primary-dark); border-color: var(--primary); transform: translateY(-1px); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-light:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.55rem; color: var(--ink); letter-spacing: 0.01em; text-transform: uppercase; }
.brand:hover { color: var(--ink); }
.brand .mark { width: 36px; height: 36px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: 1rem; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: .2s; }

/* Sections */
section { padding: 84px 0; }
.section-head { max-width: 700px; margin: 0 auto 52px; text-align: center; }
.bg-soft { background: var(--bg-soft); }
.bg-grad-soft { background: var(--grad-soft); }

/* Hero */
.hero { padding: 96px 0 72px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(55% 60% at 82% 0%, rgba(44,122,123,.16), transparent 60%),
    radial-gradient(50% 50% at 8% 8%, rgba(45,106,79,.16), transparent 60%),
    radial-gradient(40% 40% at 95% 60%, rgba(234,106,51,.10), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { margin-bottom: 28px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-note { font-size: 0.92rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-shot {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Browser mock */
.mock-bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; border-bottom: 1px solid var(--border); background: #f4f8f5; }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.mock-bar .u { margin-left: 12px; font-size: .78rem; color: var(--muted); background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 3px 10px; }
.mock-body { padding: 22px; }
.mock-row { display: flex; gap: 14px; align-items: center; padding: 12px; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; background: #fff; }
.mock-thumb { width: 46px; height: 46px; border-radius: 8px; background: var(--grad-soft); flex: none; display: grid; place-items: center; }
.mock-lines { flex: 1; }
.mock-lines b { display: block; font-size: .92rem; }
.mock-lines .bar { height: 8px; border-radius: 6px; background: #e6ede8; margin-top: 8px; }
.mock-lines .bar.short { width: 55%; }
.pill { font-size: .72rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.pill.ai { background: #e4efe7; color: var(--primary-dark); }
.pill.ok { background: #dff0ee; color: var(--glacier); }

/* Logo strip */
.logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: .72; }
.logos span { font-family: var(--font-head); font-weight: 700; color: var(--muted); font-size: 1.2rem; letter-spacing: 0.02em; text-transform: uppercase; }

/* Feature grid */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--grad-soft);
  display: grid; place-items: center; margin-bottom: 16px; color: var(--primary);
}
.icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: 0.98rem; }
.tag { display:inline-block; font-size:.72rem; font-weight:600; padding:3px 10px; border-radius:999px; background:#e4efe7; color:var(--primary-dark); margin-left:8px; vertical-align:middle; font-family: var(--font);}
.tag.soon { background:#fbe6d8; color:var(--accent-dark); }
.tag.free { background:#dff0ee; color:var(--glacier); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { position: relative; padding-top: 8px; }
.step .num {
  width: 44px; height: 44px; border-radius: 12px; background: var(--grad); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; margin-bottom: 14px;
}
.step h3 { font-size: 1.3rem; }
.step p { font-size: .97rem; margin: 0; }

/* Split feature rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split + .split { margin-top: 64px; }
.split.rev .split-media { order: 2; }
.feature-list { list-style: none; padding: 0; margin: 18px 0 0; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: var(--ink-soft); }
.feature-list svg { flex: none; width: 20px; height: 20px; color: var(--check); margin-top: 3px; }
.panel {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px;
}
.kv { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: .95rem; }
.kv:last-child { border-bottom: 0; }
.kv b { font-weight: 600; }

/* Comparison table */
.compare { width: 100%; border-collapse: collapse; background:#fff; border:1px solid var(--border); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: .97rem; }
.compare thead th { background: var(--bg-soft); font-weight: 700; font-family: var(--font-head); font-size: 1.15rem; letter-spacing: .01em; }
.compare th:first-child { width: 44%; }
.compare .col-vq { background: #edf5ef; font-weight: 600; color: var(--ink); }
.compare svg { width: 20px; height: 20px; }
.yes { color: var(--check); } .no { color: #b7c3bb; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.price.pop { border: 2px solid var(--primary); box-shadow: var(--shadow); position: relative; }
.price.pop::after {
  content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-cta); color: #fff; font-size: .74rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; letter-spacing: .02em;
}
.price h3 { margin-bottom: 4px; text-transform: uppercase; letter-spacing: .02em; }
.amount { font-family: var(--font-head); font-size: 3.4rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.amount small { font-size: 1rem; font-weight: 500; color: var(--muted); font-family: var(--font); }
.price .credits { color: var(--accent-dark); font-weight: 600; margin: 8px 0 18px; }
.price ul { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.price ul li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; font-size: .96rem; color: var(--ink-soft); }
.price ul svg { flex: none; width: 19px; height: 19px; color: var(--check); margin-top: 3px; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 4px 20px; margin-bottom: 14px; background: #fff;
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1.08rem; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 16px; }

/* CTA band */
.cta-band { background: var(--bg-dark); color: #fff; border-radius: 24px; padding: 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 120% at 50% 0%, rgba(44,122,123,.40), transparent 60%), radial-gradient(50% 100% at 85% 100%, rgba(234,106,51,.22), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto 26px; }

/* Footer */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.72); padding: 64px 0 32px; }
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer h4 { color: #fff; font-family: var(--font-head); font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; font-size: .95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: .88rem; flex-wrap: wrap; gap: 12px; }

/* Legal / content pages */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 1.7rem; margin-top: 1.6em; }
.prose h3 { margin-top: 1.5em; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; color: var(--ink-soft); }
.page-head { padding: 72px 0 40px; text-align: center; }
.page-head .lead { max-width: 620px; margin: 0 auto; }

/* Contact */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:start; }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight:600; font-size:.92rem; margin-bottom:6px; }
.field input, .field textarea, .field select {
  width:100%; padding:12px 14px; border:1px solid var(--border); border-radius:10px; font:inherit; font-size:.98rem; background:#fff;
}
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color: var(--primary); box-shadow:0 0 0 3px rgba(45,106,79,.16); }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .split-media { order: 0; }
  .grid-3, .grid-4, .price-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-shot { max-width: 520px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--border); padding: 18px 24px; gap: 18px; box-shadow: var(--shadow);
  }
  .cta-band { padding: 40px 24px; }
  section { padding: 60px 0; }
}
@media (max-width: 560px) {
  .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .compare th, .compare td { padding: 12px; font-size: .88rem; }
}
