/* ==========================================================
   FEARTICKET — Shared/base styles used across all pages
   (design tokens, reset, header, nav, footer, buttons, etc.)
   ========================================================== */

:root{
    --ink:#100D10;
    --ink2:#1C1620;
    --ink3:#2A2130;
    --paper:#F4ECDC;
    --paper-line:#D8C9A3;
    --ember:#E85D2F;
    --ember-dim:#B8461F;
    --blood:#8C1D18;
    --scan:#4FD98A;
    --fog:#B9AFA0;
    /* lightened from #7A7268, which failed WCAG AA (3.74:1 on --ink2).
       #9A9186 clears 4.5:1 on ink, ink2, the newsletter bar and input fills. */
    --fog-dim:#9A9186;
    --text-ink:#221C1B;
    --radius:2px;

    /* ---- spacing scale ----
       One rhythm for the whole site. Body sections sit at --sp-section; the
       first section after a hero uses --sp-after-hero, because the hero has
       already provided the visual break and the two paddings would otherwise
       compound into ~130px of dead space. */
    --sp-section:88px;
    --sp-after-hero:64px;
    --sp-cta:100px;
    --sp-hero-top:56px;
    --sp-hero-bottom:40px;
  }

*{box-sizing:border-box;}

html{scroll-behavior:smooth; scroll-padding-top:88px;}

body{
    margin:0;
    background:var(--ink);
    color:var(--paper);
    font-family:'Space Grotesk',sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

h1,h2,h3,.display{
    font-family:'Big Shoulders Display',sans-serif;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:0.01em;
    line-height:1.02;
    margin:0;
  }

.mono{font-family:'IBM Plex Mono',monospace;}

a{color:inherit;}

img{max-width:100%;display:block;}

:focus-visible{outline:3px solid var(--scan); outline-offset:3px;}

/* label text for screen readers only */
.sr-only{
    position:absolute; width:1px; height:1px; padding:0; margin:-1px;
    overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
  }

/* keyboard users can jump the ~30 header links on every page */
.skip-link{
    position:absolute; left:-9999px; top:0; z-index:200;
    background:var(--ember); color:var(--ink); padding:12px 20px;
    font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:14px;
    text-decoration:none; border-radius:0 0 4px 0;
  }

.skip-link:focus{left:0;}

::selection{background:var(--ember); color:var(--ink);}

.wrap{max-width:1180px; margin:0 auto; padding:0 28px;}

.perf::before, .perf::after{
    content:"";
    position:absolute; top:50%; width:100%; height:1px;
    border-top:2px dashed var(--paper-line);
    left:0; transform:translateY(-50%);
    opacity:0.5;
  }

.perf.on-dark::before{border-top-color: rgba(244,236,220,0.25);}

.perf.on-dark{background-image: radial-gradient(circle at center, var(--ink) 6px, transparent 6.5px);}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announce-bar{
    background:var(--ink2); border-bottom:1px solid rgba(244,236,220,0.08);
  }

.announce-inner{
    display:flex; align-items:center; justify-content:center; gap:14px;
    padding:10px 28px; flex-wrap:wrap; text-align:center;
  }

.announce-text{
    font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--fog);
  }

.announce-link{
    font-family:'Space Grotesk',sans-serif; font-size:13px; font-weight:700; color:var(--ember);
    text-decoration:none; white-space:nowrap; transition:color .15s;
  }

.announce-link:hover{color:#FF6E3D;}

.nav{display:flex; align-items:center; justify-content:space-between; padding:16px 28px; max-width:1180px; margin:0 auto; position:relative;}

.logo{font-family:'Big Shoulders Display',sans-serif; font-weight:900; font-size:26px; letter-spacing:0.02em; text-decoration:none; display:flex; align-items:center; gap:8px; flex-shrink:0;}

/* the logo art has a thin paint drip in its bottom ~13%, so the letterforms
   sit high in the canvas; nudge down so the letters optically centre.
   34px keeps the wordmark at ~46% of header height - at 40px it was 54%,
   which read as oversized against the nav. */
.logo-img{height:34px; width:auto; display:block; position:relative; top:3px;}

.logo .dot{width:9px; height:9px; border-radius:50%; background:var(--ember); display:inline-block;}

.nav-links{display:flex; align-items:center; gap:25px; list-style:none; margin:0; padding:0;}

.nav-links > li{position:relative; display:flex; align-items:center;}

/* nav: small caps in the body face with wide tracking — ties to the mono
   kickers without borrowing the headline voice */
.nav-links a, .nav-links .drop-trigger{
    font-family:'Space Grotesk',sans-serif;
    font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.07em;
    text-decoration:none; color:#CFC5B6;
    /* uniform box so the Resources button lines up with the plain links.
       padding-top matches the 3px padding + 2px underline below, so the
       visible text sits dead-centre in the header row instead of 2.5px high */
    display:inline-flex; align-items:center; line-height:1.15;
    padding:5px 0 3px; border-bottom:2px solid transparent;
    transition:color .15s, border-color .15s;
  }

.nav-links a:hover, .nav-links .drop-trigger:hover{color:var(--paper);}

/* active page marker */
.nav-links a[aria-current="page"]{color:var(--paper); border-bottom-color:var(--ember);}

.mobile-nav a[aria-current="page"]{color:var(--ember); font-weight:700;}

.nav-cta{display:flex; align-items:center; gap:18px;}

.has-dropdown::before{
    content:""; position:absolute; top:100%; left:50%; transform:translateX(-50%);
    width:100%; min-width:200px; height:22px; z-index:149;
  }

.nav-cta .has-dropdown::before{left:auto; right:0; transform:none;}

.drop-trigger{
    display:inline-flex; align-items:center; gap:6px; background:none; border:none; padding:0;
    font-family:'Space Grotesk',sans-serif; font-size:15.5px; font-weight:600; color:#CFC5B6; cursor:pointer;
    transition:color .15s;
  }

.drop-trigger:hover{color:var(--paper);}

/* the Sign In trigger sits with the CTA, so it matches the nav treatment but
   drops the underline slot the nav items reserve */
.nav-cta .drop-trigger{
    font-family:'Space Grotesk',sans-serif;
    font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.07em;
    color:#CFC5B6;
    /* same box as the main nav items so Sign In shares their text centre */
    line-height:1.15; padding:5px 0 3px; border-bottom:2px solid transparent;
  }

.chev{flex-shrink:0; transition:transform .18s ease;}

.has-dropdown.open .chev, .has-dropdown:hover .chev{transform:rotate(180deg);}

.dropdown-menu{
    position:absolute; top:calc(100% + 20px); left:50%; transform:translateX(-50%) translateY(-6px);
    background:var(--ink2); border:1px solid rgba(244,236,220,0.14); border-radius:8px;
    min-width:200px; padding:6px; list-style:none; margin:0;
    opacity:0; visibility:hidden; pointer-events:none;
    transition:opacity .16s ease, transform .16s ease, visibility .16s;
    box-shadow:0 24px 48px -20px rgba(0,0,0,0.65);
    z-index:150;
  }

.nav-cta .dropdown-menu{left:auto; right:0; transform:translateY(-6px);}

.has-dropdown.open .dropdown-menu,
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu{
    opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0);
  }

