/* ==========================================================
   OnePlusTwo website styles
   Colours and fonts are set once here, in :root.
   ========================================================== */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage.woff2") format("woff2");
  font-weight: 600 800;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --green: #04D98B;
  --green-dark: #036B45;
  --ink: #161616;
  --muted: #4B514D;
  --ground: #FCFBF7;
  --mint: #E4F8EE;
  --line: #E4E1D8;
  --white: #FFFFFF;
  --placeholder: #EEEBE2;
  --placeholder-line: #CFCABD;
  --display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --body: "Figtree", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Courier New", Courier, monospace;
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 32px;
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section: clamp(64px, 9vw, 112px);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }

a { color: var(--green-dark); text-underline-offset: 3px; }
a:hover { color: var(--ink); }

:focus-visible { outline: 3px solid var(--green-dark); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--ink); color: var(--white); padding: 12px 18px; border-radius: 8px; font-weight: 700;
}
.skip-link:focus { top: 16px; color: var(--white); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }
.section--mint { background: var(--mint); }
.section--flush-top { padding-top: 0; }
.stack { display: flex; flex-direction: column; gap: 24px; }
.stack--lg { gap: 48px; }
.stack--sm { gap: 14px; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 5vw, 72px); align-items: center; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; }
.grid--wide-gap { gap: 56px; }
.grid--top { align-items: start; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 800px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2 > .order-first-mobile { order: -1; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--wide-gap { gap: 40px; }
}

/* ---------- Type ---------- */

h1, h2, h3 { margin: 0; font-family: var(--display); color: inherit; }
h1 { font-weight: 800; font-size: clamp(2.5rem, 4.2vw + 1rem, 4.75rem); line-height: 1.03; letter-spacing: -0.02em; }
h2 { font-weight: 800; font-size: clamp(2rem, 2.4vw + 1rem, 3rem); line-height: 1.08; letter-spacing: -0.015em; }
h3 { font-weight: 600; font-size: clamp(1.3rem, 0.5vw + 1.1rem, 1.6rem); line-height: 1.22; }
h1.h1--page { font-size: clamp(2.4rem, 3.6vw + 1rem, 4.25rem); }
h2.h2--sm { font-size: clamp(1.8rem, 1.6vw + 1rem, 2.75rem); }
p { margin: 0; color: var(--muted); max-width: 640px; }
.lead { font-size: clamp(1.15rem, 0.4vw + 1.05rem, 1.3rem); }
.small { font-size: 0.95rem; }
.text-ink { color: var(--ink); }
.label { font-size: 0.95rem; font-weight: 600; color: var(--green-dark); }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }

/* ---------- Buttons & links ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 28px; border-radius: 999px;
  font-family: var(--body); font-weight: 700; font-size: 1.05rem; line-height: 1.2;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary { background: var(--green); color: var(--ink); }
.btn--primary:hover { background: #03C27C; color: var(--ink); }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #333; color: var(--white); }
.btn--lg { min-height: 60px; padding: 0 36px; font-size: 1.1rem; }
.btn--block { display: flex; width: 100%; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.text-link { font-weight: 700; font-size: 1.05rem; }

/* ---------- Header ---------- */

.site-header { position: sticky; top: 0; z-index: 50; background: var(--ground); border-bottom: 1px solid var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 88px; }
.brand img { height: 32px; width: auto; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; align-items: center; }
.main-nav a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 1rem; padding: 10px 2px; }
.main-nav a:hover { text-decoration: underline; text-decoration-color: var(--green); text-decoration-thickness: 3px; text-underline-offset: 8px; }
.main-nav a[aria-current="page"] { font-weight: 700; text-decoration: underline; text-decoration-color: var(--green); text-decoration-thickness: 3px; text-underline-offset: 8px; }
.header-cta { min-height: 48px; padding: 0 24px; font-size: 1rem; }
.nav-toggle {
  display: none; align-items: center; justify-content: center; width: 48px; height: 48px;
  border: 2px solid var(--ink); border-radius: 999px; background: transparent; color: var(--ink); cursor: pointer;
}
.nav-mobile-cta { display: none; }

