/* ============================================
   LANDMARK DIGITAL — CSS
   ============================================ */

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

:root {
  --black:     #080808;
  --dark:      #111;
  --card-bg:   #141414;
  --border:    rgba(255,255,255,.08);
  --mid:       #888;
  --light:     #bbb;
  --white:     #fff;
  --accent:    #1a56db;
  --accent-dk: #1342b5;
  --gradient:  linear-gradient(135deg,#1a56db 0%,#7c3aed 100%);
  --radius:    14px;
  --shadow:    0 4px 32px rgba(0,0,0,.4);
  --t:         0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--black); color: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* ── Buttons ─────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .7rem 1.5rem; border-radius: 8px; font-family: inherit; font-size: .9rem; font-weight: 600; cursor: pointer; border: 1.5px solid transparent; text-decoration: none; transition: all var(--t); white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--white); color: var(--black); }
.btn--primary:hover { background: #e8e8e8; }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.2); }
.btn--ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }
.btn--white { background: var(--white); color: var(--black); }
.btn--white:hover { background: #eee; }
.btn--nav { background: var(--white); color: var(--black); font-size: .82rem; padding: .5rem 1.1rem; border-radius: 7px; }
.btn--nav:hover { background: #e0e0e0; }
.btn--lg { padding: .9rem 2rem; font-size: .95rem; border-radius: 10px; }
.btn--full { width: 100%; }

/* ── Reveal ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ── Nav ─────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.1rem 0; transition: background var(--t), box-shadow var(--t), padding var(--t); }
.nav.scrolled { background: rgba(8,8,8,.92); backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--border); padding: .75rem 0; }
.nav__inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; gap: 2rem; }
.nav__logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; flex-shrink: 0; }
.nav__logo-img { width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0; }
.nav__logo-text { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: -.01em; }
.nav__logo-text strong { color: var(--white); font-weight: 700; }
.nav__links { display: flex; list-style: none; gap: 2rem; margin-left: auto; }
.nav__links a { text-decoration: none; color: rgba(255,255,255,.5); font-size: .86rem; font-weight: 500; transition: color var(--t); }
.nav__links a:hover { color: var(--white); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; margin-left: auto; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; }
.nav__mobile { display: none; flex-direction: column; gap: .25rem; padding: 1rem 2rem 1.5rem; background: rgba(8,8,8,.98); border-top: 1px solid var(--border); }
.nav__mobile.open { display: flex; }
.nav__mobile-link { text-decoration: none; color: rgba(255,255,255,.7); font-size: 1rem; font-weight: 500; padding: .6rem 0; }

/* ── Hero ─────────────────────────────────── */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; padding: 120px 0 80px; }
.hero__noise { position: absolute; 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.04'/%3E%3C/svg%3E"); pointer-events: none; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero__glow--1 { width: 600px; height: 600px; background: rgba(26,86,219,.12); top: -100px; right: -100px; }
.hero__glow--2 { width: 400px; height: 400px; background: rgba(124,58,237,.08); bottom: -50px; left: 10%; }
.hero__container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }

.hero__badge { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .9rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 100px; font-size: .74rem; font-weight: 500; color: rgba(255,255,255,.6); letter-spacing: .02em; margin-bottom: 1.5rem; }
.badge__dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero__headline { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.8rem, 4.5vw, 4.4rem); font-weight: 800; line-height: 1.07; letter-spacing: -.02em; color: var(--white); margin-bottom: 1.5rem; }
.hero__headline em { font-style: italic; color: rgba(255,255,255,.55); }
.hero__sub { font-size: 1rem; color: rgba(255,255,255,.5); max-width: 460px; margin-bottom: 2.25rem; line-height: 1.8; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__proof { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.proof__item { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: rgba(255,255,255,.5); }
.proof__dot { width: 3px; height: 3px; background: rgba(255,255,255,.2); border-radius: 50%; }

/* Hero Screen */
.hero__visual { position: relative; }
.hero__screen { background: #111; border-radius: 16px; border: 1px solid rgba(255,255,255,.1); overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.6); }
.hscreen__bar { display: flex; align-items: center; gap: .5rem; padding: .65rem .9rem; background: #0a0a0a; border-bottom: 1px solid rgba(255,255,255,.06); }
.hscreen__dots { display: flex; gap: 5px; }
.hscreen__dots span { width: 9px; height: 9px; border-radius: 50%; }
.hscreen__dots span:nth-child(1) { background: #ff5f57; }
.hscreen__dots span:nth-child(2) { background: #febc2e; }
.hscreen__dots span:nth-child(3) { background: #28c840; }
.hscreen__url { flex: 1; background: rgba(255,255,255,.05); border-radius: 5px; padding: .22rem .7rem; font-size: .65rem; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: .4rem; justify-content: center; font-family: monospace; }
.hscreen__body { padding: .8rem; display: flex; flex-direction: column; gap: .6rem; }
.hscreen__topbar { height: 24px; background: var(--gradient); border-radius: 5px; opacity: .8; }
.hscreen__hero { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 8px; padding: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.hscreen__h1 { height: 10px; background: rgba(255,255,255,.18); border-radius: 3px; width: 60%; }
.hscreen__h2 { height: 7px; background: rgba(255,255,255,.08); border-radius: 3px; width: 80%; }
.hscreen__cta { height: 20px; background: var(--gradient); border-radius: 4px; width: 32%; margin-top: .3rem; opacity: .7; }
.hscreen__cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .5rem; }
.hscreen__card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 7px; padding: .6rem; display: flex; flex-direction: column; gap: .35rem; }
.hscreen__card-img { height: 44px; background: linear-gradient(135deg,rgba(26,86,219,.25),rgba(124,58,237,.25)); border-radius: 4px; }
.hscreen__card-line { height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; }
.hscreen__card-line--sm { width: 60%; }

.hero__pill { position: absolute; background: rgba(16,16,16,.95); border: 1px solid rgba(255,255,255,.12); border-radius: 100px; padding: .45rem .9rem; display: flex; align-items: center; gap: .5rem; font-size: .74rem; font-weight: 500; color: var(--white); backdrop-filter: blur(12px); white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.hero__pill--top { top: -1rem; right: -1.5rem; }
.hero__pill--bottom { bottom: -1rem; left: -1.5rem; }
.hero__pill-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; flex-shrink: 0; }
.hero__pill-live { background: rgba(74,222,128,.15); color: #4ade80; padding: .1rem .5rem; border-radius: 100px; font-size: .65rem; font-weight: 700; }
.hero__scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; font-size: .7rem; color: rgba(255,255,255,.25); letter-spacing: .1em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.25), transparent); }

/* ── Sections ───────────────────────────── */
.section { padding: 7rem 0; }
.section--dark { background: #0d0d0d; }
.section-header { text-align: center; max-width: 580px; margin: 0 auto 4rem; }
.section-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .75rem; }
.section-eyebrow--light { color: rgba(255,255,255,.3); }
.section-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: var(--white); margin-bottom: 1rem; }
.section-title--light { color: var(--white); }
.section-sub { font-size: .95rem; color: rgba(255,255,255,.45); line-height: 1.75; }
.section-sub--light { color: rgba(255,255,255,.4); }

/* ── Steps ──────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.step { background: #0d0d0d; padding: 2.5rem; display: flex; gap: 1.5rem; align-items: flex-start; transition: background var(--t); }
.step:hover { background: #131313; }
.step__num { font-family: 'Playfair Display', Georgia, serif; font-size: 2.5rem; font-weight: 700; color: rgba(255,255,255,.07); line-height: 1; flex-shrink: 0; width: 52px; }
.step__body h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.step__body p { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.75; }

/* ── Why ────────────────────────────────── */
.why-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.why-left { display: flex; flex-direction: column; gap: 1.25rem; }
.why-body { font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.85; }
.founder-block { display: flex; align-items: center; gap: .85rem; padding: 1.25rem; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); }
.founder-av { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; font-weight: 700; flex-shrink: 0; }
.founder-name { font-size: .9rem; font-weight: 700; color: var(--white); }
.founder-sub { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: .15rem; }
.why-right { display: flex; flex-direction: column; }
.why-row { display: flex; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.why-row:first-child { border-top: 1px solid var(--border); }
.why-row__num { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.2); letter-spacing: .06em; flex-shrink: 0; padding-top: .2rem; width: 24px; }
.why-row h4 { font-size: .92rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.why-row p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; }

/* ── Pricing ────────────────────────────── */
.pricing-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: visible; margin-bottom: 1.5rem; margin-top: 1rem; }
.pricing-tier { background: var(--card-bg); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: .75rem; position: relative; transition: background var(--t); border-radius: 0; }
.pricing-tier:hover { background: #181818; }
.pricing-tier--mid { background: #111827; }
.pricing-tier--mid:hover { background: #151f2e; }
.pricing-tier__tag { position: absolute; top: -10px; left: 2rem; background: var(--gradient); color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .18rem .7rem; border-radius: 100px; }
.pricing-tier__label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.3); }
.pricing-tier__range { font-family: 'Playfair Display', Georgia, serif; font-size: 1.75rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; }
.pricing-tier--mid .pricing-tier__range { color: #93b4ff; }
.pricing-tier__bar { height: 2px; background: rgba(255,255,255,.08); border-radius: 100px; overflow: hidden; }
.pricing-tier__fill { height: 100%; background: rgba(255,255,255,.2); border-radius: 100px; }
.pricing-tier--mid .pricing-tier__fill { background: linear-gradient(90deg,#4080ff,#a78bfa); }
.pricing-tier__list { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.pricing-tier__list li { font-size: .86rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: .6rem; }
.pricing-tier__list li::before { content: '—'; color: rgba(255,255,255,.15); font-size: .7rem; flex-shrink: 0; }
.pricing-tier--mid .pricing-tier__list li { color: rgba(255,255,255,.75); }
.pricing-footer { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.pricing-footer__items { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.pricing-footer__item { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: rgba(255,255,255,.45); }
.pricing-footer__item svg { width: 13px; height: 13px; flex-shrink: 0; color: #4ade80; }

/* ── Testimonials ───────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testi-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; transition: border-color var(--t), transform var(--t); }
.testi-card:hover { border-color: rgba(255,255,255,.18); transform: translateY(-3px); }
.testi-stars { color: #facc15; font-size: .95rem; letter-spacing: .05em; }
.testi-card p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.75; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.testi-av { width: 38px; height: 38px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .9rem; font-weight: 700; flex-shrink: 0; }
.testi-name { font-size: .88rem; font-weight: 700; color: var(--white); }
.testi-biz { font-size: .75rem; color: rgba(255,255,255,.35); margin-top: .1rem; }

/* ── Contact ────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.contact-left { display: flex; flex-direction: column; gap: 1.25rem; padding-top: .5rem; }
.contact-body { font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: .75rem; margin-top: .5rem; }
.contact-detail { display: flex; align-items: center; gap: .65rem; font-size: .88rem; color: rgba(255,255,255,.4); }
.contact-detail svg { flex-shrink: 0; opacity: .6; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.4); letter-spacing: .03em; }
.form-group input, .form-group select, .form-group textarea { font-family: inherit; font-size: .88rem; padding: .65rem .9rem; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: rgba(255,255,255,.04); color: var(--white); outline: none; transition: border-color var(--t), box-shadow var(--t); width: 100%; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.2); }
.form-group select option { background: #1a1a1a; color: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(26,86,219,.6); box-shadow: 0 0 0 3px rgba(26,86,219,.12); }
.form-group textarea { resize: vertical; line-height: 1.6; }
.form-note { text-align: center; font-size: .78rem; color: rgba(255,255,255,.25); }
.form-note.success { color: #4ade80; }
.form-note.error { color: #f87171; }

/* ── Footer ─────────────────────────────── */
.footer { background: #050505; border-top: 1px solid var(--border); padding: 2.5rem 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer__brand { display: flex; align-items: center; gap: .75rem; }
.footer__logo-img { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; }
.footer__name { font-size: .9rem; font-weight: 700; color: var(--white); }
.footer__tagline { font-size: .75rem; color: rgba(255,255,255,.25); margin-top: .1rem; }
.footer__links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer__links a { text-decoration: none; color: rgba(255,255,255,.3); font-size: .82rem; font-weight: 500; transition: color var(--t); }
.footer__links a:hover { color: rgba(255,255,255,.7); }
.footer__copy { font-size: .75rem; color: rgba(255,255,255,.2); }

/* ── Responsive ─────────────────────────── */
@media (max-width: 960px) {
  .hero__container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero__sub { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__proof { justify-content: center; }
  .hero__visual { display: none; }
  .why-split { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__links { flex-wrap: wrap; gap: 1rem; }
  .section { padding: 5rem 0; }
}