.nav-cta .has-dropdown.open .dropdown-menu,
  .nav-cta .has-dropdown:hover .dropdown-menu,
  .nav-cta .has-dropdown:focus-within .dropdown-menu{ transform:translateY(0); }

.dropdown-menu li{margin:0;}

.dropdown-menu a{display:block; padding:10px 12px; font-size:13.5px; color:var(--fog); border-radius:4px; text-decoration:none; white-space:nowrap; transition:background .12s, color .12s;}

.dropdown-menu a:hover{background:rgba(244,236,220,0.07); color:var(--paper);}

.btn{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--ember); color:var(--ink); font-weight:700; font-size:13px;
    text-transform:uppercase; letter-spacing:0.07em;
    padding:13px 24px; border-radius:3px; text-decoration:none;
    border:none; cursor:pointer; font-family:'Space Grotesk',sans-serif;
    transition:transform .15s ease, background .15s ease;
  }

.btn:hover{background:#FF6E3D; transform:translateY(-1px);}

.btn.ghost{background:transparent; border:1.5px solid rgba(244,236,220,0.35); color:var(--paper);}

.btn.ghost:hover{border-color:var(--paper); background:rgba(244,236,220,0.06);}

.menu-toggle{display:none; background:none; border:none; color:var(--paper); font-size:22px; cursor:pointer; line-height:1; padding:4px;}

.eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.14em;
    color:var(--scan); text-transform:uppercase; margin-bottom:20px;
  }

.eyebrow::before{content:"●"; font-size:8px;}

.ticket{
    background:var(--paper);
    color:var(--text-ink);
    border-radius:6px;
    display:grid;
    grid-template-columns: 1fr 300px;
    position:relative;
    box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
  }

.ticket-main{padding:38px 48px 30px;}

.ticket-stub{
    /* extra right padding keeps the vertical "admit one" clear of the stat text */
    padding:18px 54px 34px 30px;
    border-left:2px dashed var(--paper-line);
    display:flex; flex-direction:column;
    position:relative;
    /* a shade deeper than the ticket body so the stub reads as a torn-off panel;
       only the top-right corner is exposed — ticket-foot spans the width below */
    background:#EDE2CC;
    border-radius:0 6px 0 0;
  }

.ticket-stub::before{
    content:""; position:absolute; left:-14px; top:-14px; width:28px; height:28px;
    background:var(--ink); border-radius:50%;
  }

.ticket-stub::after{
    content:""; position:absolute; left:-14px; bottom:-14px; width:28px; height:28px;
    background:var(--ink); border-radius:50%;
  }

.hero h1{font-size:clamp(40px,6vw,72px); color:var(--ink); max-width:640px;}

.hero h1 em{font-style:normal; color:var(--blood);}