@media (max-width: 1200px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .main-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ground); border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 28px;
    box-shadow: 0 16px 32px rgba(22, 22, 22, 0.08);
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav li a { display: block; padding: 14px 0; font-size: 1.15rem; border-bottom: 1px solid var(--line); }
  .nav-mobile-cta { display: block; padding-top: 20px; }
  .nav-mobile-cta a { border-bottom: 0 !important; }
}
@media (max-width: 480px) { .brand img { height: 26px; } }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: var(--white); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 38px; width: auto; align-self: flex-start; }
.footer-brand p { color: #C9CEC9; font-size: 1rem; max-width: 340px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; font-size: 1rem; }
.footer-contact a, .footer-col a { color: #E9ECE9; text-decoration: none; }
.footer-contact a:hover, .footer-col a:hover { color: var(--green); text-decoration: underline; }
.footer-col h2 { font-family: var(--body); font-size: 0.95rem; font-weight: 700; color: var(--green); margin-bottom: 18px; letter-spacing: 0; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 1rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 64px; padding-top: 28px; border-top: 1px solid #3A3D3B; font-size: 0.9rem; color: #AEB4AF; }
.footer-bottom a { color: #AEB4AF; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Photo placeholders ---------- */
/* Replace each .photo div with an <img> once real photos are ready. */

.photo {
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius);
  background: var(--placeholder); border: 2px dashed var(--placeholder-line);
  display: flex; align-items: center; justify-content: center; padding: 24px; text-align: center;
  color: var(--muted); font-size: 1rem; font-weight: 500;
}
.photo--tall { aspect-ratio: 5 / 6; border-radius: var(--radius-lg); }
.photo--wide { aspect-ratio: 16 / 9; border-radius: var(--radius-lg); }
.photo--square { aspect-ratio: 1 / 1; }
img.photo-img { width: 100%; object-fit: cover; border-radius: var(--radius); }

/* ---------- Hero ---------- */

.hero { padding: clamp(48px, 7vw, 88px) 0 var(--section); }
.hero-visual { position: relative; }
.hero-visual .photo { margin-left: auto; width: 88%; }
.ticket {
  position: absolute; left: 0; bottom: 32px; width: min(300px, 62%);
  background: var(--white); border-radius: 6px; box-shadow: 0 24px 48px rgba(22, 22, 22, 0.18);
  transform: rotate(-4deg); font-family: var(--mono); color: var(--ink);
  padding: 26px 24px 30px; display: flex; flex-direction: column; gap: 12px;
}
.ticket-row { display: flex; justify-content: space-between; gap: 8px; font-size: 0.9rem; font-weight: 700; }
.ticket-rule { border-top: 2px dashed var(--ink); }
.ticket-items { display: flex; flex-direction: column; gap: 8px; font-size: 0.95rem; line-height: 1.35; }
.ticket-stamp { align-self: flex-start; background: var(--green); padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; }
@media (prefers-reduced-motion: no-preference) {
  .ticket { animation: ticket-in .7s cubic-bezier(.2, .8, .2, 1) .2s both; }
  @keyframes ticket-in { from { opacity: 0; transform: translateY(24px) rotate(-8deg); } to { opacity: 1; transform: translateY(0) rotate(-4deg); } }
}
@media (max-width: 800px) {
  .hero-visual .photo { width: 100%; }
  .ticket { position: relative; left: auto; bottom: auto; margin: -80px 0 0 16px; }
}

.page-head { padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 5vw, 72px); }
.page-head .stack { max-width: 900px; }
.breadcrumb { font-size: 1rem; font-weight: 600; }

/* ---------- Components ---------- */

.logo-tile, .partner-tile {
  min-height: 72px; border-radius: 14px; border: 1px dashed var(--placeholder-line);
  display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.9rem; padding: 8px; text-align: center;
}
.partner-tile { min-height: 96px; background: var(--white); border-radius: 18px; }

.icon-badge { width: 56px; height: 56px; border-radius: 16px; background: var(--green); display: flex; align-items: center; justify-content: center; }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.card--product { padding: 22px 22px 30px; gap: 16px; border-radius: 28px; }
.card--product .photo { aspect-ratio: 16 / 11; border-radius: 18px; }
.card--feature-lg { background: var(--white); border-radius: var(--radius-lg); padding: 28px 28px 40px; display: flex; flex-direction: column; gap: 20px; }
.card--feature-lg h3 { font-weight: 800; font-size: clamp(1.6rem, 1vw + 1.2rem, 2.1rem); }
.card .btn { align-self: flex-start; }

.tag { align-self: flex-start; background: var(--green); color: var(--ink); padding: 6px 14px; border-radius: 999px; font-size: 0.875rem; font-weight: 700; }

.venue-card { display: flex; flex-direction: column; gap: 16px; text-decoration: none; color: var(--ink); }
.venue-card .photo { aspect-ratio: 5 / 4; border-radius: 20px; }
.venue-card:hover h3 { text-decoration: underline; text-decoration-color: var(--green); text-decoration-thickness: 3px; text-underline-offset: 6px; }
.venue-card p { font-size: 1rem; }

.callout { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 28px 36px; border-radius: 20px; border: 1px solid var(--line); background: var(--white); }
.callout p { color: var(--ink); max-width: none; }

.ticklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ticklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.05rem; line-height: 1.5; color: var(--ink); }
.ticklist svg { flex-shrink: 0; margin-top: 3px; }

.steps { list-style: none; margin: 0; padding: 0; }
.steps li { display: flex; flex-direction: column; gap: 14px; }
.step-num { font-family: var(--display); font-weight: 800; font-size: 4rem; line-height: 1; color: var(--green-dark); }

.quote { margin: 0; padding: clamp(28px, 4vw, 48px); border-radius: 28px; background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 28px; }
.quote blockquote { margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(1.35rem, 1vw + 1rem, 1.9rem); line-height: 1.3; }
.quote--dark { background: var(--ink); color: var(--white); border: 0; }
.quote figcaption { display: flex; align-items: center; gap: 16px; }
.quote-avatar { width: 56px; height: 56px; border-radius: 999px; background: var(--green); flex-shrink: 0; }
.quote-name { display: block; font-weight: 700; font-size: 1.05rem; }
.quote-venue { display: block; font-size: 0.95rem; color: var(--muted); }
.quote--dark .quote-venue { color: #C9CEC9; }
.quote--compact blockquote { font-size: 1.35rem; }

.cta-band { background: var(--green); border-radius: 36px; padding: clamp(40px, 6vw, 80px); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band p { color: var(--ink); font-size: 1.2rem; }

.jump-links { display: flex; gap: 12px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; min-height: 44px; padding: 0 20px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); color: var(--ink); text-decoration: none; font-weight: 600; font-size: 1rem; font-family: var(--body); cursor: pointer; }
.pill:hover { border-color: var(--ink); color: var(--ink); }
.pill[aria-pressed="true"] { background: var(--ink); color: var(--white); border-color: var(--ink); }

.sector-block { padding: clamp(56px, 7vw, 88px) 0; }

.rating { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.rating-score { font-family: var(--display); font-weight: 800; font-size: 2.5rem; line-height: 1; }

/* ---------- Pricing ---------- */

.plans { align-items: start; }
.plan { display: flex; flex-direction: column; gap: 22px; padding: 40px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); }
.plan h2 { font-size: 2rem; }
.plan-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.plan-amount { font-family: var(--display); font-weight: 800; font-size: 3.5rem; letter-spacing: -0.02em; line-height: 1; }
.plan-period { font-size: 1.05rem; color: var(--muted); }
.plan ul { list-style: none; margin: 0; padding: 20px 0 0; display: flex; flex-direction: column; gap: 14px; border-top: 1px solid var(--line); }
.plan li { display: flex; gap: 12px; font-size: 1rem; line-height: 1.5; }
.plan li svg { flex-shrink: 0; margin-top: 2px; }
.plan--featured { background: var(--ink); color: var(--white); border-color: var(--ink); }
.plan--featured p, .plan--featured .plan-period { color: #C9CEC9; }
.plan--featured ul { border-top-color: #3A3D3B; }
.plan-tag-space { height: 32px; }
@media (max-width: 1024px) { .plans { grid-template-columns: 1fr; max-width: 560px; } .plan-tag-space { display: none; } }

.faq details { border-top: 1px solid var(--line); padding: 4px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; font-weight: 700; font-size: 1.2rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--display); font-size: 1.8rem; line-height: 1; color: var(--green-dark); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding-bottom: 22px; max-width: 760px; }

/* ---------- Integrations ---------- */

.int-group { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; padding: 48px 0; border-top: 1px solid var(--line); }
.int-logos { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 900px) { .int-group { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 520px) { .int-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- Blog ---------- */

.post { display: flex; flex-direction: column; gap: 12px; }
.post .photo { aspect-ratio: 16 / 10; border-radius: 20px; }
.post h3 { font-size: 1.4rem; line-height: 1.25; }
.post[hidden] { display: none; }
.featured-post { background: var(--mint); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 32px); }

/* ---------- Forms ---------- */

.form-panel { background: var(--mint); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 20px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 600; font-size: 1rem; }
.field .optional { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 16px; border-radius: 12px; border: 1.5px solid #8F8B80;
  background: var(--white); font-family: var(--body); font-size: 1rem; color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--green-dark); outline-offset: 1px; border-color: var(--ink); }
.field [aria-invalid="true"] { border-color: #B42318; }
.field-error { font-size: 0.9rem; color: #B42318; font-weight: 600; }
.field-error:empty { display: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-weight: 600; font-size: 1rem; }
.form-status--error { color: #B42318; }
.form-success { background: var(--white); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.form-note { font-size: 0.9rem; }

.calendly-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 12px; overflow: hidden; }
.calendly-inline-widget { min-width: 280px; height: 720px; }
@media (max-width: 640px) { .calendly-inline-widget { height: 1000px; } }

/* ---------- Legal pages ---------- */

.prose { max-width: 760px; }
.prose h2 { font-size: 1.8rem; margin: 48px 0 16px; }
.prose p, .prose li { color: var(--muted); max-width: none; }
.prose p + p { margin-top: 14px; }
.prose ul { padding-left: 22px; display: flex; flex-direction: column; gap: 8px; margin: 14px 0; }

/* ---------- Helpers ---------- */

.span-2 { grid-column: span 2; }
.demo-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
@media (max-width: 1024px) { .demo-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .span-2 { grid-column: auto; } }

/* ---------- Partner logos ---------- */

.partner-tile img { max-height: 44px; max-width: 86%; width: auto; object-fit: contain; }
.partner-tile img.logo-tall { max-height: 64px; }
.logo-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 700px) { .logo-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.partner-tile--solid { border-style: solid; border-color: var(--line); }

/* ---------- Products ---------- */

.product-card { display: flex; flex-direction: column; gap: 16px; padding: 22px 22px 30px; border-radius: 28px; background: var(--white); border: 1px solid var(--line); }
.product-card .photo { aspect-ratio: 16 / 11; border-radius: 18px; }
.product-card .btn { align-self: flex-start; margin-top: auto; }
.price-hint { font-weight: 700; color: var(--ink); font-size: 1rem; }

.price-box { background: var(--ink); color: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 56px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 64px); }
.price-box p, .price-box li { color: #D6DAD6; }
.price-box h2 { color: var(--white); }
.price-figures { display: flex; flex-wrap: wrap; gap: 20px; }
.price-figure { background: #262826; border-radius: var(--radius); padding: 24px 28px; display: flex; flex-direction: column; gap: 4px; min-width: 200px; flex: 1; }
.price-figure .label { color: var(--green); }
.price-figure strong { font-family: var(--display); font-weight: 800; font-size: 2.75rem; line-height: 1.05; color: var(--white); }
.price-figure span { font-size: 0.95rem; color: #C9CEC9; }
.price-box .ticklist li { color: var(--white); }
@media (max-width: 900px) { .price-box { grid-template-columns: 1fr; } }

/* Option picker (kiosk installation / screen size) */
.picker { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.picker-tabs { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.picker-tab {
  text-align: left; width: 100%; padding: 20px 22px; border-radius: 20px; border: 1.5px solid var(--line);
  background: var(--white); font-family: var(--body); color: var(--ink); cursor: pointer; display: flex; flex-direction: column; gap: 6px;
  transition: border-color .15s ease, background-color .15s ease;
}
.picker-tab strong { font-family: var(--display); font-weight: 600; font-size: 1.3rem; }
.picker-tab span { color: var(--muted); font-size: 1rem; line-height: 1.5; }
.picker-tab:hover { border-color: var(--ink); }
.picker-tab[aria-selected="true"] { border-color: var(--ink); background: var(--mint); box-shadow: inset 5px 0 0 var(--green); }
.picker-panel .photo, .picker-panel img { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); }
@media (prefers-reduced-motion: no-preference) {
  .picker-panel:not([hidden]) { animation: panel-in .35s ease both; }
  @keyframes panel-in { from { opacity: 0; transform: scale(.98); } to { opacity: 1; transform: none; } }
}
@media (max-width: 800px) { .picker { grid-template-columns: 1fr; } .picker-visual { order: -1; } }

.mini-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 1024px) { .mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .mini-grid { grid-template-columns: 1fr; } }

.status-demo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; background: var(--ink); border-radius: var(--radius-lg); padding: 24px; color: var(--white); }
.status-col { background: #262826; border-radius: 18px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.status-col h3 { font-family: var(--body); font-weight: 700; font-size: 1.05rem; color: #C9CEC9; }
.status-col--ready h3 { color: var(--green); }
.status-nums { display: flex; flex-wrap: wrap; gap: 10px; }
.status-nums span { font-family: var(--display); font-weight: 800; font-size: 1.9rem; background: #333633; border-radius: 12px; padding: 6px 14px; }
.status-col--ready .status-nums span { background: var(--green); color: var(--ink); }

/* ---------- Hardware brands ---------- */

.brand-row { display: flex; gap: 16px; flex-wrap: wrap; }
.brand-chip { display: inline-flex; align-items: center; min-height: 64px; padding: 0 32px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); font-family: var(--display); font-weight: 800; font-size: 1.6rem; letter-spacing: -0.01em; }
.hw-group { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: clamp(24px, 4vw, 56px); padding: 56px 0; border-top: 1px solid var(--line); }
.hw-group:first-child { border-top: 0; padding-top: 0; }
@media (max-width: 900px) { .hw-group { grid-template-columns: 1fr; } }

/* ---------- Footer extras ---------- */

.footer-address { font-style: normal; color: #C9CEC9; font-size: 1rem; line-height: 1.6; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 0.95rem; }
.social-links a { color: #E9ECE9; }
.social-links a:hover { color: var(--green); }

/* ---------- Timeline (Why us?) ---------- */

.timeline { position: relative; width: 100%; min-width: 0; max-width: 1040px; margin: 0 auto; padding: 24px 0 8px; }
.timeline-track, .timeline-progress { position: absolute; left: 50%; top: 0; width: 4px; margin-left: -2px; border-radius: 4px; }
.timeline-track { bottom: 0; background: var(--line); }
.timeline-progress { height: 0; background: var(--green); box-shadow: 0 0 0 4px rgba(4, 217, 139, 0.15); }
.timeline-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: clamp(40px, 6vw, 72px); }
.milestone { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.milestone-dot {
  position: absolute; left: 50%; top: 50%; width: 28px; height: 28px; margin: -14px 0 0 -14px; border-radius: 999px;
  background: var(--ground); border: 4px solid var(--line); transition: border-color .4s ease, background-color .4s ease, transform .4s ease; z-index: 1;
}
.milestone.is-reached .milestone-dot { border-color: var(--green); background: var(--green); transform: scale(1.15); box-shadow: 0 0 0 6px rgba(4, 217, 139, 0.2); }
.milestone-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; display: flex; flex-direction: column; gap: 10px; }
.milestone.is-reached .milestone-card { border-color: var(--ink); }
.milestone-year { font-family: var(--display); font-weight: 800; font-size: clamp(2.5rem, 3vw + 1rem, 4rem); line-height: 1; color: var(--green-dark); letter-spacing: -0.02em; }
.milestone:nth-child(odd) .milestone-card { grid-column: 1; }
.milestone:nth-child(odd) .milestone-year { grid-column: 2; grid-row: 1; }
.milestone:nth-child(even) .milestone-year { grid-column: 1; grid-row: 1; text-align: right; }
.milestone:nth-child(even) .milestone-card { grid-column: 2; grid-row: 1; }
.milestone-card h3 { font-size: 1.4rem; }
.milestone-card p { font-size: 1.05rem; }
.timeline.is-animated .milestone-card, .timeline.is-animated .milestone-year { opacity: 0; transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .2, 1); }
.timeline.is-animated .milestone:nth-child(odd) .milestone-card { transform: translateX(-40px); }
.timeline.is-animated .milestone:nth-child(even) .milestone-card { transform: translateX(40px); }
.timeline.is-animated .milestone-year { transform: translateY(20px); }
.timeline.is-animated .milestone.is-visible .milestone-card, .timeline.is-animated .milestone.is-visible .milestone-year { opacity: 1; transform: none; }
.timeline-end { position: relative; z-index: 1; margin: clamp(40px, 6vw, 72px) auto 0; width: max-content; max-width: 100%; background: var(--green); color: var(--ink); border-radius: 999px; padding: 14px 28px; font-weight: 700; font-size: 1.1rem; text-align: center; }

@media (max-width: 800px) {
  .timeline-track, .timeline-progress { left: 14px; }
  .milestone { grid-template-columns: 1fr; gap: 12px; padding-left: 48px; }
  .milestone-dot { left: 14px; top: 18px; margin-top: 0; }
  .milestone:nth-child(n) .milestone-year, .milestone:nth-child(n) .milestone-card { grid-column: 1; grid-row: auto; text-align: left; }
  .timeline.is-animated .milestone:nth-child(n) .milestone-card { transform: translateY(24px); }
  .timeline-end { margin-left: 0; }
}
.hw-group .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1024px) { .hw-group .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .hw-group .grid-3, .hw-group .grid-2 { grid-template-columns: 1fr; } }

/* Keep a gap when a flush section follows a mint one */
.section--mint + .section--flush-top { padding-top: var(--section); }

/* Centre the Book a demo button in the mobile menu */
.main-nav .nav-mobile-cta a { display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 700; }

/* Venue logos on the homepage: equal gaps between logos, whatever their width */
.venue-logos { list-style: none; margin: 0; padding: 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.logo-tile--img { border: 0; min-height: 88px; padding: 8px 0; flex: 0 0 auto; }
.logo-tile--img img { height: 64px; width: auto; max-width: 180px; object-fit: contain; opacity: .85; transition: opacity .2s ease; }
.logo-tile--img:hover img { opacity: 1; }
@media (max-width: 900px) {
  .venue-logos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); justify-items: center; gap: 12px 20px; }
  .logo-tile--img img { max-width: 100%; height: auto; max-height: 56px; }
}
@media (max-width: 480px) { .venue-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Illustration placeholders (swap for real photos when ready) */
.photo--illus { background: var(--white); border: 1px solid var(--line); padding: 5%; }
.photo--illus img { width: 100%; height: 100%; object-fit: contain; }
.section--mint .photo--illus, .featured-post .photo--illus { border-color: transparent; }
.photo--illus.photo--tall { aspect-ratio: 1 / 1; }

/* Testimonial with venue logo */
.quote--logo { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(24px, 4vw, 48px); align-items: center; }
.quote-logo { width: clamp(96px, 12vw, 150px); height: auto; }
@media (max-width: 640px) { .quote--logo { grid-template-columns: 1fr; } .quote-logo { width: 96px; } }

/* Seasonal promotions (homepage) */
.season-intro { max-width: none; }
.season-layout { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 56px); }
.season-feature { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(28px, 4vw, 56px); align-items: center; padding: clamp(22px, 3vw, 32px); border-radius: 32px; background: var(--ink); color: var(--white); }
.season-feature .photo { aspect-ratio: 4 / 3; border-radius: 22px; border-color: transparent; }
.season-feature h3 { font-size: clamp(1.6rem, 1.4vw + 1.1rem, 2.4rem); line-height: 1.12; font-weight: 800; }
.season-feature p { color: #D6DAD6; }
.season-feature-body { padding-right: clamp(0px, 2vw, 24px); }
.season-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.season-card { display: flex; flex-direction: column; gap: 16px; padding: 22px 22px 30px; border-radius: 28px; background: var(--white); border: 1px solid var(--line); }
.season-card .photo { aspect-ratio: 2 / 1; border-radius: 18px; }
.season-card h3 { font-size: clamp(1.3rem, 0.6vw + 1.1rem, 1.55rem); }
.season-card > .btn { margin-top: auto; align-self: flex-start; }
.btn--outline-light { border-color: var(--white); color: var(--white); background: transparent; }
.btn--outline-light:hover { background: var(--white); color: var(--ink); }
@media (max-width: 860px) {
  .season-feature { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: 1fr; }
}

/* ---------- Cookie banner and consent ---------- */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 90; display: flex; justify-content: center; pointer-events: none; }
.cookie-inner { pointer-events: auto; width: 100%; max-width: 760px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 20px 48px rgba(22, 22, 22, 0.18); padding: 24px 28px; display: flex; flex-direction: column; gap: 14px; max-height: calc(100vh - 32px); overflow-y: auto; }
.cookie-title { font-size: 1.35rem; font-weight: 800; outline: none; }
.cookie-inner p { font-size: 1rem; max-width: none; }
.cookie-options { border: 0; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.cookie-option { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--muted); cursor: pointer; }
.cookie-option strong { color: var(--ink); }
.cookie-option input, .check-field input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--green-dark); flex-shrink: 0; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { min-height: 46px; padding: 0 22px; font-size: 1rem; }
@media (max-width: 560px) { .cookie-actions .btn { flex: 1 1 100%; } .cookie-inner { padding: 20px; } }

.check-field { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: var(--ink); }
.check-field label { cursor: pointer; }

.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.link-button { background: none; border: 0; padding: 0; font: inherit; color: #AEB4AF; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.link-button:hover { color: var(--green); }

.calendly-gate { min-height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 32px; }
.calendly-gate p { max-width: 420px; }

/* Customer stories and compact testimonials with logos */
.story-card { display: flex; flex-direction: column; gap: 14px; background: var(--white); border-radius: var(--radius); padding: 22px 22px 30px; }
.story-logo { height: 180px; border-radius: 18px; background: var(--ground); display: flex; align-items: center; justify-content: center; padding: 20px; }
.story-logo img { max-height: 140px; max-width: 85%; width: auto; height: auto; object-fit: contain; }
.quote-logo-small { height: 64px; width: auto; max-width: 180px; object-fit: contain; align-self: flex-start; }
