/* VenueAide marketing site v2 — Ivan's black+gold luxury design language.
   Two-line serif headlines (white → gold), gold thread ornaments, device mockups,
   dark "Most Popular" pricing card. Research rails kept: brand-hue near-black
   (never #000), one-accent discipline, motion authored opt-in, no CDNs. */
:root {
  --black: #0b0a07;
  --black-2: #100e09;
  --panel: #16130c;
  --cream: #f6f1e7;
  --cream-2: #efe8da;
  --white: #f7f4ec;
  --ink: #221c11;
  --gold: #c9a45c;
  --gold-2: #d7b36a;
  --gold-deep: #9c7c3c;
  --mut-d: #9b917c;
  --mut-l: #6d6353;
  --faint-d: #6f6653;
  --hair-d: rgba(201,164,92,.18);
  --hair-l: rgba(34,28,17,.14);
  --ok: #c9a45c;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black); color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px; line-height: 1.65; -webkit-text-size-adjust: 100%; overflow-x: clip;
}
.serif { font-family: Georgia, "Times New Roman", serif; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 26px; position: relative; }
img, svg { max-width: 100%; height: auto; }
::selection { background: rgba(201,164,92,.4); }

/* ornament waves */
.wave { position: absolute; pointer-events: none; z-index: 0; opacity: .75; }
.wave svg { width: 100%; height: 100%; }