.hero p.sub{font-size:18px; color:#4A423C; max-width:520px; margin-top:22px; line-height:1.5;}

.hero-ctas{display:flex; gap:14px; margin-top:32px; flex-wrap:wrap;}

.hero-ctas .btn.dark{background:var(--ink); color:var(--paper);}

.hero-ctas .btn.dark:hover{background:var(--ink3);}

.hero-ctas .btn.outline{background:transparent; border:1.5px solid var(--ink); color:var(--ink);}

.stub-label{
    font-family:'IBM Plex Mono',monospace; font-size:10.5px; letter-spacing:0.14em; font-weight:600;
    text-transform:uppercase; color:var(--blood); display:block; flex-shrink:0;
    position:relative; padding-bottom:15px;
  }

.stub-label::after{
    content:""; position:absolute; left:0; bottom:0; width:28px; height:2px; background:var(--ember);
  }

.stub-admit{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family:'Big Shoulders Display',sans-serif; font-weight:800; font-size:15px;
    letter-spacing:0.3em; color:var(--blood); text-transform:uppercase;
    position:absolute; right:14px; top:50%; transform:translateY(-50%) rotate(180deg);
  }

/* stats stretch to fill the stub so no dead space collects at the bottom,
   and each of the four claims is fenced off by a perforation-style rule */
.stub-stats{
    flex:1; display:flex; flex-direction:column; justify-content:space-between;
    gap:0; margin-top:20px;
  }

.stub-stat{padding:14px 0; border-top:1px dashed #D3C4A0;}

.stub-stat:first-child{border-top:none; padding-top:0;}

.stub-stat:last-child{padding-bottom:0;}

/* the display face at 900 makes these read as headline numbers, not table data */
.stub-stat .num{
    font-family:'Big Shoulders Display',sans-serif; font-weight:900; font-size:38px;
    color:var(--blood); display:block; line-height:0.92; letter-spacing:0.01em; margin-bottom:5px;
  }

.stub-stat .lbl{font-size:11.5px; color:#5b5349; line-height:1.4; display:block;}

.ticket-foot{
    grid-column:1/-1;
    border-top:2px dashed var(--paper-line);
    padding:14px 48px;
    text-align:center;
  }

.ticket-foot p{
    margin:0; font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--fog-dim); line-height:1.6;
  }

.hero-spacer{margin:0 0 70px;}

.section-head{margin:0 auto 52px;}

.section-head.center{text-align:center; margin-left:auto; margin-right:auto;}

.kicker{font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.14em; text-transform:uppercase; color:var(--ember); margin-bottom:14px; display:block;}

.section-head h2{font-size:clamp(30px,4vw,46px); color:var(--paper);}

.section-head p{color:var(--fog); font-size:17px; line-height:1.6; margin-top:16px;}

.industry-card:nth-of-type(1){grid-area:feat;}

.industry-card:nth-of-type(2){grid-area:a;}

.industry-card:nth-of-type(3){grid-area:b;}

.industry-card:nth-of-type(4){grid-area:c;}

.industry-card:nth-of-type(5){grid-area:d;}

.industry-card{
    position:relative; display:block; border-radius:8px; overflow:hidden;
    text-decoration:none; isolation:isolate;
  }

.industry-card img{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
    filter:grayscale(1) contrast(1.05) brightness(0.75);
    transform:scale(1.04);
    transition:filter .6s ease, transform .6s ease;
  }

.industry-card:hover img, .industry-card:focus-visible img{
    filter:grayscale(0.1) contrast(1.08) brightness(0.85);
    transform:scale(1.08);
  }

.industry-card::before{
    content:""; position:absolute; inset:0; z-index:1;
    background:linear-gradient(180deg, rgba(16,13,16,0.05) 32%, rgba(16,13,16,0.94) 100%);
  }

.industry-card::after{
    content:""; position:absolute; inset:0; z-index:1; border-radius:8px;
    box-shadow:inset 0 0 0 1px rgba(244,236,220,0.14);
    pointer-events:none;
  }

.industry-tag{
    position:absolute; top:14px; left:14px; z-index:2;
    font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:0.08em; text-transform:uppercase;
    color:var(--scan); background:rgba(16,13,16,0.55); border:1px solid rgba(79,217,138,0.3);
    padding:5px 9px; border-radius:20px;
  }

.industry-info{position:absolute; left:0; right:0; bottom:0; z-index:2; padding:18px 20px;}

.industry-info h3{font-family:'Space Grotesk',sans-serif; font-weight:700; text-transform:none; font-size:18px; color:var(--paper); margin:0 0 6px;}

.industry-info p{font-size:13px; color:var(--fog); line-height:1.5; margin:0; max-width:36ch;}

.industry-card.featured .industry-info h3{font-size:24px;}

.industry-card.featured .industry-info p{font-size:14.5px; max-width:30ch;}

/* ---------- FEATURE MARQUEE ---------- */
.marquee-track{
    overflow:hidden; border-top:1px solid rgba(244,236,220,0.15); border-bottom:1px solid rgba(244,236,220,0.15);
    padding:14px 0; margin-bottom:56px;
  }

.marquee-inner{display:flex; gap:48px; white-space:nowrap; animation: scroll 65s linear infinite; width:max-content;}

@keyframes scroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

.marquee-inner span{font-family:'Big Shoulders Display',sans-serif; font-weight:700; font-size:20px; text-transform:uppercase; color:var(--fog); letter-spacing:0.03em;}

.marquee-inner span.hi{color:var(--ember);}

.feature-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}

.fcard{
    background:var(--ink); border:1px solid rgba(244,236,220,0.12); border-radius:4px; padding:28px 24px;
    transition:border-color .2s;
  }

.fcard:hover{border-color:rgba(232,93,47,0.5);}

.fcard .tag{font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--scan); letter-spacing:0.1em; text-transform:uppercase;}

.fcard h3{font-size:22px; color:var(--paper); margin:14px 0 10px; text-transform:none; font-family:'Space Grotesk',sans-serif; font-weight:700; letter-spacing:0;}

.fcard p{font-size:14.5px; color:var(--fog); line-height:1.55; margin:0;}

.receipt{
    background:var(--paper); color:var(--text-ink); border-radius:4px;
    padding:36px 34px 30px;
    background-image: repeating-linear-gradient(to bottom, transparent, transparent 34px, rgba(0,0,0,0.035) 34px, rgba(0,0,0,0.035) 35px);
    box-shadow: 0 30px 60px -25px rgba(0,0,0,0.55);
    position:relative;
  }

.receipt::after{
    content:"";
    position:absolute; left:0; right:0; bottom:-11px; height:22px;
    background:
      radial-gradient(circle at 10px 0, transparent 10px, var(--paper) 10.5px) repeat-x;
    background-size:20px 20px;
  }

.receipt-head{font-family:'IBM Plex Mono',monospace; text-align:center; border-bottom:1px dashed var(--paper-line); padding-bottom:16px; margin-bottom:16px;}

.receipt-head .t{font-weight:600; letter-spacing:0.1em; font-size:13px;}

.receipt-row{display:flex; justify-content:space-between; align-items:baseline; font-family:'IBM Plex Mono',monospace; font-size:14px; padding:9px 0; border-bottom:1px dotted rgba(0,0,0,0.15);}

.receipt-row .name{font-weight:500;}

.receipt-row .amt{font-weight:600;}

.receipt-row.fear{background:rgba(140,29,24,0.08); margin:0 -10px; padding:9px 10px; border-radius:2px; border-bottom:1px dotted rgba(0,0,0,0.15);}

.receipt-row.fear .name{color:var(--blood); font-weight:700;}

.receipt-total{display:flex; justify-content:space-between; font-family:'IBM Plex Mono',monospace; margin-top:14px; padding-top:14px; border-top:2px solid var(--text-ink); font-size:15px; font-weight:700;}

.receipt-foot{font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--fog-dim); text-align:center; margin-top:18px; line-height:1.5;}

.savings-copy h3{font-size:28px; color:var(--paper); text-transform:none; font-family:'Space Grotesk',sans-serif; font-weight:700; margin-bottom:14px;}

.savings-copy p{color:var(--fog); font-size:16px; line-height:1.6;}

.save-stat{display:flex; align-items:baseline; gap:14px; margin:26px 0; padding:20px 22px; background:var(--ink2); border-left:3px solid var(--scan); border-radius:2px;}

.save-stat .n{font-family:'IBM Plex Mono',monospace; font-size:32px; font-weight:600; color:var(--scan);}

.save-stat .l{font-size:13px; color:var(--fog); max-width:220px;}

.toggle-row{display:flex; gap:10px; margin-bottom:20px;}

.toggle-btn{
    font-family:'IBM Plex Mono',monospace; font-size:12px; padding:8px 14px; border-radius:20px;
    border:1px solid rgba(244,236,220,0.25); background:transparent; color:var(--fog); cursor:pointer;
  }

.toggle-btn.active{background:var(--ember); color:var(--ink); border-color:var(--ember); font-weight:600;}

.check-list{list-style:none; margin:28px 0 0; padding:0; display:flex; flex-direction:column; gap:16px;}

.check-list li{display:flex; gap:12px; font-size:15.5px; color:var(--fog); line-height:1.5;}

