/* ============================================================
   W2 Collective — shared style system
   Light, monochrome, simple. Distinct from W2 Taps and W2 Create.
   ============================================================ */

:root {
  --bg:        #FFFFFF;
  --bg-2:      #F7F7F5;
  --panel:     #FFFFFF;
  --panel-2:   #FAFAF8;
  --line:      rgba(10,10,10,.09);
  --line-2:    rgba(10,10,10,.16);
  --text:      #0A0A0A;
  --muted:     #5C5C5C;
  --muted-2:   #8A8A8A;
  --accent:    #0A0A0A;
  --accent-2:  #4A4A4A;
  --gold:      #8A8A8A;
  --glow:      0 8px 28px rgba(10,10,10,.10);
  --shadow:    0 1px 2px rgba(10,10,10,.04), 0 12px 28px -10px rgba(10,10,10,.10);
  --radius:    18px;
  --maxw:      1120px;
  --font:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Inter", system-ui, sans-serif;
  --font-mono: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, .brandcard h3, .grad {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.kicker, .eyebrow, .badge, .prod .badge, .tag {
  font-family: var(--font);
  font-weight: 700;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: #0A0A0A;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
}
.brand .mark svg { width: 27px; height: 27px; display: block; }
.brand > span:not(.mark) { font-family: var(--font); font-weight: 800; font-size: 16px; line-height: 1.2; letter-spacing: -.3px; }
.brand small { color: var(--muted); font-weight: 500; letter-spacing: 3px; font-size: 10px; font-family: var(--font); }
.navlinks { display: flex; gap: 26px; align-items: center; }
.navlinks a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.navlinks a:hover, .navlinks a.active { color: var(--text); }
.nav__cta {
  padding: 9px 16px; border-radius: 10px; font-size: 13px; font-weight: 600;
  border: 1px solid var(--line-2); color: var(--text);
}
.nav__cta:hover { border-color: var(--accent); box-shadow: var(--glow); }

/* Hamburger (mobile) */
.navtoggle { display: none; }
.hamburger { display: none; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 11px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.hamburger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .22s, opacity .22s; }
.navtoggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navtoggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
.navtoggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 720px){
  .nav__inner { position: relative; }
  .hamburger { display: flex; }
  .navlinks {
    display: none;
    position: absolute; top: calc(100% + 10px); right: 0;
    width: min(240px, 74vw);
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--panel); border: 1px solid var(--line-2); border-radius: 14px;
    padding: 10px; box-shadow: 0 22px 55px rgba(10,10,10,.16); z-index: 60;
  }
  .navtoggle:checked ~ .navlinks { display: flex; }
  .navlinks a { padding: 12px 14px; border-radius: 10px; font-size: 15px; }
  .navlinks a:hover { background: rgba(10,10,10,.05); }
  .navlinks a.hide-sm { display: block; }
  .navlinks a.nav__cta { border: none; text-align: left; margin-top: 4px; }
}

/* ---------- Hero ---------- */
.hero { padding: 96px 0 72px; position: relative; overflow: hidden; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .6px;
  color: var(--accent); border: 1px solid var(--line-2);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: var(--glow); }
h1 {
  font-size: clamp(38px, 6vw, 68px); line-height: 1.03; margin: 0 0 20px;
  letter-spacing: -1.5px; font-weight: 800;
}
.hero p.lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--muted); max-width: 640px; margin: 0 0 34px; }
.grad { color: var(--text); border-bottom: 4px solid rgba(10,10,10,.14); padding-bottom: 1px; }

.btnrow { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: 12px; font-weight: 600; font-size: 15px;
  transition: transform .15s, box-shadow .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, #171717, #000000); color: #ffffff; box-shadow: var(--shadow); }
.btn--ghost { border: 1px solid var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); }