/* ---------- nav ---------- */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--black) 78%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s;
}
header.site.scrolled { border-bottom-color: var(--hair-d); }
header.site .wrap { display: flex; align-items: center; gap: 30px; height: 72px; }
.logo { font-family: Georgia, serif; font-weight: 700; font-size: 23px; letter-spacing: .01em; color: var(--white); text-decoration: none; }
.logo .aide { color: var(--gold); }
.logo .tld { font-size: 13px; color: var(--mut-d); font-weight: 400; }
nav.main { margin-left: auto; display: flex; gap: 26px; align-items: center; }
nav.main a.navlink { color: #cfc8b8; text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color .15s; }
nav.main a.navlink:hover { color: var(--gold-2); }
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 24px; border-radius: 8px;
  background: linear-gradient(180deg, #d9b56d, #bf9950); color: #241c0b; text-decoration: none;
  font-weight: 700; font-size: 14.5px; border: 1px solid rgba(255,255,255,.14);
  transition: transform .18s ease-out, box-shadow .18s ease-out, filter .18s;
}
.btn:hover { filter: brightness(1.07); box-shadow: 0 8px 26px rgba(201,164,92,.28); }
.btn .arr { font-family: Arial, sans-serif; }
.btn.ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.22); }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold-2); box-shadow: none; }
.btn.big { padding: 15px 32px; font-size: 15.5px; }
nav.main .login { color: #cfc8b8; text-decoration: none; font-size: 14.5px; font-weight: 500; }
nav.main .login:hover { color: var(--gold-2); }
@media (max-width: 760px) { nav.main a.navlink, nav.main .login { display: none; } }

/* ---------- type ---------- */
.eyebrow {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
h1, .h1 {
  font-family: Georgia, serif; font-weight: 500;
  font-size: clamp(40px, 5.6vw, 64px); line-height: 1.1; letter-spacing: -0.015em; text-wrap: balance;
}
h1 .goldline, h2 .goldline { display: block; color: var(--gold); }
h2 {
  font-family: Georgia, serif; font-weight: 500;
  font-size: clamp(30px, 4.2vw, 48px); line-height: 1.12; letter-spacing: -0.012em; text-wrap: balance;
}
.sub { margin: 18px 0 0; max-width: 58ch; font-size: 17.5px; color: var(--mut-d); }
.light .sub { color: var(--mut-l); }
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

/* check trust row */
.checkrow { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 26px; }
.checkrow span { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: #d9d2c2; }
.ck { width: 18px; height: 18px; flex: none; border-radius: 50%; background: var(--gold); display: inline-flex; align-items: center; justify-content: center; }
.ck svg { width: 10px; height: 10px; stroke: #241c0b; stroke-width: 3; fill: none; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 76px 0 90px; overflow: clip; }
.hero .grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.hero .lede { max-width: 46ch; }
.hero .cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
@media (max-width: 940px) { .hero .grid { grid-template-columns: 1fr; } }

/* 3D device cluster */
.stage { perspective: 1800px; position: relative; }
.devices { transform-style: preserve-3d; transform: rotateY(-7deg) rotateX(4deg); position: relative;
  transition: transform .12s ease-out; will-change: transform; }
.laptop { background: #191510; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 10px 10px 0;
  box-shadow: 0 30px 70px rgba(0,0,0,.6), 0 4px 14px rgba(0,0,0,.4); }
.laptop .screen { background: var(--cream); border-radius: 8px 8px 0 0; overflow: hidden; display: flex; aspect-ratio: 16/9.6; }
.laptop .deck { height: 13px; background: linear-gradient(180deg, #23201a, #100e0a); border-radius: 0 0 12px 12px; margin: 0 -10px;
  border-top: 1px solid rgba(255,255,255,.08); }
.phone { position: absolute; right: -26px; bottom: -30px; width: 27%; min-width: 128px;
  background: #191510; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 7px;
  box-shadow: 0 24px 60px rgba(0,0,0,.65); transform: translateZ(70px) rotateY(4deg); }
.phone .screen { background: var(--cream); border-radius: 14px; overflow: hidden; aspect-ratio: 9/17.5; display: flex; flex-direction: column; }
.chip3 {
  position: absolute; z-index: 3;
  background: rgba(22,19,12,.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--hair-d); border-radius: 12px; padding: 10px 15px;
  font-size: 12.5px; font-weight: 700; color: var(--white); white-space: nowrap;
  box-shadow: 0 12px 32px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.07);
  transform: translateZ(95px); display: flex; align-items: center; gap: 9px;
}
.chip3 .sub { display: block; font-weight: 500; font-size: 11px; color: var(--mut-d); }
.chip3 svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.6; flex: none; }
@media (max-width: 940px) { .chip3 { display: none; } .phone { right: 0; } .devices { transform: rotateX(6deg); margin-top: 10px; } }

/* mini app UI inside devices */
.mini { flex: 1; display: flex; min-width: 0; font-size: 8px; color: var(--ink); }
.mini aside { width: 24%; background: #14110b; color: #cfc8b8; padding: 7% 5%; display: flex; flex-direction: column; gap: 9%; }
.mini aside .mlogo { font-family: Georgia, serif; color: var(--gold); font-size: 1.25em; font-weight: 700; margin-bottom: 8%; }
.mini aside i { display: block; height: 4px; border-radius: 2px; background: rgba(255,255,255,.16); }
.mini aside i.on { background: var(--gold); }
.mini main { flex: 1; padding: 4.5%; display: flex; flex-direction: column; gap: 5%; min-width: 0; }
.mini .cards { display: flex; gap: 4%; }
.mini .mcard { flex: 1; background: #fff; border: 1px solid var(--hair-l); border-radius: 6px; padding: 5% 6%; }
.mini .mcard b { display: block; font-family: Georgia, serif; font-size: 1.7em; letter-spacing: -.02em; }
.mini .mcard span { font-size: .82em; color: var(--mut-l); }
.mini .chart { flex: 1; background: #fff; border: 1px solid var(--hair-l); border-radius: 6px; padding: 3%; display: flex; }
.mini .chart svg { width: 100%; height: 100%; }
.mini .rows { background: #fff; border: 1px solid var(--hair-l); border-radius: 6px; padding: 3% 5%; }
.mini .rows i { display: flex; justify-content: space-between; font-style: normal; padding: 2.5% 0; border-bottom: 1px solid var(--hair-l); color: var(--ink); font-weight: 600; }
.mini .rows i:last-child { border: none; }
.mini .rows i em { font-style: normal; color: var(--gold-deep); font-weight: 700; }
/* phone mini floorplan */
.pmini { flex: 1; display: flex; flex-direction: column; font-size: 8px; }
.pmini .top { display: flex; justify-content: space-between; align-items: center; padding: 6% 8%; border-bottom: 1px solid var(--hair-l); font-weight: 800; color: var(--ink); }
.pmini .top .mlogo { font-family: Georgia, serif; color: var(--gold-deep); }
.pmini .plan { flex: 1; padding: 4%; }
.pmini .card { margin: 4% 6% 7%; background: #fff; border: 1px solid var(--hair-l); border-radius: 8px; padding: 6% 8%; color: var(--ink); }
.pmini .card b { display: block; font-family: Georgia, serif; font-size: 1.35em; }
.pmini .card span { color: var(--mut-l); font-size: .9em; }

/* ---------- trust strip ---------- */
.strip { border-top: 1px solid var(--hair-d); border-bottom: 1px solid var(--hair-d); background: var(--black-2); position: relative; overflow: clip; }
.strip .wrap { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 5vw, 64px); padding: 30px 26px; flex-wrap: wrap; }
.strip .cap { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--faint-d); font-weight: 700; width: 100%; text-align: center; margin-bottom: 4px; }
.strip .stat { text-align: center; }
.strip .stat b { display: block; font-family: Georgia, serif; font-weight: 500; font-size: clamp(24px, 3vw, 34px); color: var(--white); font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.strip .stat span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--faint-d); font-weight: 700; }
.strip .div { width: 1px; height: 44px; background: var(--hair-d); }
@media (max-width: 640px) { .strip .div { display: none; } }

/* ---------- sections ---------- */
section { padding: 100px 0; position: relative; overflow: clip; }
.light { background: var(--cream); color: var(--ink); }
.light .eyebrow { color: var(--gold-deep); }

/* icon feature row (cream) */
.featrow { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 60px; }
.featrow .f { padding: 8px 26px; text-align: center; border-left: 1px solid var(--hair-l); }
.featrow .f:first-child { border-left: none; }
.featrow .f svg { width: 34px; height: 34px; stroke: var(--gold-deep); fill: none; stroke-width: 1.4; margin-bottom: 14px; }
.featrow .f h4 { font-family: Georgia, serif; font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.featrow .f p { font-size: 13.5px; color: var(--mut-l); }
.featrow .plan { display: inline-block; margin-top: 10px; font-size: 9.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; border: 1px solid var(--hair-l); color: var(--mut-l); }
.featrow .plan.pro { color: var(--gold-deep); border-color: rgba(156,124,60,.45); background: rgba(201,164,92,.08); }
@media (max-width: 900px) { .featrow { grid-template-columns: repeat(2, 1fr); row-gap: 36px; } .featrow .f:nth-child(3) { border-left: none; } }
@media (max-width: 540px) { .featrow { grid-template-columns: 1fr; } .featrow .f { border-left: none; } }

/* floorplan 3D section */
.fp3d { display: grid; grid-template-columns: .92fr 1.08fr; gap: 54px; align-items: center; position: relative; z-index: 1; }
.fp3d ul { list-style: none; margin-top: 24px; }
.fp3d li { padding: 7px 0 7px 30px; position: relative; font-size: 15.5px; font-weight: 600; color: #ded7c6; }
.fp3d li .ck { position: absolute; left: 0; top: 9px; }
.iso-stage { perspective: 1600px; }
.iso-scene { transform-style: preserve-3d; transform: rotateX(8deg) rotateZ(0deg); position: relative;
  filter: drop-shadow(0 36px 70px rgba(0,0,0,.6)); }
@media (max-width: 940px) { .fp3d { grid-template-columns: 1fr; } }

/* journey chevrons (cream) */
.journey { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 56px; }
.step { background: #fffdf8; border: 1px solid var(--hair-l); border-radius: 12px; padding: 20px 18px; position: relative; }
.step:first-child { background: linear-gradient(135deg, #d9b56d, #bf9950); border-color: transparent; }
.step:first-child h5, .step:first-child p { color: #241c0b; }
.step .n { font-size: 10px; font-weight: 800; letter-spacing: .2em; color: var(--gold-deep); }
.step:first-child .n { color: rgba(36,28,11,.7); }
.step h5 { font-family: Georgia, serif; font-size: 16px; font-weight: 700; margin: 6px 0 4px; color: var(--ink); }
.step p { font-size: 12.5px; color: var(--mut-l); }
@media (max-width: 900px) { .journey { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .journey { grid-template-columns: 1fr; } }

/* portal section split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.split .phone-solo { position: relative; max-width: 280px; margin: 0 auto;
  background: #191510; border: 1px solid rgba(255,255,255,.12); border-radius: 26px; padding: 9px;
  box-shadow: 0 30px 70px rgba(0,0,0,.6); transform: rotateY(6deg) rotateX(2deg); }
.split .phone-solo .screen { background: var(--cream); border-radius: 18px; overflow: hidden; aspect-ratio: 9/17; }
.ring { width: 92px; height: 92px; margin: 0 auto; position: relative; }
.ring svg { transform: rotate(-90deg); }
.ring b { position: absolute; inset: 0; display: grid; place-items: center; font-family: Georgia, serif; font-size: 20px; color: var(--ink); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 64px; align-items: stretch; position: relative; z-index: 1; }
.plan-card { background: var(--cream); color: var(--ink); border-radius: 16px; padding: 34px 30px; display: flex; flex-direction: column; position: relative; border: 1px solid rgba(255,255,255,.06); }
.plan-card.featured { background: #14110a; color: var(--white); border: 1.5px solid var(--gold); box-shadow: 0 24px 70px rgba(201,164,92,.15); }
.plan-card .badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, #d9b56d, #bf9950); color: #241c0b; font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; padding: 6px 20px; border-radius: 999px; white-space: nowrap; }
.plan-card h3 { font-family: Georgia, serif; font-size: 25px; font-weight: 700; text-align: center; }
.plan-card .bestfor { font-size: 13.5px; text-align: center; margin: 6px 0 20px; min-height: 42px; color: var(--mut-l); }
.plan-card.featured .bestfor { color: var(--mut-d); }
.plan-card .price { text-align: center; font-variant-numeric: tabular-nums; }
.plan-card .price del { font-size: 18px; color: var(--mut-l); margin-right: 8px; font-weight: 500; }
.plan-card.featured .price del { color: var(--mut-d); }
.plan-card .price b { font-family: Georgia, serif; font-size: 46px; font-weight: 500; letter-spacing: -.02em; }
.plan-card .price span { font-size: 14px; color: var(--mut-l); }
.plan-card.featured .price span { color: var(--mut-d); }
.plan-card .terms { font-size: 12px; text-align: center; color: var(--mut-l); margin: 4px 0 22px; }
.plan-card.featured .terms { color: var(--mut-d); }
.plan-card .btn { justify-content: center; margin-bottom: 24px; }
.plan-card .btn.outline { background: transparent; border: 1px solid var(--gold-deep); color: var(--gold-deep); }
.plan-card .btn.outline:hover { box-shadow: none; filter: none; background: rgba(201,164,92,.1); }
.plan-card ul { list-style: none; }
.plan-card li { padding: 6px 0 6px 30px; position: relative; font-size: 14.5px; }
.plan-card li.everything { font-weight: 800; }
.plan-card li .ck { position: absolute; left: 0; top: 8px; }
@media (max-width: 920px) {
  .plans { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .plan-card.featured { order: -1; }
}
.assure { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 44px; font-size: 13.5px; color: var(--mut-d); font-weight: 600; position: relative; z-index: 1; }
.assure span { display: flex; align-items: center; gap: 9px; }

/* switch band */
.switchband { border: 1px solid var(--hair-d); border-radius: 18px; background: var(--black-2);
  padding: 40px 44px; display: grid; grid-template-columns: 1.5fr auto; gap: 30px; align-items: center; position: relative; z-index: 1; }
.switchband h3 { font-family: Georgia, serif; font-size: 26px; font-weight: 500; }
.switchband h3 b { color: var(--gold); font-weight: 500; }
.switchband p { color: var(--mut-d); font-size: 15px; margin-top: 8px; max-width: 56ch; }
@media (max-width: 820px) { .switchband { grid-template-columns: 1fr; } }

/* quote */
.quote blockquote { font-family: Georgia, serif; font-size: clamp(22px, 3vw, 30px); line-height: 1.5; font-style: italic;
  max-width: 28ch; margin: 0 auto; text-align: center; text-wrap: balance; }
.quote blockquote b { color: var(--gold); font-style: normal; font-weight: 500; }
.quote cite { display: block; margin-top: 24px; font-style: normal; font-size: 14px; color: var(--faint-d); text-align: center; }

/* FAQ */
.faq { max-width: 780px; margin: 60px auto 0; }
.faq details { border-bottom: 1px solid var(--hair-l); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 44px 22px 4px; font-weight: 700; font-size: 16.5px; position: relative; font-family: Georgia, serif; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--gold-deep); font-weight: 300; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 4px 24px; color: var(--mut-l); font-size: 15px; max-width: 66ch; }

/* final CTA banner */
.final-band { border: 1px solid var(--hair-d); border-radius: 18px; background: var(--black-2);
  padding: 42px 46px; display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; position: relative; z-index: 1; }
.final-band .ico { width: 62px; height: 62px; border: 1.5px solid var(--gold); border-radius: 50%; display: grid; place-items: center; }
.final-band .ico svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.final-band h3 { font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.final-band h3 b { color: var(--gold); font-weight: 500; }
.final-band p { color: var(--mut-d); font-size: 14.5px; margin-top: 4px; }
.final-band .side { text-align: center; }
.final-band .micro { font-size: 12.5px; color: var(--faint-d); margin-top: 10px; }
@media (max-width: 820px) { .final-band { grid-template-columns: 1fr; text-align: center; } .final-band .ico { margin: 0 auto; } }

/* footer */
footer.site { border-top: 1px solid var(--hair-d); background: var(--black-2); padding: 60px 0 42px; position: relative; overflow: clip; }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 34px; position: relative; z-index: 1; }
footer.site h5 { font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--faint-d); margin-bottom: 15px; }
footer.site a { display: block; color: var(--mut-d); text-decoration: none; font-size: 14px; padding: 4.5px 0; }
footer.site a:hover { color: var(--gold-2); }
footer.site .brand p { color: var(--faint-d); font-size: 13px; margin-top: 12px; max-width: 30ch; }
footer.site .fine { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--hair-d); font-size: 12.5px; color: var(--faint-d); display: flex; gap: 20px; flex-wrap: wrap; position: relative; z-index: 1; }
@media (max-width: 760px) { footer.site .cols { grid-template-columns: 1fr 1fr; } }

/* legal pages */
main.legal { max-width: 760px; margin: 0 auto; padding: 64px 26px 90px; }
main.legal h1 { font-size: clamp(30px, 5vw, 44px); }
main.legal .effective { color: var(--faint-d); font-size: 14px; margin: 8px 0 40px; }
main.legal h2 { font-size: 21px; margin: 36px 0 8px; }
main.legal p, main.legal li { color: var(--mut-d); font-size: 15px; }
main.legal ul { padding-left: 22px; margin: 8px 0; }
main.legal a { color: var(--gold); }

/* ---------- motion: authored opt-in only ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: .001; transform: translateY(24px); transition: opacity .6s ease-out, transform .6s ease-out; }
  .reveal.in-view { opacity: 1; transform: none; }
  .chip3 { animation: chipFloat 6s ease-in-out infinite; }
  .chip3.c2 { animation-delay: -2s; }
  .chip3.c3 { animation-delay: -4s; }
  @keyframes chipFloat { 0%,100% { margin-top: 0 } 50% { margin-top: -10px } }
  @supports (animation-timeline: view()) {
    .iso-scene { animation: isoRise linear both; animation-timeline: view(); animation-range: entry 5% cover 45%; }
    @keyframes isoRise { from { transform: rotateX(16deg) scale(.96); opacity: .55; } to { transform: rotateX(6deg) scale(1); opacity: 1; } }
  }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
