.inner {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}
.site {
  position     : sticky;
  top          : 0;
  background   : #fff;
  border-bottom: 1px solid #eee;
  z-index      : 100;
}
/* keep nav link styling, but don't override .btn links */
nav a:not(.btn) {
  margin-left    : 14px;
  color          : var(--brand);
  text-decoration: none;
}
h2 {
  font-size: 22px;
  margin   : 18px 0 8px;
}
.muted {
  color: var(--muted);
}
.panel {
  background   : var(--panel);
  border-radius: var(--radius);
  box-shadow   : var(--ring);
  padding      : 22px;
  margin       : 18px 0;
}
.kpis {
  display              : grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap                  : 14px;
}
.kpis .card {
  background   : #fff;
  border-radius: 14px;
  padding      : 16px;
  box-shadow   : var(--ring);
}
.kpis .val {
  font-size  : 28px;
  font-weight: 800;
}
/* Make a KPI card span half the row on larger screens */
.kpis .card.wide{ grid-column: span 2; }
@media (max-width: 900px){
  .kpis .card.wide{ grid-column: span 1; }
}
.filters {
  display  : flex;
  flex-wrap: wrap;
  gap      : 10px;
  margin   : 12px 0;
}
.select {
  padding      : 10px 12px;
  border       : 1px solid #ddd;
  border-radius: 12px;
  background   : #fff;
  font-size    : inherit;
  line-height  : 1.4;
}
.table {
  width          : 100%;
  border-collapse: collapse;
}
.table th,.table td {
  padding      : 12px 10px;
  border-bottom: 1px solid #eee;
  text-align   : left;
}
.grid2 {
  display              : grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap                  : 16px;
}
.right {
  float: right;
}
.hr {
  height    : 1px;
  background: #eee;
  margin    : 14px 0;
}
.btn.buynow {
  font-size       : 14px;
  font-weight     : 600;
  padding         : 4px 14px;
  border-radius   : 16px;
  background-color: #fc6d4c;
  color           : #fff;
  border          : none;
  line-height     : 1;
  text-decoration : none;
}
/* ensure link states keep white text */
.btn.buynow:link,
.btn.buynow:visited {
  color: #fff;
}
.console-page 
.section .btn {
  margin-bottom: 4px;
}
* {
  box-sizing: border-box;
}
html,body {
  margin    : 0;
  padding   : 0;
  background: #fafafa;
  color     : var(--ink);
  font      : 16px/1.45 -apple-system,BlinkMacSystemFont,"SF Pro Text",Segoe UI,Inter,Roboto,Helvetica,Arial,sans-serif;
  height    : 100%;
}
body {
  margin    : 0;
  font      : 16px/1.45 var(--font);
  color     : var(--text);
  background: var(--bg);
}
a {
  color          : var(--accent);
  text-decoration: none;
}
.wrapper {
  max-width: 1100px;
  margin   : 0 auto;
  padding  : 0 22px;
}
header.site {
  position     : sticky;
  top          : 0;
  background   : #fff;
  border-bottom: 1px solid var(--line);
  z-index      : 10;
}
header.site .inner {
  height         : 64px;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}