/* ---------- Sections ---------- */
section.block { padding: 76px 0; border-top: 1px solid var(--line); }
.kicker { color: var(--accent); font-size: 13px; letter-spacing: .6px; font-weight: 600; margin-bottom: 14px; }
h2 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -1px; margin: 0 0 18px; font-weight: 800; }
h3 { font-size: 20px; margin: 0 0 10px; font-weight: 700; }
.section-intro { color: var(--muted); max-width: 680px; font-size: 17px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px){ .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px){ .grid.cols-2, .grid.cols-3 { grid-template-columns: 1fr; } }
@media (max-width: 640px){ .grid.cols-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--shadow);
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.card .ic {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(10,10,10,.05); border: 1px solid rgba(10,10,10,.12);
  margin-bottom: 18px;
}
.card .ic svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
/* step-number badges */
.card .ic.num { font-size: 20px; font-weight: 800; color: var(--accent); font-family: var(--font); }
.card p { color: var(--muted); margin: 0; }

/* Brand feature cards */
.brandcard {
  position: relative; overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line-2); border-radius: 22px; padding: 34px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow);
}
.brandcard::after {
  content: ""; position: absolute; inset: -1px; border-radius: 22px; pointer-events: none;
  background: radial-gradient(400px 200px at 100% 0%, rgba(10,10,10,.05), transparent 60%);
}
.brandcard .tag { font-size: 12px; letter-spacing: .6px; color: var(--accent); }
.brandcard h3 { font-size: 26px; }
.brandcard p { color: var(--muted); flex: 1; }
/* 01–04 ordering numeral on the brand cards */
.brandcard .brandnum {
  position: absolute; top: 30px; right: 30px; z-index: 1;
  font-size: 13px; font-weight: 800; letter-spacing: 1px;
  color: var(--muted-2); font-variant-numeric: tabular-nums;
}
.brandcard .brandnum + .tag { padding-right: 34px; }