.check-list li::before{content:"✓"; color:var(--scan); font-weight:700; flex-shrink:0;}

.rv-header{
    display:flex; align-items:center; justify-content:space-between; gap:14px; padding:18px 20px;
    background:rgba(0,0,0,0.18); border-bottom:1px solid rgba(244,236,220,0.1);
  }

.rv-label{font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.1em; color:var(--fog-dim); text-transform:uppercase;}

.rv-count{
    font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--scan);
    background:rgba(79,217,138,0.12); border:1px solid rgba(79,217,138,0.3);
    padding:3px 10px; border-radius:20px; flex-shrink:0;
  }

.rt-list{padding:16px; display:flex; flex-direction:column; gap:10px;}

.rt-item{
    display:flex; align-items:center; gap:14px; padding:13px 16px;
    background:var(--ink); border:1px solid rgba(244,236,220,0.08); border-radius:7px;
    transition:border-color .15s;
  }

.rt-item:hover{border-color:rgba(232,93,47,0.4);}

.rt-icon{
    width:30px; height:30px; border-radius:6px; flex-shrink:0;
    background:rgba(232,93,47,0.12); color:var(--ember);
    display:flex; align-items:center; justify-content:center;
  }

.rt-icon i{font-size:14px;}

.rt-label{font-family:'Space Grotesk',sans-serif; font-size:14.5px; font-weight:600; color:var(--paper); flex:1;}

.rt-item.more{
    border-style:dashed; border-color:rgba(232,93,47,0.35); background:transparent; justify-content:center;
  }

.rt-item.more .rt-label{color:var(--ember); text-align:center; flex:none;}

.gcard{background:var(--ink2); border-radius:4px; padding:30px 26px; border-top:3px solid var(--ember);}

.gcard h3{font-size:20px; font-family:'Space Grotesk',sans-serif; font-weight:700; text-transform:none; color:var(--paper); margin-bottom:12px;}

.gcard p{font-size:14.5px; color:var(--fog); line-height:1.6; margin:0;}

.support-band{background:var(--paper); color:var(--text-ink);}

.support-top{display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:24px; margin-bottom:48px;}

.support-top h2{color:var(--ink); font-size:clamp(28px,4vw,42px);}

.support-badge{font-family:'IBM Plex Mono',monospace; font-size:13px; background:var(--ink); color:var(--scan); padding:10px 16px; border-radius:3px; white-space:nowrap;}

.testimonial-slider{position:relative;}

.ts-track{
    display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory;
    padding:4px 4px 12px; margin:0 -4px; scrollbar-width:none; -ms-overflow-style:none;
  }

.ts-track::-webkit-scrollbar{display:none;}

.ts-slide{flex:0 0 calc((100% - 44px)/3); scroll-snap-align:start; min-width:0;}

.test-stub{
    background:#fff; border-radius:4px; padding:26px 24px; position:relative;
    border:1px solid var(--paper-line); height:100%; display:flex; flex-direction:column; justify-content:space-between;
  }

.test-stub::before{
    content:""; position:absolute; top:50%; left:-9px; width:18px; height:18px; background:var(--paper); border-radius:50%; transform:translateY(-50%);
  }

.test-stub::after{
    content:""; position:absolute; top:50%; right:-9px; width:18px; height:18px; background:var(--paper); border-radius:50%; transform:translateY(-50%);
  }

.test-stub p.quote{font-size:14.5px; line-height:1.6; color:#3A322D; margin:0 0 16px;}

.test-stub .who{font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--fog-dim); border-top:1px dashed var(--paper-line); padding-top:12px;}

.test-stub .who b{color:var(--blood); font-family:'Space Grotesk',sans-serif; font-weight:700; display:block; font-size:13.5px; margin-bottom:2px;}

.ts-nav{
    position:absolute; top:38%; transform:translateY(-50%); z-index:5;
    width:42px; height:42px; border-radius:50%; border:1px solid var(--paper-line);
    background:#fff; color:var(--text-ink); font-size:18px; line-height:1; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 14px 30px -10px rgba(0,0,0,0.35); transition:background .15s, color .15s;
  }

.ts-nav:hover{background:var(--ink); color:var(--paper);}

.ts-nav.prev{left:-14px;}

.ts-nav.next{right:-14px;}

.ts-dots{display:flex; justify-content:center; flex-wrap:wrap; gap:8px; margin-top:28px;}

.ts-dot{width:8px; height:8px; border-radius:50%; background:var(--paper-line); border:none; cursor:pointer; padding:0; transition:width .2s ease, background .2s ease;}

.ts-dot.active{background:var(--blood); width:22px; border-radius:5px;}

.cl-kicker{display:block; text-align:center; font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--fog-dim); margin-bottom:28px;}

/* closing CTA sits flat on the base dark ink, matching the reference design */
.final-cta{
    text-align:center; padding:var(--sp-cta) 0;
    position:relative;
    border-top:1px solid rgba(244,236,220,0.1);
    background:var(--ink);
  }

.final-cta h2{font-size:clamp(36px,6vw,64px); margin-bottom:20px;}

.final-cta h2 em{font-style:normal; color:var(--ember);}

.final-cta p{color:var(--fog); font-size:17px; max-width:480px; margin:0 auto 34px;}

.final-ctas{display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}

.foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px;}

.foot-col h4{font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:var(--fog-dim); margin-bottom:16px;}

.foot-col ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px;}

.foot-col a{font-size:14px; color:var(--fog); text-decoration:none;}

.foot-col a:hover{color:var(--paper);}

.foot-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:24px; border-top:1px solid rgba(244,236,220,0.1); font-size:12.5px; color:var(--fog-dim); flex-wrap:wrap; gap:12px;}

@media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    .marquee-inner{animation:none;}
  }

/* legal links live in the footer bottom bar, not mixed into the nav columns */
/* ---------- FOOTER ----------
   Four columns: brand, product, attraction types (the industry landing pages,
   which gives them a site-wide internal link), and contact. The old "Recent
   Posts" column was dropped - it fetched client-side, so crawlers only ever
   saw "Loading latest posts..." and it cost a network request on every page. */
.footer-grid{
    display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:48px 40px; margin-bottom:52px;
  }

.footer-brand-col{max-width:340px;}

.footer-logo{height:28px; width:auto; display:block; margin-bottom:18px;}

.footer-blurb{font-size:14px; color:var(--fog); line-height:1.7; margin:0 0 22px;}