.brand {
  font-weight   : 800;
  letter-spacing: .2px;
  display       : flex;
  align-items   : center;
  gap           : 10px;
}
.brand .dot {
  display      : inline-block;
  width        : 12px;
  height       : 12px;
  background   : var(--accent);
  border-radius: 999px;
  margin-right : 8px;
  position     : relative;
  top          : -1px;
}
h1 {
  font-size     : 44px;
  line-height   : 1.1;
  margin        : 16px 0 8px 0;
  font-weight   : 800;
  letter-spacing: -.4px;
  color         : #121212;
}
.sub {
  color    : var(--muted);
  font-size: 13px;
}
.label {
  font-weight: 700;
}
.row {
  display: grid;
  gap    : 8px;
  margin : 6px 0 12px 0;
}
.row.split {
  grid-template-columns: 1fr auto;
  align-items          : center;
}
.input, select, .val, textarea {
  padding      : 12px 12px;
  border       : 1px solid var(--line);
  border-radius: 12px;
  background   : #fff;
  font         : 16px/1.4 var(--font);
}
.val {
  min-width : 90px;
  text-align: right;
  background: #f7f7f7;
}
.slider {
  width       : 100%;
  accent-color: var(--accent);
}
.grid {
  display              : grid;
  grid-template-columns: 1.1fr .9fr;
  gap                  : 22px;
}
.offerCard {
  padding       : 24px;
  display       : flex;
  flex-direction: column;
  gap           : 14px;
}
.big {
  font-size     : 44px;
  font-weight   : 900;
  letter-spacing: -.3px;
  color         : var(--accent);
}
.pills {
  display  : flex;
  gap      : 10px;
  flex-wrap: wrap;
}
.pill {
  border       : 1px solid var(--line);
  border-radius: 999px;
  padding      : .45rem .9rem;
  background   : #fff;
  cursor       : pointer;
}
.pill.active {
  background  : var(--accent);
  border-color: var(--accent);
  color       : #fff;
}
.req {
  color      : var(--muted);
  border-top : 1px solid var(--line);
  padding-top: 12px;
}
.stepper {
  display: flex;
  gap    : 8px;
  margin : 14px 0 24px;
}
.step {
  flex         : 1;
  height       : 6px;
  background   : #eee;
  border-radius: 999px;
  overflow     : hidden;
}
.step>span {
  display   : block;
  height    : 100%;
  width     : 0;
  background: var(--accent);
  transition: width .3s;
}
.twocol {
  display              : grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap                  : 16px;
}
.twocol .full {
  grid-column: 1 / -1;
}
.roadmap {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 22px;
}
.kit .item {
  display      : flex;
  gap          : 12px;
  align-items  : center;
  border       : 1px solid var(--line);
  border-radius: 14px;
  padding      : 12px;
  margin-bottom: 10px;
}
.kit .item.done {
  background  : #f7fff8;
  border-color: #cde8d1;
}
.kit .item .status {
  width          : 22px;
  height         : 22px;
  border-radius  : 999px;
  border         : 2px solid #ccc;
  display        : flex;
  align-items    : center;
  justify-content: center;
  font-size      : 12px;
}
.kit .item.done .status {
  border-color: #18a558;
  color       : #18a558;
}
.badge {
  display      : inline-block;
  background   : var(--accent-weak);
  border       : 1px solid #eee;
  border-radius: 999px;
  padding      : .35rem .6rem;
  font-size    : 12px;
  color        : var(--accent);
  font-weight  : 700;
}
.center {
  min-height     : 80vh;
  display        : flex;
  align-items    : center;
  justify-content: center;
  flex-direction : column;
  gap            : 16px;
  text-align     : center;
  padding        : 20px;
}
.auth {
  width    : 100%;
  max-width: 440px;
}
.auth .card {
  padding: 26px;
}
.auth .row {
  margin: 0 0 14px 0;
}
.auth .oauth {
  display       : flex;
  gap           : 10px;
  flex-direction: row;
}
.auth .oauth .iconbtn {
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  width          : 48px;
  height         : 48px;
  border-radius  : 14px;
  background     : #f3f3f3;
  border         : 1px solid var(--line);
  cursor         : pointer;
}
.icon {
  width  : 22px;
  height : 22px;
  display: block;
}
.tag {
  display      : inline-block;
  margin       : 0 6px 6px 0;
  padding      : .25rem .6rem;
  border-radius: 999px;
  background   : #f2f2f2;
  font-size    : 12px;
}
blockquote.hint {
  margin       : 10px 0 0 0;
  padding      : 12px 14px;
  border-left  : 4px solid var(--accent);
  background   : #fff;
  border-radius: 8px;
}
.notice {
  background   : #fff7f4;
  border       : 1px dashed var(--accent);
  padding      : 12px;
  border-radius: 12px;
  color        : #a34b35;
  margin-top   : 8px;
}
.hero .muted {
  color: var(--muted);
}
.hero .panel {
  padding: 24px;
}
.formGrid {
  display              : grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap                  : 12px;
}
.formGrid .full {
  grid-column: 1 / -1;
}
.autocomplete {
  position: relative;
}
.ac-list {
  position     : absolute;
  top          : 100%;
  left         : 0;
  right        : 0;
  background   : #fff;
  border       : 1px solid var(--line);
  border-radius: 12px;
  margin-top   : 6px;
  box-shadow   : var(--shadow);
  max-height   : 260px;
  overflow     : auto;
  z-index      : 20;
}
.ac-item {
  padding      : 10px 12px;
  cursor       : pointer;
  border-bottom: 1px solid #f5f5f5;
}
.ac-item:last-child {
  border-bottom: 0;
}
.ac-item:hover {
  background: #fafafa;
}
.accordion {
  border       : 1px solid var(--line);
  border-radius: 14px;
  overflow     : hidden;
  background   : #fff;
}
.ac-head {
  display        : flex;
  justify-content: space-between;
  align-items    : center;
  padding        : 12px 14px;
  cursor         : pointer;
  font-weight    : 700;
}
.ac-body {
  display   : none;
  padding   : 14px;
  border-top: 1px solid var(--line);
}
.accordion.open .ac-body {
  display: block;
}
.badge.nudge {
  background: #fff2cc;
  color     : #a15c00;
}
.nudgeToast {
  margin-top   : 8px;
  padding      : 10px 12px;
  border       : 1px dashed #f3c27a;
  background   : #fff8e6;
  color        : #8a5b00;
  border-radius: 10px;
  font-weight  : 600;
  box-shadow   : 0 6px 16px rgba(0,0,0,.04);
  animation    : nudge-pop .24s ease-out;
}
.offerCard .glow {
  box-shadow: 0 0 0 0 rgba(238,111,83,.25);
  animation : glow-pulse 1.6s ease-out 1;
}
.reveal {
  transform : translateY(12px);
  opacity   : 0;
  transition: transform .5s ease, opacity .5s ease;
}
.reveal.show {
  transform: translateY(0);
  opacity  : 1;
}
.btn:active {
  transform: scale(.98);
}
.stickyOffer .expand {
  transition: max-height .25s ease;
}
.stickyOffer.active .expand;
.skeleton {
  position: relative;
  overflow: hidden;
}
.skeleton::after {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: linear-gradient(90deg,rgba(0,0,0,0),rgba(0,0,0,.04),rgba(0,0,0,0));
  animation : sheen 1.1s infinite;
}
.parallax {
  will-change: transform;
  transition : transform .2s ease-out;
}
.parallax-layer {
  position      : absolute;
  filter        : blur(20px);
  opacity       : .18;
  z-index       : 0;
  pointer-events: none;
}
.hero {
  display              : grid;
  grid-template-columns: 1.1fr .9fr;
  gap                  : 28px;
  align-items          : center;
  margin               : 38px 0 70px;
  position             : relative;
  overflow             : hidden;
}
.parallax-layer.l1 {
  width        : 340px;
  height       : 340px;
  border-radius: 50%;
  background   : radial-gradient(circle at 30% 30%, #ffd6cc, rgba(255,214,204,0));
  top          : -80px;
  left         : -80px;
}
.parallax-layer.l2 {
  width        : 420px;
  height       : 420px;
  border-radius: 50%;
  background   : radial-gradient(circle at 70% 40%, #ffe8e2, rgba(255,232,226,0));
  top          : 10%;
  right        : -120px;
}
.parallax-layer.l3 {
  width        : 260px;
  height       : 260px;
  border-radius: 50%;
  background   : radial-gradient(circle at 40% 60%, #ffefe9, rgba(255,239,233,0));
  bottom       : -120px;
  left         : 20%;
}
.reveal.big-enter {
  transform: translateY(18px) scale(.985);
  opacity  : 0;
}
.reveal.big-enter.show {
  transform: translateY(0) scale(1);
  opacity  : 1;
}
.card.panel.parallax {
  transition : transform .25s ease, box-shadow .25s ease;
  will-change: transform;
}
.card.panel.parallax.tilt {
  transform: perspective(800px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)) translateZ(0);
}
.hero.banner {
  position     : relative;
  overflow     : hidden;
  border-radius: 22px;
  background   : linear-gradient(135deg, var(--accent) 0%, #ff8f77 60%, #ffd0c6 120%);
  padding      : 48px 26px;
  margin       : 28px 0 64px;
  color        : #fff;
}
.hero.banner .content {
  position : relative;
  z-index  : 2;
  max-width: 560px;
}
.hero.banner .hand {
  position : absolute;
  right    : -40px;
  bottom   : -20px;
  width    : min(44vw, 560px);
  max-width: 560px;
  transform: rotate(-2deg);
  filter   : drop-shadow(0 18px 40px rgba(0,0,0,.25));
}
.hero.banner .btn.light {
  background: rgba(255,255,255,.16);
  color     : #fff;
  border    : 1px solid rgba(255,255,255,.35);
}
.hero.banner a {
  color                    : #fff;
  text-decoration-thickness: 2px;
}
/* === Simple hero (matches your mockup) === */
.hero.simple{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
  margin:38px 0 48px;
}

.hero .headline{
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 12px 0;
  color: var(--ink);
  text-shadow: none;
}

.hero .lede{
  font-size: 1.1rem;
  line-height: 1.45;
  max-width: 46ch;
  margin: 0 0 18px 0;
  color: var(--text);
}

.hero-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* Right-side visual card */
.hero-art{
  min-height: 220px;
  border-radius: 16px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(0,0,0,.06) 0 6px,
      rgba(255,255,255,.35) 6px 12px
    );
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(0,0,0,.55);
}

/* Stack on mobile */
@media (max-width: 980px){
  .hero.simple{ grid-template-columns: 1fr; }
}
.offerCard.accent .label,
.offerCard.accent .big,
.offerCard.accent .sub {
  color: #fff;
}
.offerCard.accent {
  background  : linear-gradient(135deg, var(--accent) 0%, #ff8f77 70%);
  color       : #fff;
  border-color: transparent;
}
.offerCard.accent .label,
.offerCard.accent .big,
.offerCard.accent .sub,
.offerCard.accent .sub * {
  color  : #fff !important;
  opacity: 0.98;
}
.offerCard.accent .badge {
  background  : rgba(255,255,255,.18);
  color       : #fff;
  border-color: rgba(255,255,255,.35);
}
.offerCard.accent hr {
  border-color: rgba(255,255,255,.35);
}
.stickyOffer .card.offerCard {
  background  : linear-gradient(135deg, var(--accent) 0%, #ff8f77 70%);
  color       : #fff;
  border-color: transparent;
}
.stickyOffer .card.offerCard .label,
.stickyOffer .card.offerCard .big,
.stickyOffer .card.offerCard .sub,
.stickyOffer .card.offerCard .sub * {
  color: #fff !important;
}
.offerCard.accent .nudgeToast {
  background  : rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
  color       : #fff;
}
.offerCard.accent,
.stickyOffer .card.offerCard {
  background  : linear-gradient(135deg, var(--accent) 0%, #ff8f77 70%);
  color       : #fff !important;
  border-color: transparent;
}
.offerCard.accent *, 
.stickyOffer .card.offerCard * {
  color: #fff !important;
}
.offerCard.accent .muted, .offerCard.accent .sub, .offerCard.accent .muted *,.offerCard.accent .sub * {
  color  : #fff !important;
  opacity: 0.96;
}
.stickyOffer .card.offerCard .muted, 
.stickyOffer .card.offerCard .sub, 
.stickyOffer .card.offerCard .muted *, 
.stickyOffer .card.offerCard .sub * {
  color  : #fff !important;
  opacity: 0.96;
}
.stickyOffer .card.offerCard hr,
.offerCard.accent hr {
  border-color: rgba(255,255,255,.35);
}
.stickyOffer .card.offerCard .badge,
.offerCard.accent .badge {
  background  : rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
  color       : #fff;
}
.stickyOffer.card {
  background  : linear-gradient(135deg, var(--accent) 0%, #ff8f77 70%);
  color       : #fff !important;
  border-color: transparent;
}
.stickyOffer.card * {
  color: #fff !important;
}
.stickyOffer.card .badge {
  background  : rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
  color       : #fff;
}
.stickyOffer.card .collapsed .big {
  color: #fff !important;
}
.card.offerCard,
.stickyOffer.card {
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.stickyOffer.card button, .stickyOffer button {
  color      : #000 !important;
  font-weight: 600;
}
:root {
  --brand      : #EF8062;
  --ink        : #111;
  --muted      : #6f6f6f;
  --bg         : #ffffff;
  --panel      : #ffffff;
  --ring       : 0 8px 28px rgba(0,0,0,.08);
  --radius     : 16px;
  --text       : #121212;
  --line       : #ececec;
  --accent     : #ee6f53;
  --accent-weak: #fde7e1;
  --shadow     : 0 10px 28px rgba(0,0,0,.10);
  --font       : -apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Helvetica,Arial,sans-serif;
}
h1,h2,h3 {
  letter-spacing: -0.01em;
}
.input {
  border-radius: 12px;
  border       : 1px solid var(--line);
  padding      : 12px 14px;
}
.input:focus {
  outline     : none;
  box-shadow  : 0 0 0 3px rgba(238,111,83,.18);
  border-color: var(--accent);
}
.card {
  background   : var(--panel);
  border-radius: var(--radius);
  box-shadow   : var(--shadow);
}
.card.offerCard,.stickyOffer.card {
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.card.offerCard:hover {
  transform : translateY(-2px);
  box-shadow: 0 18px 42px rgba(0,0,0,.12);
  filter    : saturate(1.02);
}
.stickyOffer.card button,.stickyOffer button {
  color      : #000 !important;
  font-weight: 700;
}
.offerCard.accent,
.stickyOffer.card {
  background  : linear-gradient(135deg, var(--accent) 0%, #ff8f77 70%);
  color       : #fff !important;
  border-color: transparent;
}
.offerCard.accent *, .stickyOffer.card * {
  color: #fff !important;
}
.offerCard.accent .badge, .stickyOffer.card .badge {
  background  : rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
}

/* ========= Feature Rail (global) ========= */
.featureRail{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:8px 0 22px;
}
@media(max-width:980px){ .featureRail{ grid-template-columns:1fr } }

.featureCard{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  min-height:420px;
  background:#f2f2f2;
  box-shadow:var(--shadow);
  /* photo layer + subtle stripe layer */
  background-image: var(--img), repeating-linear-gradient(
    45deg,
    rgba(0,0,0,.06),
    rgba(0,0,0,.06) 10px,
    rgba(255,255,255,.06) 10px,
    rgba(255,255,255,.06) 20px
  );
  background-size: cover, auto;
  background-position:center;
}
.featureCard::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 100%);
}
.featureCard .inner{
  position:absolute;
  left:20px; right:20px; bottom:20px;
  z-index:2; color:#fff;
  display:flex; flex-direction:column; gap:8px;
}
.featureCard .kicker{ font-weight:700; opacity:.9; letter-spacing:.02em; margin:0; color: #fff;}
.featureCard h3{ margin:0; font-size:clamp(22px,2.6vw,32px); line-height:1.15; color: #fff; }
.featureCard .sub{ margin:0; opacity:.92; color: #fff; }

/* Reusable outlined tile (matches your mockup) */
.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: none;        /* ensure no elevation */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Headings inside tiles */
.tile h3,
.tile h4 {
  margin-top: 0;          /* remove extra top margin */
  margin-bottom: 8px;     /* keep bottom breathing room */
  font-size: 20px;
  line-height: 1.25;
}

/* Paragraphs inside tiles */
.tile p { 
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
/* Icons for feature tiles */
.tile .iconic{
  width: 48px; height: 48px;
  margin-bottom: 10px;
  stroke: var(--accent); fill: none; stroke-width: 2;
}
.tile .iconic circle, .tile .iconic rect, .tile .iconic path{
  vector-effect: non-scaling-stroke;
}
/* Roomier tiles just for this section */
section:has(> h2:contains("How to use Offermatcher")) .tile{ padding:22px; }
html {
  scroll-behavior: smooth;
}
#signup {
  scroll-margin-top: 88px;
}
.oauth-row {
  display    : flex;
  gap        : 10px;
  align-items: center;
}
.iconbtn.oauth {
  width          : 42px;
  height         : 42px;
  border-radius  : 999px;
  border         : 1px solid var(--line);
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  background     : #fff;
}
.iconbtn.oauth:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.iconbtn.oauth .icon {
  width : 20px;
  height: 20px;
}
.hero.banner p.muted {
  color      : rgba(255,255,255,.92);
  font-size  : clamp(16px,1.8vw,20px);
  line-height: 1.45;
  margin     : 0;
  opacity    : .96;
}
.hero.banner h1 {
  color         : #fff;
  text-shadow   : 0 2px 16px rgba(0,0,0,.08);
  font-size     : clamp(40px,6.2vw,58px);
  line-height   : 1.08;
  letter-spacing: -0.01em;
  margin        : 0 0 10px 0;
  font-weight   : 800;
}
.oauth-stack {
  display       : flex;
  flex-direction: column;
  gap           : 10px;
}
.oauth-btn {
  display        : flex;
  align-items    : center;
  gap            : 10px;
  justify-content: center;
  height         : 48px;
  border-radius  : 12px;
  border         : 1px solid var(--line);
  background     : #fff;
  font-weight    : 600;
}
.oauth-btn:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.orRow {
  display        : flex;
  justify-content: center;
  align-items    : center;
  height         : 28px;
}
.orRow span {
  font-size: 12px;
  color    : var(--sub);
  opacity  : .8;
}
main.wrapper {
  padding-bottom: 32px;
}
.panel:last-of-type {
  margin-bottom: 24px;
}
.btn {
  display        : inline-flex;
  background     : var(--accent);
  color          : #fff;
  border         : 0;
  border-radius  : 999px;
  padding        : 12px 18px;
  cursor         : pointer;
  text-decoration: none;
  font-weight    : 600;
  align-items    : center;
  gap            : 8px;
  transition     : transform .08s ease, box-shadow .2s ease;
  font-size      : 16px;
}
.btn.light {
  background: #eee;
  color     : #222;
  font-size : 16px;
}
.brand-logo {
  max-height: 30px;
  height    : auto;
  width     : auto;
  max-width : 100%;
  display   : block;
}
.hamburger {
  display        : inline-flex;
  flex-direction : column;
  gap            : 5px;
  width          : 30px;
  height         : 24px;
  align-items    : flex-start;
  justify-content: center;
  background     : transparent;
  border         : 0;
  cursor         : pointer;
}
.hamburger i {
  display      : block;
  width        : 22px;
  height       : 2px;
  background   : #111;
  border-radius: 2px;
}
.backdrop {
  position      : fixed;
  inset         : 0;
  background    : rgba(0,0,0,.14);
  opacity       : 0;
  pointer-events: none;
  transition    : opacity .2s ease;
  z-index       : 999;
}
.navpanel {
  position     : fixed;
  inset        : 0 auto 0 0;
  width        : 300px;
  max-width    : 86vw;
  height       : 100vh;
  background   : #fff;
  box-shadow   : var(--ring);
  transform    : translateX(-120%);
  transition   : transform .28s ease;
  z-index      : 1000;
  padding      : 20px 18px 24px;
  overflow     : auto;
  border-radius: 0 18px 18px 0;
}
.navpanel a {
  display        : block;
  padding        : 12px 6px;
  border-radius  : 10px;
  color          : #111;
  text-decoration: none;
}
.navpanel a:hover {
  background: rgba(0,0,0,.04);
}
.show-nav .backdrop {
  opacity       : 1;
  pointer-events: auto;
}
.show-nav .navpanel {
  transform: none;
}
.fx {
  opacity  : 0;
  transform: translateY(10px);
}
.on {
  opacity   : 1 !important;
  transform : none !important;
  transition: opacity .5s ease,transform .5s ease;
}
.btn.block {
  display   : block;
  width     : 100%;
  text-align: center;
}
/* --- Snapshot approve flow --- */
.btn.primary-lg{
  font-size:18px;
  padding:14px 22px;
  border-radius:999px;
  background: var(--accent);
  color:#fff;
  box-shadow: 0 10px 24px rgba(238,111,83,.28);
}
.btn.primary-lg:disabled{
  opacity:.75;
  cursor:not-allowed;
  box-shadow:none;
}

.btn.primary-lg .spinner{
  display:none;
  width:16px; height:16px;
  border:2px solid rgba(255,255,255,.55);
  border-top-color:#fff;
  border-radius:50%;
  animation: om-spin .8s linear infinite;
  margin-right:8px;
}
.btn.primary-lg.loading .spinner{ display:inline-block; }
.btn.primary-lg.loading .label{ opacity:.9; }

@keyframes om-spin{ to{ transform:rotate(360deg); } }

.accept-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:12px;
  background:#fff7f4;
  border:1px dashed var(--accent);
  color:#a34b35;
  font-weight:700;
}
.accept-status.ok{
  background:#f7fff8;
  border:1px solid #cde8d1;
  color:#1a7a4f;
}
.accept-status .check{
  display:inline-flex;
  width:18px; height:18px;
  align-items:center; justify-content:center;
  border-radius:50%;
  background:#1a7a4f; color:#fff;
  font-size:12px; line-height:1;
}
.avail {
  text-align : right;
  white-space: nowrap;
  color      : #60646c;
  font-weight: 700;
}
.purchase-rows {
  display              : grid;
  grid-template-columns: 1fr auto auto;
  gap                  : 12px;
  align-items          : center;
}
.console-page header.site {
  font-size: 1rem;
}
.console-page header.site .hamburger {
  font-size: 20px;
}
.console-page 
.section {
  background   : #fff;
  border-radius: 20px;
  box-shadow   : 0 10px 30px rgba(0,0,0,.06);
  padding      : 18px;
  margin       : 14px 0;
}
.console-page .section .section-title {
  font-weight: 700;
  margin     : 0 0 8px 0;
}
.console-page .section .section-sub {
  color : #666;
  margin: 0 0 12px 0;
}
.console-page 
.wrapper {
  max-width: 1100px;
  margin   : 0 auto;
}
.console-page .section {
  background   : #fff;
  border-radius: 22px;
  box-shadow   : 0 12px 36px rgba(0,0,0,.06);
  padding      : 22px;
  margin       : 16px 0;
}
.console-page .grid {
  display: grid;
  gap    : 14px;
}
.console-page .grid.cols-2 {
  grid-template-columns: 1fr 1fr;
}
.console-page .split {
  display              : grid;
  grid-template-columns: minmax(0,1fr) 460px;
  gap                  : 28px;
}
.console-page .kpi-snap {
  background   : #fafafa;
  border-radius: 16px;
  padding      : 12px 14px;
  box-shadow   : inset 0 1px 0 rgba(0,0,0,.05);
}
.console-page .kpi-snap .label {
  font-weight  : 600;
  color        : #121316;
  margin-bottom: 4px;
}
.console-page .kpi-snap .val {
  font-weight: 800;
  font-size  : 18px;
}
.console-page .kpi-card {
  background   : #f7f7f8;
  border-radius: 16px;
  padding      : 14px 16px;
}
.console-page .kpi-card .muted {
  font-weight  : 600;
  color        : #121316;
  margin-bottom: 6px;
}
.console-page .val-xl {
  font-size  : 28px;
  font-weight: 900;
}
.console-page .console-nav {
  position     : sticky;
  top          : 64px;
  z-index      : 60;
  background   : #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.console-page .console-nav .bar {
  max-width  : 1100px;
  margin     : 0 auto;
  padding    : 10px 12px;
  display    : flex;
  gap        : 8px;
  align-items: center;
}
.console-page .chart-wrap {
  position: relative;
}
.console-page .chart-box {
  height         : 260px;
  display        : flex;
  align-items    : center;
  justify-content: center;
}
.console-page .crosshair {
  position  : absolute;
  top       : 0;
  bottom    : 0;
  width     : 1px;
  background: rgba(0,0,0,.2);
  display   : none;
}
.console-page .pills {
  display   : flex;
  gap       : 8px;
  flex-wrap : wrap;
  margin-top: 8px;
}
.console-page .pill.tab {
  border-radius: 999px;
  padding      : 8px 12px;
  border       : 1px solid rgba(0,0,0,.12);
  cursor       : pointer;
  user-select  : none;
}
.console-page .pill.tab.active {
  background  : #fff3ef;
  border-color: #ee6f53;
  color       : #d6553a;
}
.console-page .stackbar {
  height       : 12px;
  border-radius: 999px;
  background   : rgba(0,0,0,.06);
  overflow     : hidden;
}
.console-page .seg {
  height: 100%;
}
.console-page .pending {
  display              : grid;
  grid-template-columns: repeat(3,1fr);
  gap                  : 12px;
  margin               : 12px 0;
}
.console-page .pending .cell {
  background   : #f3f4f6;
  border-radius: 14px;
  padding      : 14px;
}
.console-page .pending .val {
  font-weight: 800;
}
.console-page .form-grid {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  gap                  : 12px;
}
.console-page .form-grid .input {
  width: 100%;
}
.console-page .btn.primary {
  background: #ee6f53;
  color     : #fff;
}
.console-page .card-cta {
  background   : #fff7f4;
  border       : 1px solid #ffd7cb;
  border-radius: 16px;
  padding      : 14px 16px;
}
.console-page .card-cta .sub {
  color: #7a3f31;
}
.console-page .mt-16 {
  margin-top: 16px;
}
.console-page .mb-16 {
  margin-bottom: 16px;
}
.console-page .center {
  text-align: center;
}
.console-page  
.section .btn {
  margin-bottom: 4px;
}
.console-page .grid.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.console-page .input {
  display      : block;
  width        : 100%;
  padding      : 12px 14px;
  border-radius: 12px;
  border       : 1px solid rgba(0,0,0,.12);
  background   : #fff;
  outline      : none;
}
.console-page .input::placeholder {
  color: #b6b6b6;
}
.console-page .kpi-card .val {
  font-weight: 800;
  font-size  : 18px;
}
.console-page .section h2 {
  font-weight: 800;
  margin     : 6px 0 6px;
}
.console-page .section .muted {
  color: #6f6f6f;
}
.console-page .kpi-bonus {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  padding        : 20px;
  border-radius  : 16px;
  background     : #ee6b4d;
  color          : #fff;
  box-shadow     : 0 8px 20px rgba(238,111,83,.35);
  font-weight    : 600;
  font-size      : 20px;
}
.console-page .kpi-bonus .val {
  font-size  : 28px;
  font-weight: 700;
}
.console-page .kpi-bonus div {
  margin: 4px 0;
}
.console-page .grid.cols-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  display              : grid;
  gap                  : 12px;
}
.console-page .kpi-bonus .btn.light {
  background: #fff;
  color     : #d6553a;
}
.console-page 
#purchasePanel .card .muted:first-child {
  font-weight: 700;
  color      : #111;
}
.console-page #purchasePanel hr {
  opacity: .6;
}
.console-page #purchasePanel .kpi-bonus {
  padding      : 18px 20px;
  border-radius: 20px;
  background   : linear-gradient(135deg,#ee6f53,#d85e46);
  color        : #fff;
  box-shadow   : 0 12px 30px rgba(238,111,83,.35);
}
.console-page #purchasePanel .kpi-bonus .btn.light {
  background: #fff;
  color     : #d6553a;
}
.console-page .tooltip {
  position      : absolute;
  pointer-events: none;
  background    : #111;
  color         : #fff;
  padding       : 8px 10px;
  border-radius : 10px;
  font-size     : .85rem;
  box-shadow    : 0 8px 20px rgba(0,0,0,.2);
  transform     : translate(-50%,-120%);
  display       : none;
  white-space   : nowrap;
}
.console-page 
#progressCounts {
  display              : grid;
  grid-template-columns: repeat(4,1fr);
  gap                  : 10px;
  margin-top           : 8px;
}
.console-page #rangeTabs .tab {
  cursor: pointer;
}
.console-page #purchasePanel .kpi-bonus .grid {
  gap: 12px;
}
.console-page #purchasePanel .kpi-bonus a.btn.light {
  background : #fff;
  color      : #d6553a;
  font-weight: 800;
}
.console-page #purchasePanel .kpi-bonus .muted {
  color      : #fff!important;
  opacity    : .95;
  font-weight: 600;
}
.console-page 
.section .legend {
  display: none;
}
.console-page 
#purchasePanel .kpi-bonus .grid > div {
  display        : flex;
  flex-direction : column;
  justify-content: center;
}
.console-page #purchasePanel .kpi-bonus .val {
  font-size  : 28px;
  font-weight: 800;
}
.console-page #purchasePanel .kpi-bonus .grid > div .val, .console-page #purchasePanel .kpi-bonus .grid > div .muted {
  background: transparent;
  box-shadow: none;
}
.console-page #purchasePanel .kpi-bonus .grid > div {
  padding: 6px 8px;
}
.console-page #purchasePanel .ai-full {
  border: 1px solid rgba(0,0,0,.05);
}
.console-page 
#purchasePanel .kpi-bonus .val {
  background : transparent;
  box-shadow : none;
  color      : #fff;
  font-weight: 800;
  font-size  : 26px;
}
.console-page 
section.progress-grid .split {
  display              : grid;
  grid-template-columns: 3fr 1fr;
  gap                  : 16px;
  align-items          : stretch;
}
.console-page section.progress-grid .split > div:last-child {
  display           : grid;
  grid-template-rows: 1fr 1fr;
  gap               : 12px;
}
.console-page section.progress-grid .split .card {
  height: auto;
}
.console-page 
section.progress-grid > .split {
  display              : grid;
  grid-template-columns: 3fr 1fr;
  gap                  : 18px;
  align-items          : stretch;
}
.console-page section.progress-grid > .split > div:last-child {
  display           : grid;
  grid-template-rows: 1fr 1fr;
  gap               : 12px;
}
.console-page .section .legend {
  margin-top: 8px;
  display   : none;
}
.console-page 
header.site {
  position: sticky;
  top     : 0;
  z-index : 1000;
}
.console-page 
#purchasePanel .ai-full .sub {
  line-height: 1.4;
}
.console-page #offlineNotice {
  font-weight: 600;
}
.console-page 
.nav-floating .btn-period {
  border     : none!important;
  box-shadow : inset 0 0 0 0 rgba(0,0,0,0)!important;
  background : #fff;
  font-weight: 700;
}
.console-page 
.filters-label {
  display      : inline-block;
  padding      : 10px 14px;
  font-weight  : 700;
  background   : transparent;
  border       : none;
  box-shadow   : none;
  color        : #404040;
  border-radius: 10px;
}
.console-page 
.nav-floating {
  position  : sticky;
  top       : 0;
  z-index   : 30;
  background: #fff;
}
.console-page .nav-floating.is-sticky {
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.console-page 
.card-kpi {
  background     : #f6f7f9;
  border-radius  : 16px;
  box-shadow     : inset 0 0 0 1px rgba(0,0,0,0.04);
  padding        : 18px 20px;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  min-height     : 88px;
}
.console-page .card-kpi .value {
  font-weight: 800;
  font-size  : 22px;
}
.console-page .card-kpi .label {
  color      : #666;
  font-weight: 600;
}
.console-page 
.console-nav.is-fixed {
  position  : fixed;
  top       : 0;
  left      : 0;
  z-index   : 60;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  right     : 0;
}
.console-page 
.console-nav-spacer {
  height: 64px;
}
.console-page .filters-label {
  display    : inline-block;
  padding    : 10px 14px;
  font-weight: 700;
  color      : #404040;
}
.nav-actions {
  display    : flex;
  align-items: center;
  gap        : 10px;
  margin-left: auto;
}
.nav-actions .btn-try-now {
  font-size       : 14px;
  font-weight     : 600;
  padding         : 4px 14px;
  border-radius   : 16px;
  background-color: transparent;
  border          : 1px solid #2f2f2f;
  color           : #2f2f2f;
  line-height     : 1.5;
  text-decoration : none;
}
.nav-actions .btn-sign-up {
  font-size       : 14px;
  font-weight     : 600;
  padding         : 4px 14px;
  border-radius   : 16px;
  background-color: #fc6d4c;
  color           : #fff;
  border          : none;
  line-height     : 1.5;
  text-decoration : none;
}
.nav-actions .btn-log-in {
  font-size       : 14px;
  font-weight     : 600;
  padding         : 4px 14px;
  border-radius   : 16px;
  background-color: transparent;
  border          : 1px solid #fc6d4c;
  color           : #2f2f2f;
  line-height     : 1.5;
  text-decoration : none;
}
@media (max-width: 720px) {
  .twocol {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 981px) {
  .stickyOffer {
    display: none;
  }
}
@media (max-width:980px) {
  .grid {
    grid-template-columns: 1fr !important;
  }
  #fullOffer {
    display: none !important;
  }
  .stickyOffer {
    display: block !important;
  }
  .roadmap {
    grid-template-columns: 1fr !important;
  }
  .asideDesk {
    display: none !important;
  }
  .asideMobile {
    display: block !important;
  }
}
@media (min-width:981px) {
  .stickyOffer {
    display: none !important;
  }
  #fullOffer {
    display: block !important;
  }
  .asideMobile {
    display: none !important;
  }
}
@keyframes nudge-pop {
  from {
    transform: scale(.98);
    opacity  : 0;
  }
  to {
    transform: scale(1);
    opacity  : 1;
  }
}
@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(238,111,83,.45);
  }
  100% {
    box-shadow: 0 0 0 24px rgba(238,111,83,0);
  }
}
@keyframes sheen {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .formGrid {
    grid-template-columns: 1fr;
  }
  .stickyOffer {
    position     : sticky;
    top          : 66px;
    z-index      : 5;
    border       : 1px solid var(--line);
    background   : #fff;
    border-radius: 14px;
    margin-bottom: 10px;
  }
  .stickyOffer .collapsed {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    padding        : 10px 14px;
  }
  .stickyOffer .expand {
    display: none;
    padding: 12px;
  }
  .stickyOffer.active .expand {
    display: block;
  }
  #fullOffer {
    display: none;
  }
  .hero.banner {
    padding: 40px 20px 260px;
  }
  .hero.banner .hand {
    right : -40px;
    bottom: -60px;
    width : min(72vw, 520px);
  }
}
@media (max-width:560px) {
  .hero.banner h1 {
    font-size: 40px;
  }
  .hero.banner p.muted {
    font-size: 18px;
  }
}
@supports (padding: max(0px)) {
  body {
    padding-bottom: max(env(safe-area-inset-bottom),12px);
  }
}
@media (max-width:720px) {
  .console-page .grid.cols-4, .console-page .grid.cols-3, .console-page .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width:900px) {
  .kpis {
    grid-template-columns: 1fr 1fr;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .console-page .grid.cols-2 {
    grid-template-columns: 1fr;
  }
  .console-page .grid.cols-3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width:1100px) {
  .console-page .split {
    grid-template-columns: 1fr;
    gap                  : 18px;
  }
  .console-page .grid.cols-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width:700px) {
  .console-page .grid.cols-4 {
    grid-template-columns: 1fr;
  }
}
/* Buy Now pill in the console nav: keep white text in all link states */
.console-page .console-nav .btn.buynow,
.console-page .console-nav .btn.buynow:link,
.console-page .console-nav .btn.buynow:visited {
  color: #fff !important;
}

/* Force white text for loyalty tracker CTA */
#loyaltySection .btn,
#loyaltySection .btn:link,
#loyaltySection .btn:visited {
  color: #fff !important;
}

/* Force dark text for purchase panel button */
#purchasePanel .btn,
#purchasePanel .btn:link,
#purchasePanel .btn:visited {
  color: #2f2f2f !important;
}