/* ============================================================
   W2 — shared style system
   Dark & premium. Used across all pages.
   ============================================================ */

:root {
  --bg:        #07090d;
  --bg-2:      #0c1017;
  --panel:     #10151f;
  --panel-2:   #141b28;
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.14);
  --text:      #eef2f8;
  --muted:     #9aa6b8;
  --muted-2:   #6b7688;
  --accent:    #2fc9ad;   /* refined teal */
  --accent-2:  #128a74;   /* deep emerald */
  --gold:      #e3b877;   /* warm highlight */
  --glow:      0 0 30px rgba(47,201,173,.24);
  --radius:    18px;
  --maxw:      1120px;
  --font:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1100px 560px at 84% -14%, rgba(47,201,173,.10), transparent 60%),
    radial-gradient(820px 460px at -6% 6%, rgba(227,184,119,.045), transparent 55%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.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(7,9,13,.72);
  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; font-weight: 800; letter-spacing: .5px; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05070a; font-weight: 900; font-size: 15px;
  box-shadow: var(--glow);
}
.brand .mark svg { width: 23px; height: 23px; display: block; }
.brand .mark .w { fill: none; stroke: #05070a; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.brand .mark .two { fill: #05070a; }
.brand small { color: var(--muted); font-weight: 500; letter-spacing: 2px; font-size: 11px; }
.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-2); border: 1px solid var(--line-2); border-radius: 14px;
    padding: 10px; box-shadow: 0 22px 55px rgba(0,0,0,.55); z-index: 60;
  }
  .navtoggle:checked ~ .navlinks { display: flex; }
  .navlinks a { padding: 12px 14px; border-radius: 10px; font-size: 15px; }
  .navlinks a:hover { background: rgba(255,255,255,.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: 2px; text-transform: uppercase;
  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 { background: linear-gradient(115deg, #47d6bb, #109a80); -webkit-background-clip: text; background-clip: text; color: transparent; }

.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, #35cfb2, #109a80); color: #04140f; box-shadow: var(--glow); }
.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: 2px; text-transform: uppercase; 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); }
@media (max-width: 860px){ .grid.cols-2, .grid.cols-3 { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: border-color .2s, transform .2s;
}
.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(53,224,200,.1); border: 1px solid rgba(53,224,200,.25);
  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: linear-gradient(180deg, var(--panel-2), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: 22px; padding: 34px;
  display: flex; flex-direction: column; gap: 16px;
}
.brandcard::after {
  content: ""; position: absolute; inset: -1px; border-radius: 22px; pointer-events: none;
  background: radial-gradient(400px 200px at 100% 0%, rgba(47,201,173,.16), transparent 60%);
}
.brandcard .tag { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }
.brandcard h3 { font-size: 26px; }
.brandcard p { color: var(--muted); flex: 1; }

/* ---------- 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); }
.stat b { display: block; font-size: 34px; font-weight: 800; background: linear-gradient(120deg,#47d6bb,#109a80); -webkit-background-clip:text; background-clip:text; color: transparent; }
.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: linear-gradient(135deg, rgba(47,201,173,.10), rgba(18,138,116,.12));
  border: 1px solid var(--line-2);
}
.ctaband h2 { margin-bottom: 12px; }
.ctaband p { color: var(--muted); 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; }

/* ---------- 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(--accent); 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: linear-gradient(135deg, rgba(47,201,173,.13), rgba(18,138,116,.16)); 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: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #05070a; font-weight: 800; font-size: 24px; box-shadow: var(--glow); }

.prod .badge { display: inline-block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; 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; } }

/* W2Taps 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: radial-gradient(circle at 50% 38%, rgba(47,201,173,.16), transparent 70%), var(--panel); }
.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,#0e3f37,#0a1a2f); color: #eafffb; border: 1px solid rgba(53,224,200,.3); }
.tapcard.color .nfc { background: var(--accent); color: #05070a; }
.tapcard.custom { background: linear-gradient(135deg,var(--accent),var(--accent-2)); color: #05070a; }
.tapcard.custom .nfc { background: rgba(5,7,10,.85); color: var(--accent); }

/* W2Reviews 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; }

/* 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; }

/* 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; }