/* ---------- Steps / timeline ---------- */
.timeline { display: grid; gap: 0; margin-top: 30px; }
.tl {
  display: grid; grid-template-columns: 130px 1fr; gap: 28px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.tl:first-child { border-top: none; }
.tl .year { font-size: 22px; font-weight: 800; color: var(--accent); }
.tl h3 { margin-bottom: 6px; }
.tl p { color: var(--muted); margin: 0; }
@media (max-width: 640px){ .tl { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 34px; }
.stat { text-align: center; padding: 26px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); }
.stat b { display: block; font-size: 34px; font-weight: 800; font-family: var(--font); color: var(--text); }
.stat span { color: var(--muted); font-size: 14px; }
@media (max-width: 640px){ .stats { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.ctaband {
  margin: 30px 0; padding: 48px; border-radius: 24px; text-align: center;
  background: #0A0A0A;
  border: 1px solid var(--line-2);
}
.ctaband .btn--primary { background: linear-gradient(135deg, #ffffff, #e4e4e4); color: #0a0a0a; }
.ctaband .btn--ghost { border-color: rgba(255,255,255,.3); color: #ffffff; }
.ctaband h2 { margin-bottom: 12px; color: #ffffff; }
.ctaband p { color: #C4C4C4; max-width: 560px; margin: 0 auto 26px; }

/* ---------- Note / placeholder ---------- */
.note {
  font-size: 13px; color: var(--muted-2); border: 1px dashed var(--line-2);
  border-radius: 10px; padding: 10px 14px; display: inline-block; margin-top: 14px;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line); padding: 46px 0 60px; margin-top: 40px;
  color: var(--muted);
}
.foot { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.foot a { color: var(--muted); font-size: 14px; }
.foot a:hover { color: var(--text); }
.footlinks { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Footer brand-site row ---------- */
.footbrands {
  width: 100%; display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
  padding-top: 22px; margin-top: 22px; border-top: 1px solid var(--line);
}
.footbrands__label {
  font-size: 12px; font-weight: 700; letter-spacing: .6px; color: var(--muted-2);
}
.footbrands a { font-size: 13.5px; }

/* ---------- Footer contact row ---------- */
.footcontact {
  width: 100%; display: flex; gap: 22px; flex-wrap: wrap; align-items: center;
  padding-top: 22px; margin-top: 22px; border-top: 1px solid var(--line);
}
.footcontact a { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); transition: color .2s; }
.footcontact a:hover { color: var(--text); }
.footcontact svg { width: 16px; height: 16px; flex-shrink: 0; }
.footcontact .wa-ic { color: #25D366; }

/* ---------- Floating WhatsApp CTA ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 150;
  display: flex; align-items: center; gap: 9px;
  background: #25D366; color: #04140f; padding: 14px 20px;
  border-radius: 100px; font-weight: 700; font-size: 14px;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  text-decoration: none; animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { flex-shrink: 0; display: block; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,.4); }
  50% { box-shadow: 0 10px 40px rgba(37,211,102,.75); }
}
@media (max-width: 640px) {
  .wa-float span { display: none; }
  .wa-float { padding: 16px; border-radius: 50%; bottom: 18px; right: 18px; }
}

/* ---------- Chat assistant (self-contained, no network calls) ---------- */
.chat-float {
  position: fixed; bottom: 98px; right: 24px; z-index: 160;
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: #0A0A0A; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(10,10,10,.35); transition: transform .18s ease;
}
.chat-float:hover { transform: translateY(-2px); }
.chat-float svg { width: 24px; height: 24px; }
.chat-float .chat-x { display: none; }
.chat-float.open .chat-chat { display: none; }
.chat-float.open .chat-x { display: block; }
@media (max-width: 640px) { .chat-float { bottom: 84px; right: 18px; width: 50px; height: 50px; } }

.chat-panel {
  position: fixed; bottom: 164px; right: 24px; z-index: 160;
  width: 340px; max-width: calc(100vw - 36px); height: 460px; max-height: 65vh;
  background: var(--panel); border-radius: 20px; box-shadow: 0 24px 60px -12px rgba(10,10,10,.35), 0 2px 8px rgba(10,10,10,.08);
  border: 1px solid var(--line); display: none; flex-direction: column; overflow: hidden;
}
.chat-panel.open { display: flex; }
@media (max-width: 640px) { .chat-panel { bottom: 142px; right: 18px; width: calc(100vw - 36px); height: 58vh; } }

.chat-head {
  background: #0A0A0A; color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.chat-head .dot2 { width: 9px; height: 9px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 3px rgba(52,211,153,.25); flex-shrink: 0; }
.chat-head strong { font-size: 14px; display: block; }
.chat-head small { font-size: 11.5px; color: #B8B8B8; display: block; margin-top: 1px; }

.chat-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--panel-2); }
.chat-msg { max-width: 86%; padding: 10px 13px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; }
.chat-msg.bot { background: #fff; border: 1px solid var(--line); color: var(--text); align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: var(--shadow); }
.chat-msg.user { background: #0A0A0A; color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg a { color: inherit; text-decoration: underline; }

.chat-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px; background: var(--panel-2); flex-shrink: 0; }
.chat-chip {
  border: 1px solid var(--line-2); background: #fff; color: var(--text); font-size: 12px; font-weight: 600;
  padding: 7px 12px; border-radius: 100px; cursor: pointer; transition: background .15s ease;
}
.chat-chip:hover { background: var(--panel-2); }

.chat-inputrow { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); flex-shrink: 0; background: #fff; }
.chat-inputrow input {
  flex: 1; border: 1px solid var(--line-2); border-radius: 100px; padding: 10px 15px; font-size: 13.5px;
  font-family: var(--font); background: var(--panel-2); color: var(--text);
}
.chat-inputrow input:focus { outline: none; border-color: var(--accent); }
.chat-send {
  width: 38px; height: 38px; border-radius: 50%; border: none; background: #0A0A0A; color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
}
.chat-send svg { width: 16px; height: 16px; }

/* ---------- NFC ripple motif ---------- */
.ripple { position: relative; width: 140px; height: 140px; margin: 0 auto; }
.ripple span {
  position: absolute; inset: 0; margin: auto; border-radius: 50%;
  border: 1.5px solid var(--muted); opacity: 0; animation: pulse 3s ease-out infinite;
}
.ripple span:nth-child(2){ animation-delay: 1s; }
.ripple span:nth-child(3){ animation-delay: 2s; }
.ripple .core {
  position:absolute; inset:0; margin:auto; width:44px; height:44px; border-radius:12px; opacity:1; border:none;
  background: linear-gradient(135deg,var(--accent),var(--accent-2)); box-shadow: var(--glow); animation:none;
}
@keyframes pulse { 0%{ transform: scale(.3); opacity:.9 } 100%{ transform: scale(1); opacity:0 } }

.pagehead { padding: 80px 0 40px; }
.crumbs { color: var(--muted-2); font-size: 13px; margin-bottom: 18px; }
.crumbs a:hover { color: var(--accent); }

/* ---------- Products ---------- */
.prod { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 44px; align-items: center; padding: 50px 0; border-top: 1px solid var(--line); }
.prod.rev .prod__media { order: 2; }
@media (max-width: 840px){ .prod { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; } .prod.rev .prod__media { order: 0; } }

.pimg { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 18px; overflow: hidden; border: 1px solid var(--line-2);
  background: var(--panel-2); box-shadow: var(--shadow); display: grid; place-items: center; }
.pimg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pimg .fallback { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--muted); font-size: 13px; text-align: center; padding: 16px; }
.pimg .fallback .g { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: #0A0A0A; color: #ffffff; font-weight: 800; font-size: 24px; box-shadow: var(--shadow); }

.prod .badge { display: inline-block; font-size: 11.5px; letter-spacing: .5px; color: var(--accent); border: 1px solid var(--line-2); padding: 4px 11px; border-radius: 999px; margin-bottom: 14px; }
.prod h3 { font-size: 25px; margin: 0 0 8px; }
.prod .how { color: var(--muted); margin: 6px 0 0; }
.prod .use { color: var(--muted); margin: 12px 0 0; font-size: 14.5px; }
.prod .use b { color: var(--text); font-weight: 600; }

.spec { list-style: none; padding: 0; margin: 20px 0 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.spec li { font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 9px; }
.spec li b { display: block; color: var(--text); font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; font-weight: 600; }
@media (max-width: 420px){ .spec { grid-template-columns: 1fr; } }

/* W2 Taps rendered card graphic */
.tapframe { width: 100%; aspect-ratio: 4/3; border-radius: 18px; border: 1px solid var(--line-2); display: grid; place-items: center; padding: 24px;
  background: var(--panel-2); box-shadow: var(--shadow); }
.tapcard { width: 100%; max-width: 320px; aspect-ratio: 1.586 / 1; border-radius: 16px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 22px 50px rgba(0,0,0,.45); position: relative; overflow: hidden; }
.tapcard .top { display: flex; justify-content: space-between; align-items: flex-start; }
.tapcard .b2 { font-weight: 800; letter-spacing: .3px; font-size: 17px; }
.tapcard .tapline { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; opacity: .8; }
.tapcard .code { font-size: 11px; letter-spacing: 2px; opacity: .65; }
.tapcard .nfc { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; font-size: 14px; }
.tapcard.white { background: linear-gradient(135deg,#ffffff,#e9edf3); color: #0b0e14; }
.tapcard.white .nfc { background: #0b0e14; color: #fff; }
.tapcard.color { background: linear-gradient(135deg,#1a1a1a,#050505); color: #ffffff; border: 1px solid rgba(255,255,255,.22); }
.tapcard.color .nfc { background: #ffffff; color: #0a0a0a; }
.tapcard.custom { background: linear-gradient(135deg,#1a1a1a,#000000); color: #ffffff; }
.tapcard.custom .nfc { background: rgba(255,255,255,.16); color: #ffffff; }

/* Rendered review cards (same frame as tap cards) */
.revcard { width: 100%; max-width: 320px; aspect-ratio: 1.586 / 1; border-radius: 16px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 22px 50px rgba(0,0,0,.45); position: relative; overflow: hidden; }
.revcard .rtop { display: flex; justify-content: space-between; align-items: center; }
.revcard .plat { font-weight: 800; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.revcard .plat .dot { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; font-size: 13px; font-weight: 900; }
.revcard .stars { font-size: 20px; letter-spacing: 3px; color: #ffb400; }
.revcard .rbot { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; opacity: .72; }
.revcard .nfc { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; font-size: 13px; font-weight: 700; }

.revcard.google { background: linear-gradient(135deg,#ffffff,#eef1f6); color: #1a1c22; }
.revcard.google .dot { background: #fff; border: 1px solid #e2e5ea; color: #4285F4; }
.revcard.google .nfc { background: #1a1c22; color: #fff; }

.revcard.multicolour { background: linear-gradient(120deg,#ea4335,#fbbc05 38%,#34a853 68%,#4285f4); color: #fff; }
.revcard.multicolour .dot { background: rgba(255,255,255,.95); color: #1a1c22; }
.revcard.multicolour .nfc { background: rgba(0,0,0,.35); color: #fff; }
.revcard.multicolour .rbot { opacity: .9; }

.revcard.black { background: linear-gradient(135deg,#1c1e26,#0a0b0e); color: #f4f6fa; border: 1px solid rgba(255,255,255,.12); }
.revcard.black .dot { background: #fff; color: #1a1c22; }
.revcard.black .nfc { background: rgba(255,255,255,.14); color: #fff; }

.revcard.trustpilot { background: linear-gradient(135deg,#ffffff,#eef1f6); color: #1a1c22; }
.revcard.trustpilot .nfc { background: #1a1c22; color: #fff; }

.revcard.tripadvisor { background: linear-gradient(135deg,#0a2e22,#0a1a14); color: #eafff5; border: 1px solid rgba(52,224,161,.32); }
.revcard.tripadvisor .dot { background: #34e0a1; color: #032018; }
.revcard.tripadvisor .stars { color: #34e0a1; }
.revcard.tripadvisor .nfc { background: rgba(52,224,161,.18); color: #34e0a1; }

.revcard.custom { background: linear-gradient(135deg,#1a1a1a,#000000); color: #ffffff; }
.revcard.custom .plat { font-family: var(--font); font-weight: 800; }
.revcard.custom .nfc { background: rgba(255,255,255,.16); color: #ffffff; }
.revcard.custom .rbot { opacity: .85; }

/* Round window tag */
.revtag { width: 190px; max-width: 62%; aspect-ratio: 1/1; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg,#ffffff,#e9edf3); color: #1a1c22; box-shadow: 0 22px 50px rgba(0,0,0,.45); border: 6px solid rgba(255,255,255,.1); text-align: center; }
.revtag .dot { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-size: 16px; font-weight: 900; background: #fff; border: 1px solid #e2e5ea; color: #4285F4; }
.revtag .stars { font-size: 17px; letter-spacing: 2px; color: #ffb400; }
.revtag .rbot { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; opacity: .7; }

/* Standing countertop plaque (portrait, sits up on the counter) */
.revplaque { width: 150px; max-width: 52%; aspect-ratio: 3 / 4; border-radius: 14px; padding: 18px 14px;
  background: linear-gradient(135deg,#ffffff,#e8ecf2); color: #1a1c22;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center;
  box-shadow: 0 28px 42px -12px rgba(0,0,0,.6); position: relative; }
.revplaque::after { content: ""; position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); width: 74%; height: 16px; border-radius: 50%; background: rgba(0,0,0,.4); filter: blur(7px); }
.revplaque .dot { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 18px; font-weight: 900; background: #fff; border: 1px solid #e2e5ea; color: #4285F4; }
.revplaque .ptitle { font-size: 12px; font-weight: 700; letter-spacing: .2px; }
.revplaque .stars { font-size: 16px; letter-spacing: 2px; color: #ffb400; }
.revplaque .rbot { font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; opacity: .65; }

/* Display stand holding a card (clear-acrylic look) */
.standwrap { position: relative; width: 170px; max-width: 62%; display: flex; flex-direction: column; align-items: center; }
.stand-card { width: 118px; aspect-ratio: 1 / 1.45; border-radius: 11px; background: linear-gradient(135deg,#ffffff,#e8ecf2); color: #1a1c22;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; z-index: 2;
  box-shadow: 0 18px 30px rgba(0,0,0,.5); }
.stand-card .dot { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; font-size: 15px; font-weight: 900; background: #fff; border: 1px solid #e2e5ea; color: #4285F4; }
.stand-card .stars { font-size: 14px; letter-spacing: 1px; color: #ffb400; }
.stand-card .rbot { font-size: 8.5px; letter-spacing: 2px; text-transform: uppercase; opacity: .6; }
.stand-base { width: 152px; height: 46px; margin-top: -16px; border-radius: 0 0 14px 14px / 0 0 40px 40px;
  background: linear-gradient(180deg, rgba(180,220,255,.28), rgba(150,190,230,.1)); border: 1px solid rgba(255,255,255,.28); border-top: none; }

/* Authentic brand marks */
.gmark { width: 26px; height: 26px; border-radius: 7px; background: #fff; display: grid; place-items: center; border: 1px solid #e2e5ea; }
.gmark svg { width: 16px; height: 16px; display: block; }
.revplaque .gmark { width: 36px; height: 36px; border-radius: 10px; }
.revplaque .gmark svg { width: 22px; height: 22px; }
.revtag .gmark { width: 36px; height: 36px; border-radius: 10px; }
.revtag .gmark svg { width: 22px; height: 22px; }

/* Trustpilot rating squares */
.tp-mark { width: 24px; height: 24px; border-radius: 5px; display: grid; place-items: center; background: #00b67a; color: #fff; font-size: 14px; }
.tp-stars { display: flex; gap: 3px; }
.tp-stars span { width: 21px; height: 21px; border-radius: 4px; background: #00b67a; color: #fff; display: grid; place-items: center; font-size: 12px; }

/* W2 Taps round Tap Tag mockup */
.revtag .w2chip { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: #0A0A0A; color: #ffffff; font-size: 15px; font-weight: 700; }
.revtag .w2title { font-weight: 800; font-size: 15px; }

/* Tripadvisor owl + bubbles */
.ta-owl { display: inline-flex; gap: 3px; align-items: center; }
.ta-owl .eye { width: 17px; height: 17px; border-radius: 50%; background: #34e0a1; position: relative; }
.ta-owl .eye::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: #04150e; }
.ta-bubbles { display: flex; gap: 5px; }
.ta-bubbles i { width: 13px; height: 13px; border-radius: 50%; background: #34e0a1; }

/* ============================================================
   Forms (contact page) & pricing tables
   ============================================================ */
.formcard { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; max-width: 640px; margin: 38px auto 0; }
.formrow { margin-bottom: 20px; }
.formrow label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .02em; margin-bottom: 8px; color: var(--text); }
.formrow input, .formrow select, .formrow textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--panel-2); color: var(--text); font-family: var(--font); font-size: 15px;
}
.formrow input:focus, .formrow select:focus, .formrow textarea:focus { outline: none; border-color: var(--accent-2); }
.formrow textarea { resize: vertical; min-height: 120px; }
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .formgrid { grid-template-columns: 1fr; } }
.form-submit { width: 100%; text-align: center; padding: 15px; border: none; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 700; font-size: 15px; cursor: pointer; font-family: var(--font); }
.form-submit:hover { background: var(--accent-2); }
.form-note { font-size: 13px; color: var(--muted-2); margin-top: 14px; text-align: center; }

/* Pricing tables */
.pricetable { width: 100%; border-collapse: collapse; margin-top: 22px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pricetable th, .pricetable td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; }
.pricetable th { background: var(--panel-2); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.pricetable tr:last-child td { border-bottom: none; }
.pricetable td.price { font-weight: 800; white-space: nowrap; }
.pricetable td.note { color: var(--muted); font-size: 13px; }
.pricetable a.rowlink { color: var(--text); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* Trust strip */
.trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 36px; }
@media (max-width: 900px) { .trust { grid-template-columns: repeat(2,1fr); } }
.trustitem { text-align: center; padding: 24px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); }
.trustitem .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--accent); color: #fff; display: grid; place-items: center; margin: 0 auto 12px; }
.trustitem .ic svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trustitem h4 { margin: 0 0 4px; font-size: 15px; }
.trustitem p { margin: 0; font-size: 13px; color: var(--muted); }

/* FAQ accordion */
.faqlist { max-width: 780px; margin: 34px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faqitem { border: 1px solid var(--line); border-radius: 14px; background: var(--panel); box-shadow: var(--shadow); overflow: hidden; }
.faqitem summary { padding: 18px 22px; font-weight: 700; font-size: 15.5px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faqitem summary::-webkit-details-marker { display: none; }
.faqitem summary::after { content: "+"; font-size: 20px; font-weight: 400; color: var(--muted-2); flex-shrink: 0; }
.faqitem[open] summary::after { content: "\2212"; }
.faqitem p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.faqgroup + .faqgroup { margin-top: 40px; }

/* ============================================================
   Interactive demo page
   ============================================================ */
.demowrap { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center; margin-top: 38px; }
@media (max-width: 800px) { .demowrap { grid-template-columns: 1fr; justify-items: center; } }

.democard-picker { display: flex; gap: 10px; margin-bottom: 22px; }
.democard-picker button {
  flex: 1; padding: 11px 14px; border-radius: 999px; border: 1px solid var(--line-2);
  background: var(--panel); font-family: var(--font); font-weight: 700; font-size: 13.5px;
  cursor: pointer; color: var(--muted);
}
.democard-picker button.on { background: var(--accent); color: #fff; border-color: var(--accent); }

.tapstage { position: relative; width: 260px; height: 260px; margin: 0 auto; display: grid; place-items: center; }
.tapcard-visual {
  width: 172px; height: 108px; border-radius: 14px; background: #0A0A0A; color: #fff;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  box-shadow: 0 14px 30px -10px rgba(10,10,10,.35); cursor: pointer; user-select: none;
  transition: transform .15s ease; font-weight: 800; letter-spacing: .04em; font-size: 13px;
}
.tapcard-visual:active { transform: scale(.96); }
.tapcard-visual span.small { font-weight: 500; font-size: 10.5px; color: rgba(255,255,255,.6); letter-spacing: .08em; }
.tapring { position: absolute; border-radius: 50%; border: 2px solid var(--accent-2); opacity: 0; pointer-events: none; }
.tapring.go { animation: tapring-anim 0.9s ease-out; }
@keyframes tapring-anim {
  0% { width: 90px; height: 90px; opacity: .5; }
  100% { width: 260px; height: 260px; opacity: 0; }
}

.phoneshell {
  width: 230px; height: 460px; border-radius: 34px; background: #0A0A0A; padding: 12px;
  box-shadow: var(--shadow); position: relative;
}
.phonescreen {
  width: 100%; height: 100%; border-radius: 24px; background: #fff; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px 18px; position: relative;
}
.phonescreen .idle { color: var(--muted-2); font-size: 13px; }
.phonescreen .result { display: none; flex-direction: column; align-items: center; gap: 10px; }
.phonescreen.tapped .idle { display: none; }
.phonescreen.tapped .result { display: flex; }
.phonescreen .rmark { width: 48px; height: 48px; border-radius: 14px; background: #0A0A0A; color: #fff; display: grid; place-items: center; font-weight: 800; }
.phonescreen h4 { margin: 0; font-size: 16px; }
.phonescreen p { margin: 0; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.phonescreen .rbtn { margin-top: 6px; padding: 9px 18px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 12.5px; font-weight: 700; }

/* Calculator */
.calcwrap { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; max-width: 720px; margin: 34px auto 0; }
.calcrow { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; margin-bottom: 18px; }
.calcrow label { font-size: 14px; font-weight: 700; }
.calcrow input[type="range"] { width: 100%; }
.calcrow .val { font-weight: 800; font-size: 15px; min-width: 60px; text-align: right; }
.calcresult { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
@media (max-width: 560px) { .calcresult { grid-template-columns: 1fr; } }
.calcbox { text-align: center; padding: 20px 14px; border-radius: 14px; background: var(--panel-2); border: 1px solid var(--line); }
.calcbox span { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.calcbox b { font-size: 28px; }
.calcbox.win { background: #0A0A0A; color: #fff; }
.calcbox.win span { color: rgba(255,255,255,.6); }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-size: 21px; margin-top: 40px; margin-bottom: 10px; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--muted); font-size: 15px; line-height: 1.75; }
.legal ul { padding-left: 20px; }
.legal .updated { font-size: 13px; color: var(--muted-2); margin-bottom: 30px; }

/* ============================================================
   Nav dropdown ("Resources")
   ============================================================ */
.navdrop { position: relative; }
.navdrop-btn {
  background: none; border: none; font-family: var(--font); font-size: 14px; font-weight: 500;
  color: var(--muted); cursor: pointer; padding: 0; display: flex; align-items: center; gap: 5px;
}
.navdrop-btn .chev { transition: transform .18s ease; }
.navdrop-btn:hover, .navdrop-btn.active { color: var(--text); }
.navdrop.open .navdrop-btn .chev { transform: rotate(180deg); }
.navdrop-menu {
  display: none; position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%);
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 14px; padding: 8px;
  box-shadow: 0 22px 55px rgba(10,10,10,.16); min-width: 200px; z-index: 70; flex-direction: column; gap: 2px;
}
.navdrop.open .navdrop-menu { display: flex; }
.navdrop-menu a { padding: 10px 13px; border-radius: 9px; font-size: 14px; color: var(--muted); white-space: nowrap; }
.navdrop-menu a:hover, .navdrop-menu a.active { background: rgba(10,10,10,.05); color: var(--text); }

@media (max-width: 720px) {
  .navdrop-btn { width: 100%; padding: 12px 14px; justify-content: space-between; font-size: 15px; }
  .navdrop-menu {
    display: flex; position: static; transform: none; box-shadow: none; border: none;
    background: transparent; padding: 0 0 0 14px; min-width: 0;
  }
  .navdrop:not(.open) .navdrop-menu { display: none; }
  .navdrop-menu a { padding: 10px 14px; }
}


/* --- Coming-soon brand card ------------------------------------------- */
.soonbadge{
  display:inline-flex; align-items:center; gap:7px; white-space:nowrap;
  align-self:flex-start; width:fit-content;
  font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:var(--muted); border:1px solid var(--line-2); border-radius:999px;
  padding:5px 12px; margin-bottom:12px;
}
.soonbadge::before{
  content:""; width:6px; height:6px; border-radius:50%; background:var(--accent);
  animation:soonpulse 2.4s ease-in-out infinite;
}
@keyframes soonpulse{0%,100%{opacity:.25}50%{opacity:1}}
@media (prefers-reduced-motion: reduce){ .soonbadge::before{animation:none; opacity:.7} }

.brandcard--soon{ border-style:dashed; }
.brandcard--soon h3{ margin-bottom:2px; }
.soonlist{ list-style:none; margin:14px 0 0; padding:0; display:grid; gap:9px; }
.soonlist li{
  display:flex; gap:10px; align-items:flex-start;
  font-size:14px; color:var(--muted); line-height:1.5;
}
.soonlist li::before{
  content:""; flex:0 0 auto; width:5px; height:5px; margin-top:8px;
  border-radius:50%; background:var(--line-2);
}