/* contact details are identity, not navigation - they live with the brand
   rather than mixed into a link column, where the bold treatment clashed */
.footer-contact{display:flex; flex-direction:column; gap:6px; margin-bottom:24px;}

.footer-phone, .footer-email{
    font-size:15px; color:var(--paper); font-weight:600; text-decoration:none;
    transition:color .15s; width:fit-content;
  }

.footer-phone:hover, .footer-email:hover{color:var(--ember);}

.footer-social{display:flex; gap:10px; flex-wrap:wrap;}

.footer-social-icon{
    width:36px; height:36px; border-radius:50%; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    background:rgba(244,236,220,0.06); border:1px solid rgba(244,236,220,0.14);
    color:var(--fog); font-size:14px; text-decoration:none;
    transition:color .15s, border-color .15s, background .15s;
  }

.footer-social-icon:hover{color:var(--ember); border-color:rgba(232,93,47,0.5); background:rgba(232,93,47,0.1);}

.footer-column{display:flex; flex-direction:column;}

.footer-title{
    font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.12em; text-transform:uppercase;
    color:var(--fog-dim); margin:0 0 18px; font-weight:600;
  }

.footer-link{
    font-size:14.5px; color:var(--fog); text-decoration:none; padding:7px 0;
    transition:color .15s; display:block;
  }

.footer-link:hover{color:var(--ember);}

.footer-bottom{
    display:flex; justify-content:space-between; align-items:center; padding-top:28px;
    border-top:1px solid rgba(244,236,220,0.1); flex-wrap:wrap; gap:16px;
  }

.footer-copyright{font-size:13px; color:var(--fog-dim);}

.footer-legal{display:flex; align-items:center; gap:24px; flex-wrap:wrap;}

.footer-legal a{font-size:13px; color:var(--fog-dim); text-decoration:none; transition:color .15s;}

.footer-legal a:hover{color:var(--ember);}

@media (max-width:980px){
    .footer-grid{grid-template-columns:1fr 1fr; gap:44px 32px;}
    .footer-brand-col{grid-column:1 / -1; max-width:520px;}
    .footer-bottom{justify-content:flex-start;}
  }

@media (max-width:600px){
    .footer-grid{grid-template-columns:1fr; gap:34px;}
    .footer-brand-col{grid-column:auto;}
  }

/* ==========================================================
   SHARED SUBPAGE PATTERNS
   (used by box-office / pricing / platform / testimonials /
   whats-new / contact — centralized here instead of being
   re-declared in every page-specific stylesheet)
   ========================================================== */

/* ---- simple centered page hero ---- */
.p-hero{padding:var(--sp-hero-top) 0 var(--sp-hero-bottom); text-align:center;}
.p-hero h1{font-size:clamp(32px,4.5vw,54px); color:var(--paper); max-width:820px; margin:0 auto;}
.p-hero h1 em{font-style:normal; color:var(--ember);}
.p-hero .sub{font-size:16.5px; color:var(--fog); max-width:600px; margin:16px auto 0; line-height:1.6;}
.p-hero .eyebrow{justify-content:center;}
.p-hero-ctas{display:flex; gap:14px; justify-content:center; margin-top:26px; flex-wrap:wrap;}

/* ---------- DENSE FEATURE GRID (shared: platform, pricing, box-office) ----------
   Single definition so card typography stays identical across the site. */
.mini-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px;}

.mini-card{
    background:var(--ink); border:1px solid rgba(244,236,220,0.1); border-radius:6px; padding:22px 20px;
    transition:border-color .15s, background .15s;
  }

.mini-card:hover{border-color:rgba(232,93,47,0.4); background:#151016;}

.mini-card .mi-icon{
    width:32px; height:32px; border-radius:7px; background:rgba(232,93,47,0.12); color:var(--ember);
    display:flex; align-items:center; justify-content:center; margin-bottom:14px;
  }

.mini-card .mi-icon i{font-size:15px;}

.mini-card h3{font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:18px; color:var(--paper); margin:0 0 7px; text-transform:none; line-height:1.25;}

.mini-card p{font-size:13px; color:var(--fog); line-height:1.6; margin:0;}

/* ---- alternating section background ---- */
section.alt-bg{background:var(--ink2);}

/* ---------- TRUST LOGO SLIDER ----------
   Same treatment as the home-page client slider, shared by every page that
   carries a "Trusted by top haunt brands" band. */
.dtrust-slider{
    margin-top:28px;
    overflow:hidden;
    -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

.dtrust-track{display:flex; align-items:center; gap:26px; width:max-content; animation:dtrustScroll 36s linear infinite;}

.dtrust-slider:hover .dtrust-track{animation-play-state:paused;}

@keyframes dtrustScroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

.dtrust-logo{
    display:flex; align-items:center; justify-content:center;
    padding:16px 22px; background:transparent; border:1px solid rgba(244,236,220,0.16); border-radius:8px;
    flex-shrink:0; transition:border-color .2s, box-shadow .2s;
  }

.dtrust-logo:hover{border-color:rgba(232,93,47,0.45); box-shadow:none;}

.dtrust-logo img{height:46px; width:auto; max-width:170px; object-fit:contain;}

@media (prefers-reduced-motion: reduce){
  .dtrust-track{animation:none;}
}

@media (max-width:600px){
  .dtrust-track{gap:16px;}
  .dtrust-logo{padding:13px 18px;}
  .dtrust-logo img{height:38px; max-width:140px;}
}

/* ---------- NEWSLETTER BAR ----------
   Reads as a perforated tear-off strip between the closing CTA and the
   footer, so it belongs to the ticket language the rest of the page uses. */
.newsletter-bar{position:relative; background:#1A1518;}

/* the tear line itself */
.newsletter-bar::before{
  content:""; position:absolute; top:0; left:0; right:0; height:0;
  border-top:2px dashed rgba(244,236,220,0.22);
}

/* a notch punched out of each end, filled with the ink of the section above */
.newsletter-bar::after{
  content:""; position:absolute; top:0; left:0; right:0; height:22px; pointer-events:none;
  background:
    radial-gradient(circle 11px at 0 0, var(--ink) 97%, transparent 100%),
    radial-gradient(circle 11px at 100% 0, var(--ink) 97%, transparent 100%);
  background-repeat:no-repeat;
}

.newsletter-inner{
  display:flex; align-items:center; justify-content:space-between; gap:40px;
  padding-top:34px; padding-bottom:34px; flex-wrap:wrap;
  position:relative; z-index:1;
}

.newsletter-text .kicker{margin-bottom:10px;}

/* inherits Big Shoulders uppercase from the base heading rule */
.newsletter-text h3{font-size:clamp(24px,3vw,32px); color:var(--paper); margin-bottom:10px;}

.newsletter-text p{font-size:14px; color:var(--fog); margin:0; max-width:430px; line-height:1.55;}

.newsletter-fineprint{
  display:block; font-family:'IBM Plex Mono',monospace; font-size:10.5px;
  letter-spacing:0.09em; text-transform:uppercase; color:var(--fog-dim); margin-top:14px;
}

.newsletter-form{display:flex; gap:12px; flex-wrap:wrap;}

.newsletter-input-wrap{position:relative;}

.newsletter-input-wrap input{
  width:300px; max-width:100%; background:#2A2429; border:1px solid rgba(244,236,220,0.14); border-radius:3px;
  padding:14px 16px; font-family:'Space Grotesk',sans-serif; font-size:14px; color:var(--paper);
  transition:border-color .15s;
}

.newsletter-input-wrap input::placeholder{color:var(--fog-dim);}

.newsletter-input-wrap input:focus{border-color:var(--ember);}

/* matches the site's primary .btn treatment rather than the old blood red */
.newsletter-form button{
  background:var(--ember); color:var(--ink); border:none; border-radius:3px; padding:0 30px;
  font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:13px; cursor:pointer; white-space:nowrap;
  text-transform:uppercase; letter-spacing:0.07em;
  transition:background .15s, opacity .15s;
}

.newsletter-form button:hover{background:#FF6E3D;}

.newsletter-form button:disabled{opacity:0.6; cursor:default;}

.newsletter-result{
  flex-basis:100%; font-family:'Space Grotesk',sans-serif;
  font-size:13px; font-weight:600;
}

.newsletter-result:empty{display:none;}

.newsletter-result.success{color:var(--scan);}

.newsletter-result.error{color:#e8735f;}

@media (max-width:860px){
  .newsletter-inner{flex-direction:column; align-items:flex-start;}
  .newsletter-form{width:100%;}
  .newsletter-input-wrap{flex:1;}
  .newsletter-input-wrap input{width:100%;}
}

/* ---------- SHARED PAGE CHROME ----------
   These were declared separately in every page stylesheet except contact.css,
   which left the contact page with no sticky header, no footer styling and a
   collapsed .perf divider whose dashes escaped across the page. */
.perf{
    height:28px;
    background-image: radial-gradient(circle at center, var(--ink) 6px, transparent 6.5px);
    background-size: 26px 26px;
    background-position: center;
    background-repeat: repeat-x;
    position:relative;
  }

header{
    position:sticky; top:0; z-index:100;
    background:rgba(16,13,16,0.92);
    backdrop-filter: blur(8px);
    border-bottom:1px solid rgba(244,236,220,0.1);
  }

.has-dropdown{position:relative;}

main > section{padding:var(--sp-section) 0;}

footer{background:var(--ink2); padding:56px 0 28px; border-top:1px solid rgba(244,236,220,0.1);}

/* ---------- MOBILE DRAWER ----------
   Lives here rather than in each page stylesheet: contact.css had no nav rules
   at all, so the drawer rendered as a plain list in the middle of the page. */
.mobile-nav{display:none;}

@media (max-width:980px){
    .nav-links{display:none;}
    .nav-cta{display:none;}
    .menu-toggle{display:block;}
    .mobile-nav{
      display:block;
      position:fixed; top:64px; right:-100%; width:100%; bottom:0;
      background:var(--ink);
      padding:8px 28px 40px;
      overflow-y:auto;
      transition:right .28s ease;
      z-index:99;
      border-top:1px solid rgba(244,236,220,0.1);
    }
    .mobile-nav.open{right:0;}
    .mobile-nav ul{list-style:none; margin:0; padding:20px 0; display:flex; flex-direction:column; gap:4px;}
    .mobile-nav > ul > li > a{display:block; padding:14px 0; font-size:17px; color:var(--paper); text-decoration:none; border-bottom:1px solid rgba(244,236,220,0.08);}
    .mnav-group{padding:14px 0; border-bottom:1px solid rgba(244,236,220,0.08);}
    .mnav-label{display:block; font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--fog-dim); margin-bottom:10px;}
    .mnav-group a{display:block; padding:9px 0 9px 4px; font-size:15px; color:var(--fog); text-decoration:none; border-left:2px solid rgba(244,236,220,0.15); padding-left:14px; margin-bottom:2px;}
    .mnav-group a:last-child{margin-bottom:0;}
    .mobile-nav .btn{width:100%; justify-content:center; margin-top:18px;}
  }

/* ---------- FAQ ACCORDION (contact + industry pages) ---------- */
/* ---- FAQ accordion ---- */
.faq-list{max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:12px;}
.faq-item{background:var(--ink2); border:1px solid rgba(244,236,220,0.12); border-radius:10px; overflow:hidden;}
.faq-item summary{
  list-style:none; cursor:pointer; padding:18px 22px; display:flex; align-items:center; justify-content:space-between;
  font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:15px; color:var(--paper); gap:16px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary .faq-icon{
  flex-shrink:0; width:22px; height:22px; border-radius:50%; border:1px solid rgba(244,236,220,0.3);
  display:flex; align-items:center; justify-content:center; color:var(--fog); transition:transform .2s;
}
.faq-item[open] summary .faq-icon{transform:rotate(45deg); border-color:var(--ember); color:var(--ember);}
.faq-item .faq-body{padding:0 22px 20px; font-size:14px; color:var(--fog); line-height:1.6;}

/* ---------- FOCUS VISIBILITY ----------
   Several component rules set outline:none on inputs and the range slider,
   which beat the global :focus-visible on specificity. These restore a visible
   keyboard focus ring. Kept at the end of the file so nothing overrides them. */
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible{
    outline:3px solid var(--scan);
    outline-offset:2px;
  }

.receipt-range:focus-visible{outline:3px solid var(--scan); outline-offset:4px;}

/* ---------- SECTION RHYTHM ----------
   A hero already separates itself from what follows, so the first section
   after one gets a reduced top pad. Without this the hero's bottom padding
   and the section's top padding compound into ~130px of dead space, which was
   most obvious on the contact page above the ticket-buyer strip. */
.p-hero + section,
.p-hero + .perf + section,
.ind-hero + section,
.ind-hero + .perf + section{padding-top:var(--sp-after-hero);}

/* the perforation divider carries its own visual weight; don't double up */
.perf + section{padding-top:var(--sp-after-hero);}

/* ==========================================================
   SHARED SUBPAGE RULES (promoted from per-page stylesheets)
   Only selectors byte-identical in every file that defined them, and
   whose class names never disagree anywhere. Families whose meaning
   drifted between pages (.cl-logo, .dtrust-logo, .hero, .client-logos,
   .gateway-row, .phone-event ...) stay page-local on purpose - promoting
   them changes the cascade and visibly breaks a page.
   ========================================================== */
.bo-check{list-style:none; margin:22px 0 0; padding:0; display:flex; flex-direction:column; gap:14px;}
.bo-check li{display:flex; gap:12px; font-size:15px; color:var(--fog); line-height:1.5;}
.bo-check li::before{content:"✓"; color:var(--scan); font-weight:700; flex-shrink:0;}
.bo-grid{display:grid; grid-template-columns:1fr 0.85fr; gap:60px; align-items:center;}
.bo-more-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:56px;}
.bo-more-item{display:flex; align-items:center; gap:10px; background:var(--ink2); border:1px solid rgba(244,236,220,0.1);
    border-radius:6px; padding:14px 15px; font-size:13px; color:var(--fog); line-height:1.4;}
.bo-more-item svg{flex-shrink:0; color:var(--scan); width:16px; height:16px;}
.cl-row{display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:16px 22px;}
.es-card{background:#fff; border-radius:12px; padding:22px; border:1px solid var(--paper-line);
    box-shadow:0 24px 48px -30px rgba(30,20,10,0.25);}
.es-card h3{font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:18px; text-transform:none; color:var(--text-ink); margin-bottom:8px; letter-spacing:0;}
.es-card p{font-size:14px; color:#5b5349; line-height:1.6; margin:0;}
.es-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.es-more-card{background:#fff; border:1px solid var(--paper-line); border-radius:10px; padding:22px 24px;
    display:flex; gap:16px; align-items:flex-start;}
.es-more-card .em-icon{width:38px; height:38px; border-radius:8px; background:#F3E4CE; color:var(--ember-dim); flex-shrink:0;
    display:flex; align-items:center; justify-content:center;}
.es-more-card .em-icon i{font-size:17px;}
.es-more-card h4{font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:15.5px; color:var(--ink); margin:0 0 6px;}
.es-more-card p{font-size:13.5px; color:#5b5349; line-height:1.55; margin:0;}
.es-more-row{display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:20px;}
.es-prebuilt{position:absolute; inset:18px; display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr; gap:10px;}
.es-prebuilt .blk{border-radius:6px; background:#DCD0AE;}
.es-prebuilt .blk.b2{background:#CFDDC4;}
.es-prebuilt .blk.b4{background:#CBD3CB;}
.es-prebuilt .blk.sel{background:#EBC7A6; border:2px solid var(--ember); position:relative;}
.es-prebuilt .blk.sel::after{content:"✓"; position:absolute; top:6px; right:8px; color:var(--ember-dim); font-weight:700; font-size:13px;}
.es-scratch-box{position:absolute; inset:16px; border:2px dashed #C9B98A; border-radius:6px;
    display:flex; align-items:center; justify-content:center;}
.es-scratch-box span{font-size:30px; color:var(--ember-dim); font-weight:300;}
.es-section{background:var(--paper); color:var(--text-ink);}
.es-section .kicker{color:var(--ember-dim);}
.es-section .section-head h2{color:var(--ink);}
.es-section .section-head p{color:#5b5349;}
.es-tmpl{position:absolute; inset:20px 22px;}
.es-tmpl .dots{display:flex; gap:8px; margin:18px 0 14px;}
.es-tmpl .dots span{width:13px; height:13px; border-radius:50%;}
.es-tmpl .dots span:nth-child(1){background:var(--ember);}
.es-tmpl .dots span:nth-child(2){background:var(--scan);}
.es-tmpl .dots span:nth-child(3){background:#9B8FD9;}
.es-tmpl .dots span:nth-child(4){background:#6FAEE0;}
.es-tmpl .line{height:8px; border-radius:4px; background:#D9C79E; margin-bottom:10px;}
.es-tmpl .line.l1{width:80%;}
.es-tmpl .line.l2{width:55%;}
.es-tmpl .slider{height:4px; background:#D9C79E; border-radius:4px; position:relative;}
.es-tmpl .slider::before{content:""; position:absolute; left:38%; top:50%; width:12px; height:12px; background:var(--ember); border-radius:50%; transform:translateY(-50%);}
.es-visual{background:#EEE4CE; border-radius:9px; height:190px; margin-bottom:20px;
    position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center;}
.flex-section{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
.gateway-chip{font-family:'Space Grotesk',sans-serif; font-size:13.5px; font-weight:600; color:var(--paper);
    background:var(--ink2); border:1px solid rgba(244,236,220,0.16); padding:8px 16px; border-radius:20px;}
.gateway-label{font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--fog-dim); margin-right:6px;}
.growth-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.industry-grid{display:grid;
    grid-template-columns:1.15fr 1fr 1fr;
    grid-template-rows:220px 220px;
    grid-template-areas:
      "feat a b"
      "feat c d";
    gap:18px;}
.mini-grid.centered-grid{grid-template-columns:repeat(3,1fr); max-width:920px; margin:0 auto;}
.phone{width:280px; margin:0 auto; background:#000; border-radius:38px; padding:14px;
    box-shadow:0 60px 110px -30px rgba(0,0,0,0.75); position:relative;}
.phone-orders{display:flex; flex-direction:column; gap:9px;}
.phone-stats{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:16px;}
.phone::before{content:""; position:absolute; top:26px; left:50%; transform:translateX(-50%);
    width:70px; height:5px; background:#333; border-radius:3px; z-index:2;}
.phs-num{font-family:'Big Shoulders Display',sans-serif; font-weight:900; font-size:clamp(46px,6vw,80px);
    color:var(--paper); line-height:0.9;}
.phs-unit{font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:17px; color:var(--fog); padding-bottom:0.2em;}
.pos-body{display:grid; grid-template-columns:1.3fr 1fr;}
.pos-header{background:linear-gradient(135deg, var(--blood), #7a1810); color:#fff; padding:14px 20px;
    font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:15px;}
.pos-item{display:flex; justify-content:space-between; align-items:flex-start; gap:10px; padding:10px 0; border-bottom:1px dashed var(--paper-line);}
.pos-item .pi-date{display:block; font-size:11px; color:#8a7f70; margin-top:2px;}
.pos-item .pi-name{display:block; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:13px; color:var(--ink);}
.pos-item .pi-qty{font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--ink); flex-shrink:0; white-space:nowrap;}
.pos-items{padding:18px 20px; border-right:1px solid var(--paper-line);}
.pos-mockup{background:#fff; border-radius:14px; overflow:hidden; border:1px solid var(--paper-line);
    box-shadow:0 44px 90px -34px rgba(0,0,0,0.55);}
.pos-pay-btn{border:1px solid var(--paper-line); border-radius:6px; padding:9px 12px; font-size:12.5px; font-weight:600;
    color:var(--ink); background:#FAF6EC;}
.pos-pay-grid{display:flex; flex-direction:column; gap:8px;}
.pos-pay-label{display:block; font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:0.06em; text-transform:uppercase; color:#8a7f70; margin-bottom:10px;}
.pos-payment{padding:18px 16px;}
.pos-total{display:flex; justify-content:space-between; padding-top:12px; margin-top:4px; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:13.5px; color:var(--ink);}
.price-hero-stat{display:flex; align-items:flex-end; justify-content:center; gap:10px; margin:16px 0 18px; flex-wrap:wrap;}
.promo-applied{display:flex; align-items:center; gap:8px; font-size:12.5px; font-weight:700; color:#1E8A57;
    margin-bottom:16px; font-family:'Space Grotesk',sans-serif;}
.promo-apply{display:flex; align-items:center; justify-content:center; white-space:nowrap;
    background:var(--ink); color:var(--paper); border:none; border-radius:6px; padding:11px 18px;
    font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:13px; cursor:default; line-height:1;}
.promo-input{flex:1; border:1px solid var(--paper-line); border-radius:6px; padding:11px 14px;
    font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--ink); background:#FAF6EC;
    display:flex; align-items:center;}
.promo-input-row{display:flex; gap:8px; margin-bottom:14px; align-items:stretch;}
.promo-line{display:flex; justify-content:space-between; padding:8px 0; font-size:13.5px; color:#5b5349; border-bottom:1px dashed var(--paper-line);}
.promo-line.discount{color:#1E8A57; font-weight:600;}
.promo-line.total{border-bottom:none; padding-top:12px; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:15px; color:var(--ink);}
.promo-mockup{background:#fff; border-radius:12px; overflow:hidden; border:1px solid var(--paper-line);
    box-shadow:0 34px 70px -30px rgba(0,0,0,0.5); padding:22px 24px;}
.receipt-range{width:100%; height:5px; border-radius:4px; background:var(--paper-line);
    appearance:none; -webkit-appearance:none; cursor:pointer;}
.receipt-range::-moz-range-thumb{width:10px; height:10px; border-radius:50%; background:var(--paper); border:4px solid var(--blood); cursor:pointer;}
.receipt-range::-webkit-slider-thumb{-webkit-appearance:none; width:18px; height:18px; border-radius:50%;
    background:var(--paper); border:4px solid var(--blood); cursor:pointer;}
.receipt-save{color:#1E8A57;}
.receipt-slider{margin-bottom:14px; padding-bottom:14px; border-bottom:1px dashed var(--paper-line);}
.receipt-wrap{display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:start;}
.rl-arrow{color:var(--fog-dim); margin:0 6px;}
.rl-if{color:var(--ember); font-weight:700; margin-right:4px;}
.rl-result{color:var(--scan);}
.rs-label{font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:#8a7f70;}
.rs-top{display:flex; justify-content:space-between; align-items:baseline; margin-bottom:12px; font-family:'IBM Plex Mono',monospace;}
.rs-val{font-family:'Big Shoulders Display',sans-serif; font-weight:800; font-size:20px; color:var(--text-ink);}
.rule-line{font-family:'IBM Plex Mono',monospace; font-size:14px; color:var(--fog); padding:18px 0;
    border-bottom:1px solid rgba(244,236,220,0.08); line-height:1.6;}
.rule-line b{color:var(--paper); font-weight:700;}
.rule-line:last-child{border-bottom:none;}
.rule-lines{padding:6px 24px;}
.rvh-dot{display:flex; align-items:center; gap:10px; padding:18px 22px;
    border-bottom:1px solid rgba(244,236,220,0.1); background:rgba(0,0,0,0.15);}
.rvh-dot i{width:7px; height:7px; border-radius:50%; background:var(--scan); box-shadow:0 0 8px var(--scan); display:inline-block; flex-shrink:0;}
.rvh-dot span{font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--fog-dim);}
.setup-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
.setup-step{background:var(--ink); border:1px solid rgba(244,236,220,0.1); border-radius:8px;
    padding:24px 20px; position:relative;}
.setup-step .mi-icon{margin-top:8px; width:34px; height:34px; border-radius:7px;
    background:rgba(232,93,47,0.12); color:var(--ember);
    display:flex; align-items:center; justify-content:center; margin-bottom:14px;}
.setup-step .mi-icon i{font-size:16px;}
.setup-step .step-num{position:absolute; top:-15px; left:20px; width:30px; height:30px; border-radius:50%;
    background:var(--ember); color:var(--ink); font-family:'IBM Plex Mono',monospace; font-weight:700; font-size:13px;
    display:flex; align-items:center; justify-content:center; border:3px solid var(--ink2);}
.setup-step p{font-size:13px; color:var(--fog); line-height:1.55; margin:0;}
.store-badge{display:flex; align-items:center; gap:10px; background:var(--ink2); border:1px solid rgba(244,236,220,0.2);
    border-radius:8px; padding:10px 18px; text-decoration:none; color:var(--paper); transition:border-color .15s;}
.store-badge .sb-text{display:flex; flex-direction:column; line-height:1.25;}
.store-badge .sb-text small{font-size:9px; color:var(--fog-dim); text-transform:uppercase; letter-spacing:0.06em;}
.store-badge .sb-text strong{font-size:14px; font-family:'Space Grotesk',sans-serif;}
.store-badge svg{width:20px; height:20px; flex-shrink:0; color:var(--paper);}
.store-badge:hover{border-color:var(--ember);}
.store-badges{display:flex; gap:12px; margin-top:30px; flex-wrap:wrap;}
section{padding:var(--sp-section) 0;}
