/* ===================================================================
   KBX Bots — "Gamer HUD" theme
   Warm ember palette · sci-fi panels · subtle motion · mobile-first
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Warm "ember/sunset" theme — primary accents kept under the
     --blurple* names so existing rules pick them up automatically. */
  --blurple: #F2683C;       /* ember orange (primary)  */
  --blurple-2: #FF9A5A;     /* lighter warm orange     */
  --blurple-dark: #C94E1E;
  --green: #F5A623;         /* warm amber/gold accent  */
  --yellow: #FEE75C;
  --fuchsia: #FF5C9A;       /* warm pink               */
  --red: #ED4245;

  --glow: rgba(242, 104, 60, 0.5);
  --glow-green: rgba(245, 166, 35, 0.4);

  /* Discord brand colors (used only for the Discord bar/button) */
  --discord: #5865F2;
  --discord-2: #7983ff;
  --discord-dark: #404bcc;

  /* surfaces (warm charcoal — lightened) */
  --bg: #1c1512;
  --bg-2: #261d18;
  --panel: #2d2219;
  --panel-2: #382a20;
  --line: #4d3a2980;
  --line-solid: #4d3a29;
  --text: #fdf6ef;
  --muted: #c6ad9b;

  --head: 'Chakra Petch', 'Segoe UI', sans-serif;
  --body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* --- Layered animated background: aurora blobs + grid + scanlines --- */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(600px 400px at 15% 0%, rgba(242,104,60,.24), transparent 60%),
    radial-gradient(560px 420px at 85% 15%, rgba(255,92,154,.18), transparent 60%),
    radial-gradient(700px 500px at 60% 100%, rgba(245,166,35,.14), transparent 60%);
  animation: aurora 22s ease-in-out infinite alternate;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(242,104,60,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,104,60,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 80%);
}
@keyframes aurora {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, 1.5%, 0) scale(1.06); }
  100% { transform: translate3d(-1.5%, -1%, 0) scale(1.03); }
}

a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92vw); margin: 0 auto; }

h1,h2,h3,h4,.brand,.eyebrow,.tag,.pkg h4,.stat strong,.rating-big,.total-row .amt {
  font-family: var(--head);
  letter-spacing: .4px;
}

/* mono label helper */
.kicker {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 3px;
  font-size: .72rem; color: var(--blurple-2);
}

/* ===================== DISCORD TOP BAR ===================== */
.topbar {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  padding: 9px 16px; position: relative; overflow: hidden;
  background: linear-gradient(90deg, var(--discord-dark), var(--discord) 50%, var(--discord-2));
  color: #fff; font-family: var(--head); font-weight: 600; font-size: .9rem; letter-spacing: .3px;
}
.topbar::before { /* moving sheen */
  content: ''; position: absolute; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.18), transparent);
  animation: sheen 5s linear infinite;
}
@keyframes sheen { 0%{ transform: translateX(-160%);} 100%{ transform: translateX(360%);} }
.topbar .tb-text { display: inline-flex; align-items: center; gap: 9px; position: relative; }
.topbar .tb-text svg { width: 20px; height: 20px; }
.topbar .tb-btn {
  position: relative; background: #fff; color: #4752c4; padding: 6px 16px; font-weight: 700;
  font-size: .82rem; transition: .2s;
  clip-path: polygon(7px 0,100% 0,100% calc(100% - 7px),calc(100% - 7px) 100%,0 100%,0 7px);
}
.topbar .tb-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.3); }
.topbar .tb-pulse { width: 8px; height: 8px; border-radius: 50%; background: #57F287; box-shadow: 0 0 10px #57F287; animation: blink 1.6s infinite; }

/* Discord button in nav */
.btn-discord {
  background: rgba(88,101,242,.16); color: var(--discord-2); border: 1px solid var(--discord);
  padding: 8px 14px !important; display: inline-flex; align-items: center; gap: 7px;
  clip-path: polygon(7px 0,100% 0,100% calc(100% - 7px),calc(100% - 7px) 100%,0 100%,0 7px);
}
.btn-discord:hover { background: var(--discord); color: #fff !important; box-shadow: 0 0 16px rgba(88,101,242,.5); }
.btn-discord svg { width: 18px; height: 18px; }
.nav-links a.btn-discord::after { display: none; }

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(6,7,15,.92), rgba(6,7,15,.62));
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.3rem; }
.brand .logo {
  width: 44px; height: 44px; display: block; object-fit: cover; border-radius: 50%;
  filter: drop-shadow(0 0 7px var(--glow));
  animation: logoGlow 4s ease-in-out infinite;
}
@keyframes logoGlow { 0%,100%{ filter: drop-shadow(0 0 5px var(--glow)); } 50%{ filter: drop-shadow(0 0 14px var(--glow)); } }
.brand span.accent { color: var(--blurple-2); }
.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav-links a {
  position: relative; padding: 9px 14px; color: var(--muted);
  font-weight: 600; font-size: .93rem; transition: .2s;
}
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--blurple); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a:not(.btn):hover::after,
.nav-links a.active:not(.btn)::after { transform: scaleX(1); }
.nav-links a.active:not(.btn) { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.6rem; cursor: pointer; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  padding: 13px 24px; border: 1px solid transparent; cursor: pointer;
  font-family: var(--head); font-weight: 600; font-size: .98rem; letter-spacing: .5px;
  transition: .22s; position: relative;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.btn-primary {
  background: linear-gradient(120deg, var(--blurple), var(--blurple-2));
  color: #fff; box-shadow: 0 6px 22px var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--glow); filter: brightness(1.08); }
.btn-ghost { background: rgba(255,255,255,.03); color: var(--text); border-color: var(--line-solid); }
.btn-ghost:hover { border-color: var(--blurple); color: #fff; box-shadow: 0 0 18px var(--glow); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-primary.pulse { animation: btnPulse 2.6s ease-in-out infinite; }
@keyframes btnPulse { 0%,100%{ box-shadow:0 6px 22px var(--glow);} 50%{ box-shadow:0 6px 34px var(--glow);} }

/* ===================== SCI-FI PANEL ===================== */
.panel, .card, .auth-card, .summary, .order-mini, .rating-summary, .pkg, .feat, .pay-tab {
  position: relative;
  background:
    linear-gradient(180deg, rgba(56,42,32,.92), rgba(38,29,24,.94));
  border: 1px solid var(--line-solid);
}
/* corner bracket accents */
.card, .auth-card, .summary, .order-mini, .panel {
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.card::before {
  content: ''; position: absolute; top: 10px; left: 10px; width: 16px; height: 16px;
  border-top: 2px solid var(--blurple); border-left: 2px solid var(--blurple);
  opacity: .35; transition: .25s;
}
.card::after {
  content: ''; position: absolute; bottom: 10px; right: 10px; width: 16px; height: 16px;
  border-bottom: 2px solid var(--blurple); border-right: 2px solid var(--blurple);
  opacity: .35; transition: .25s;
}
.card:hover::before, .card:hover::after { opacity: 1; width: 22px; height: 22px; }

/* ===================== HERO ===================== */
.hero { padding: 96px 0 72px; position: relative; }
.hero .container { position: relative; z-index: 2; }
/* perspective grid floor */
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 320px; z-index: 0;
  background-image:
    linear-gradient(rgba(242,104,60,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,104,60,.12) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(420px) rotateX(62deg); transform-origin: bottom;
  mask: linear-gradient(transparent, #000 70%); -webkit-mask: linear-gradient(transparent, #000 70%);
  opacity: .5;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px;
  background: rgba(88,101,242,.1); border: 1px solid var(--blurple);
  color: var(--blurple-2); font-weight: 600; font-size: .76rem; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 24px;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: blink 1.6s infinite; }
@keyframes blink { 0%,100%{ opacity:1;} 50%{ opacity:.3;} }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 4.1rem); line-height: 1.05; font-weight: 700; }
.hero h1 .grad {
  background: linear-gradient(110deg, var(--blurple-2), var(--fuchsia) 70%, #ffb3e6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { color: var(--muted); font-size: 1.18rem; max-width: 560px; margin: 22px 0 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero side: floating "bot card" HUD */
.hero-card {
  padding: 22px; border-radius: 0;
  clip-path: polygon(16px 0,100% 0,100% calc(100% - 16px),calc(100% - 16px) 100%,0 100%,0 16px);
  box-shadow: 0 30px 60px rgba(0,0,0,.5), 0 0 0 1px var(--line-solid);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
.hero-card .hc-top { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line-solid); }
.hero-card .hc-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--blurple),var(--fuchsia)); display:grid; place-items:center; font-size:22px; overflow:hidden; }
.hero-card .hc-av img { width: 100%; height: 100%; object-fit: cover; }
.hero-card .hc-name { font-family: var(--head); font-weight: 600; }
.hero-card .hc-status { color: var(--green); font-size: .78rem; display:flex; align-items:center; gap:6px; }
.hero-card .hc-status::before { content:''; width:7px;height:7px;border-radius:50%;background:var(--green);box-shadow:0 0 8px var(--green); }
.hc-line { display: flex; align-items: center; gap: 10px; padding: 11px 0; font-size: .9rem; color: var(--muted); border-bottom: 1px dashed var(--line-solid); }
.hc-line .ok { color: var(--green); font-family: var(--head); }
/* XP bar */
.xp { margin-top: 16px; }
.xp .xp-label { display:flex; justify-content:space-between; font-size:.74rem; color:var(--muted); font-family:var(--head); letter-spacing:1px; }
.xp .xp-track { height: 9px; background: var(--bg); border:1px solid var(--line-solid); margin-top:7px; overflow:hidden; }
.xp .xp-fill { height:100%; width:0; background: linear-gradient(90deg,var(--blurple),var(--green)); box-shadow:0 0 12px var(--glow); animation: xpfill 2.4s ease-out forwards .3s; }
@keyframes xpfill { to { width: 78%; } }

/* HUD stats strip */
.hero-stats { display: flex; gap: 14px; margin-top: 54px; flex-wrap: wrap; }
.stat {
  flex: 1; min-width: 130px; padding: 16px 18px;
  background: linear-gradient(180deg, rgba(56,42,32,.7), rgba(38,29,24,.7));
  border: 1px solid var(--line-solid); border-left: 3px solid var(--blurple);
}
.stat strong { display: block; font-size: 1.9rem; color: #fff; font-weight: 700; }
.stat span { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===================== SECTIONS ===================== */
.section { padding: 70px 0; position: relative; }
.section.alt { background: linear-gradient(180deg, transparent, rgba(38,29,24,.6), transparent); border-block: 1px solid var(--line); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 700; }
.section-head h2 .grad { background: linear-gradient(110deg,var(--blurple-2),var(--fuchsia)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

/* ===================== CARDS GRID ===================== */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { padding: 26px; transition: transform .25s, border-color .25s, box-shadow .25s; }
.card:hover { transform: translateY(-6px); border-color: var(--blurple); box-shadow: 0 22px 50px rgba(0,0,0,.5); }
.card .ico {
  width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 16px;
  background: rgba(88,101,242,.1); border: 1px solid var(--blurple);
  clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
}
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; }
.card .num { position:absolute; top:18px; right:20px; font-family:var(--head); font-size:1.1rem; color:var(--line-solid); }

/* numbered step accent */
.step .ico { background: rgba(87,242,135,.08); border-color: var(--green); color: var(--green); font-family: var(--head); font-weight:700; }

/* ===================== FOOTER ===================== */
.footer { border-top: 1px solid var(--line); margin-top: 50px; padding: 40px 0; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer a:hover { color: var(--blurple-2); }

/* ===================== REVIEWS ===================== */
.rating-summary {
  display: flex; align-items: center; gap: 34px; flex-wrap: wrap; justify-content: center;
  padding: 32px; margin-bottom: 42px;
  clip-path: polygon(16px 0,100% 0,100% calc(100% - 16px),calc(100% - 16px) 100%,0 100%,0 16px);
}
.rating-big { font-size: 3.6rem; font-weight: 700; line-height: 1; color:#fff; }
.rating-summary .stars { font-size: 1.4rem; }
.stars { color: var(--yellow); letter-spacing: 2px; }
.stars .empty { color: #2c3050; }
.review-card { display: flex; flex-direction: column; gap: 13px; }
.review-card .quote { font-size: 2.4rem; color: var(--blurple); line-height: .4; font-family: var(--head); opacity:.6; }
.review-head { display: flex; align-items: center; gap: 13px; }
.avatar { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-weight: 700; color: #fff; flex-shrink: 0; font-family: var(--head); }
.review-head .meta strong { display: block; font-family: var(--head); font-weight: 600; }
.review-head .meta span { color: var(--muted); font-size: .8rem; }
.review-card .body { color: var(--text); opacity: .92; }
.verified { color: var(--green); font-size: .72rem; font-weight: 600; letter-spacing: .5px; }
.star-pick { font-size: 1.7rem; letter-spacing: 5px; cursor: pointer; user-select: none; line-height: 1.2; }
.star-pick span { color: #2c3050; transition: color .12s; }
.star-pick span.on { color: var(--yellow); }
.review-card.mine { border-color: var(--green); box-shadow: 0 0 0 1px var(--green) inset, 0 0 18px var(--glow-green); }
.field input[readonly] { opacity: .8; cursor: not-allowed; border-style: dashed; }

/* reviews toolbar */
.rv-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.rv-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.rv-chip {
  font-family: var(--head); font-size: .82rem; font-weight: 600; padding: 8px 14px; cursor: pointer; transition: .18s;
  background: var(--panel); border: 1px solid var(--line-solid); color: var(--muted);
  clip-path: polygon(7px 0,100% 0,100% calc(100% - 7px),calc(100% - 7px) 100%,0 100%,0 7px);
}
.rv-chip:hover { color: #fff; border-color: var(--blurple); }
.rv-chip.active { background: var(--blurple); color: #fff; border-color: var(--blurple); box-shadow: 0 0 14px var(--glow); }
.rv-chip .rv-n {
  display: inline-block; min-width: 18px; margin-left: 4px; padding: 1px 6px; font-size: .72rem;
  background: rgba(255,255,255,.06); border-radius: 999px; color: var(--muted);
}
.rv-chip:hover .rv-n { color: #fff; }
.rv-chip.active .rv-n { background: rgba(0,0,0,.22); color: #fff; }
.rv-sort {
  font-family: var(--body); font-size: .9rem; padding: 9px 12px; cursor: pointer;
  background: var(--bg); color: var(--text); border: 1px solid var(--line-solid);
  clip-path: polygon(7px 0,100% 0,100% calc(100% - 7px),calc(100% - 7px) 100%,0 100%,0 7px);
}
.rv-sort:focus { outline: none; border-color: var(--blurple); }

/* topbar dismiss */
.tb-close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,.16); color: #fff; border: 0; border-radius: 6px; font-size: .78rem; line-height: 1; z-index: 2;
}
.tb-close:hover { background: rgba(255,255,255,.34); }

/* ===================== AUTH / FORMS ===================== */
.auth-wrap { display: grid; place-items: center; padding: 64px 0; }
.auth-card { width: min(440px, 92vw); padding: 40px; box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.auth-card h2 { text-align: center; font-size: 1.7rem; }
.auth-card .sub { text-align: center; color: var(--muted); margin: 8px 0 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--head); font-weight: 500; font-size: .82rem; letter-spacing:.5px; text-transform:uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px; background: var(--bg); color: var(--text);
  border: 1px solid var(--line-solid); font-size: 1rem; font-family: var(--body); transition: .2s;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blurple); box-shadow: 0 0 0 3px var(--glow);
}
.social-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 11px;
  padding: 13px; border: 1px solid var(--line-solid); background: #fff; color: #1f2236;
  font-family: var(--head); font-weight: 600; cursor: pointer; font-size: 1rem; transition: .2s;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}
.social-btn:hover { filter: brightness(.95); transform: translateY(-1px); }
.social-btn.dark { background: var(--panel-2); color: var(--text); }
.social-btn.dark:hover { border-color: var(--blurple); }
.divider { display: flex; align-items: center; gap: 14px; color: var(--muted); margin: 22px 0; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; font-family: var(--head); }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--line-solid); }
.auth-foot { text-align: center; color: var(--muted); margin-top: 20px; font-size: .92rem; }
.auth-foot a { color: var(--blurple-2); font-weight: 700; }
.g-icon { width: 20px; height: 20px; }

/* ===================== ORDER / CALCULATOR ===================== */
.order-layout { display: grid; grid-template-columns: 1fr 360px; gap: 30px; align-items: start; }
.packages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 38px; }
.pkg {
  padding: 20px; cursor: pointer; transition: .22s; text-align: center;
  clip-path: polygon(12px 0,100% 0,100% calc(100% - 12px),calc(100% - 12px) 100%,0 100%,0 12px);
}
.pkg:hover { border-color: var(--blurple); transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,.45); }
.pkg.popular { border-color: var(--blurple); box-shadow: 0 0 0 1px var(--blurple) inset, 0 0 26px var(--glow); }
.pkg .tag { font-size: .64rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blurple-2); font-weight: 700; }
.pkg.popular .tag { color: var(--fuchsia); }
.pkg h4 { font-size: 1.15rem; margin: 7px 0; }
.pkg .price { font-size: 1.55rem; font-weight: 700; font-family: var(--head); color:#fff; }
.pkg .price small { font-size: .78rem; color: var(--muted); font-weight: 600; }
.pkg ul { list-style: none; text-align: left; margin-top: 12px; font-size: .8rem; color: var(--muted); }
.pkg ul li { padding: 3px 0; }

.order-callout {
  background: linear-gradient(125deg, rgba(242,104,60,.12), rgba(254,231,92,.08));
  border: 1px solid var(--blurple); border-left: 4px solid var(--blurple);
  padding: 16px 18px; margin-bottom: 16px; font-size: .92rem;
  clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
}
.order-callout strong { color: var(--text); }
.order-callout p { color: var(--muted); margin-top: 8px; line-height: 1.55; }
.order-callout u { text-decoration-color: var(--blurple-2); text-underline-offset: 2px; }

.feature-group { margin-top: 30px; }
.feature-group h3 { margin-bottom: 16px; font-size: 1.05rem; font-family: var(--head); text-transform: uppercase; letter-spacing: 1.5px; display: flex; align-items: center; gap: 11px; color: var(--blurple-2); }
.feature-group h3 .bar { width: 22px; height: 3px; background: var(--blurple); box-shadow: 0 0 10px var(--glow); }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feat {
  cursor: pointer; transition: .18s; display: flex; gap: 13px; padding: 16px;
  clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
}
.feat:hover { border-color: var(--blurple); }
.feat.checked { border-color: var(--blurple); box-shadow: 0 0 0 1px var(--blurple) inset, 0 0 18px var(--glow); }
.feat input[type=checkbox] { position: absolute; opacity: 0; pointer-events: none; }
.feat .check {
  width: 24px; height: 24px; border: 2px solid var(--line-solid); flex-shrink: 0; margin-top: 2px;
  display: grid; place-items: center; transition: .18s; color: transparent; font-size: .8rem;
  clip-path: polygon(6px 0,100% 0,100% calc(100% - 6px),calc(100% - 6px) 100%,0 100%,0 6px);
}
.feat.checked .check { background: var(--blurple); border-color: var(--blurple); color: #fff; box-shadow: 0 0 12px var(--glow); }
.feat .info { flex: 1; }
.feat .info .top { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.feat .info .name { font-weight: 600; font-family: var(--head); }
.feat .info .cost { color: var(--green); font-weight: 700; white-space: nowrap; font-size: .9rem; font-family: var(--head); }
.feat .info .desc { color: var(--muted); font-size: .84rem; margin-top: 5px; }
.qty-row { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.qty-row input { width: 64px; padding: 6px 8px; background: var(--bg); border: 1px solid var(--line-solid); color: var(--text); }
.qty-row label { font-size: .8rem; color: var(--muted); }

/* Summary sidebar */
.summary { position: sticky; top: 88px; padding: 24px; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.summary h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blurple-2); margin-bottom: 6px; }
.summary .reco { background: var(--bg); border: 1px solid var(--line-solid); border-left: 3px solid var(--blurple); padding: 12px 14px; margin: 14px 0; font-size: .88rem; }
.summary .reco strong { color: var(--blurple-2); font-family: var(--head); }
#summaryList { list-style: none; max-height: 260px; overflow-y: auto; margin: 8px 0; }
#summaryList li { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--line-solid); font-size: .88rem; }
#summaryList li .pc { color: var(--green); font-weight: 700; white-space: nowrap; font-family: var(--head); }
.summary .empty-note { color: var(--muted); font-size: .88rem; padding: 14px 0; text-align: center; }
.total-row { display: flex; justify-content: space-between; align-items: baseline; margin: 16px 0; padding-top: 16px; border-top: 1px solid var(--line-solid); }
.total-row .lbl { color: var(--muted); text-transform: uppercase; font-size: .8rem; letter-spacing: 1px; font-family: var(--head); }
.total-row .amt { font-size: 2rem; font-weight: 700; color: #fff; }
.total-row .amt small { font-size: 1rem; color: var(--muted); }
.note-small { color: var(--muted); font-size: .76rem; margin-top: 10px; text-align: center; }

/* ===================== CHECKOUT UPSELL ===================== */
.addon-card {
  position: relative; display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
  padding: 24px 26px; margin-bottom: 22px; cursor: pointer; overflow: hidden;
  background: linear-gradient(125deg, rgba(242,104,60,.16), rgba(255,92,154,.12) 60%, rgba(245,166,35,.12));
  border: 2px solid var(--blurple);
  box-shadow: 0 0 0 1px var(--blurple) inset, 0 14px 40px var(--glow);
  clip-path: polygon(16px 0,100% 0,100% calc(100% - 16px),calc(100% - 16px) 100%,0 100%,0 16px);
  transition: .22s; animation: addonPulse 2.8s ease-in-out infinite;
}
@keyframes addonPulse { 0%,100%{ box-shadow: 0 0 0 1px var(--blurple) inset, 0 14px 40px var(--glow);} 50%{ box-shadow: 0 0 0 1px var(--blurple) inset, 0 14px 56px var(--glow);} }
.addon-card:hover { transform: translateY(-3px); }
.addon-card input[type=checkbox] { position: absolute; opacity: 0; pointer-events: none; }
.addon-ribbon {
  position: absolute; top: 14px; right: -38px; transform: rotate(45deg);
  background: var(--blurple); color: #fff; font-family: var(--head); font-weight: 700;
  font-size: .7rem; letter-spacing: 1px; padding: 5px 44px; box-shadow: 0 4px 12px rgba(0,0,0,.35);
}
.addon-main { flex: 1; min-width: 240px; }
.addon-head { display: flex; align-items: center; gap: 12px; }
.addon-head h3 { font-size: 1.45rem; font-family: var(--head); }
.addon-box {
  width: 30px; height: 30px; flex-shrink: 0; display: grid; place-items: center; font-size: 1rem;
  border: 2px solid var(--blurple); color: transparent; transition: .18s;
  clip-path: polygon(7px 0,100% 0,100% calc(100% - 7px),calc(100% - 7px) 100%,0 100%,0 7px);
}
.addon-card.on .addon-box { background: var(--blurple); color: #fff; box-shadow: 0 0 14px var(--glow); }
.addon-main p { color: var(--text); opacity: .9; margin: 10px 0; font-size: .95rem; }
.addon-perks { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.addon-perks li { font-size: .86rem; color: var(--muted); font-weight: 600; }
.addon-side { text-align: center; }
.addon-price { font-family: var(--head); font-weight: 700; font-size: 2.3rem; color: #fff; line-height: 1; }
.addon-price span { font-size: 1rem; color: var(--muted); font-weight: 600; }
.addon-cta {
  margin-top: 12px; font-family: var(--head); font-weight: 700; font-size: .9rem; padding: 10px 20px;
  background: var(--blurple); color: #fff; display: inline-block; transition: .2s;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}
.addon-card.on .addon-cta { background: var(--green); }
.addon-card.on .addon-cta::before { content: '✓ '; }
.recur-note {
  display: flex; align-items: center; gap: 7px; margin-top: 10px; padding: 10px 12px;
  background: rgba(242,104,60,.1); border: 1px solid var(--blurple); font-size: .82rem; color: var(--blurple-2);
  font-weight: 600;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}

/* ===================== CHECKOUT ===================== */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }
.pay-tabs { display: flex; gap: 10px; margin-bottom: 22px; }
.pay-tab {
  flex: 1; padding: 14px; cursor: pointer; font-family: var(--head); font-weight: 600; transition: .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
}
.pay-tab.active { border-color: var(--blurple); box-shadow: 0 0 0 1px var(--blurple) inset, 0 0 18px var(--glow); }
.card-type { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; flex-wrap: wrap; }
.card-type .lbl { font-family: var(--head); font-size: .76rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-right: 2px; }
.field label .opt { text-transform: none; letter-spacing: 0; color: var(--blurple-2); font-weight: 600; }
.ctype {
  font-family: var(--head); font-weight: 600; font-size: .85rem; padding: 8px 16px; cursor: pointer; transition: .18s;
  background: var(--panel); border: 1px solid var(--line-solid); color: var(--muted);
  clip-path: polygon(7px 0,100% 0,100% calc(100% - 7px),calc(100% - 7px) 100%,0 100%,0 7px);
}
.ctype:hover { color: #fff; border-color: var(--blurple); }
.ctype.active { background: var(--blurple); color: #fff; border-color: var(--blurple); box-shadow: 0 0 14px var(--glow); }

.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.paypal-box { text-align: center; padding: 30px; background: var(--bg); border: 1px dashed var(--line-solid); }
.order-mini { padding: 24px; position: sticky; top: 88px; }
.order-mini h3 { margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blurple-2); font-size: 1.05rem; }
.order-mini ul { list-style: none; }
.order-mini li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line-solid); font-size: .88rem; }
.badge-secure { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-size: .84rem; font-weight: 600; margin-top: 14px; font-family: var(--head); }

/* ===================== OWNER DASHBOARD ===================== */
.owner-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 26px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line-solid); }
.owner-table { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 760px; }
.owner-table th, .owner-table td { text-align: left; padding: 11px 13px; border-bottom: 1px solid var(--line-solid); white-space: nowrap; }
.owner-table th { font-family: var(--head); text-transform: uppercase; letter-spacing: 1px; font-size: .7rem; color: var(--blurple-2); background: var(--bg-2); position: sticky; top: 0; }
.owner-table tbody tr:hover td { background: rgba(242,104,60,.05); }
.owner-table .amt { font-family: var(--head); color: #fff; }
.owner-table .muted { color: var(--muted); }
.pill { display: inline-block; padding: 2px 9px; font-size: .7rem; font-weight: 700; font-family: var(--head);
  clip-path: polygon(5px 0,100% 0,100% calc(100% - 5px),calc(100% - 5px) 100%,0 100%,0 5px); }
.pill.rev  { background: rgba(245,166,35,.18); color: var(--green); }
.pill.host { background: rgba(87,242,135,.16); color: #57F287; }
.pill.none { color: var(--muted); }
.owner-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: space-between; margin-bottom: 18px; }

/* owner sub-navigation (Orders / Analytics) */
.owner-subnav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.owner-subnav a {
  font-family: var(--head); font-weight: 600; font-size: .85rem; padding: 9px 16px; color: var(--muted);
  background: var(--panel); border: 1px solid var(--line-solid); transition: .18s;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}
.owner-subnav a:hover { color: #fff; border-color: var(--blurple); }
.owner-subnav a.active { background: var(--blurple); color: #fff; border-color: var(--blurple); box-shadow: 0 0 14px var(--glow); }

/* ===================== ANALYTICS ===================== */
.an-chart { display: flex; align-items: flex-end; gap: 6px; height: 200px; padding: 18px 6px 0; overflow-x: auto; }
.an-col { flex: 1; min-width: 22px; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.an-bars { display: flex; align-items: flex-end; gap: 3px; height: 100%; width: 100%; justify-content: center; }
.an-bar { width: 9px; border-radius: 3px 3px 0 0; transition: height .5s cubic-bezier(.2,.7,.2,1); min-height: 2px; }
.an-bar.v { background: linear-gradient(180deg, var(--blurple-2), var(--blurple)); box-shadow: 0 0 10px var(--glow); }
.an-bar.p { background: linear-gradient(180deg, #ffd98a, var(--green)); }
.an-col .an-x { font-size: .62rem; color: var(--muted); font-family: var(--head); white-space: nowrap; }
.an-legend { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 14px; font-size: .82rem; color: var(--muted); }
.an-legend span { display: inline-flex; align-items: center; gap: 7px; }
.an-dot { width: 12px; height: 12px; border-radius: 3px; }
.an-dot.v { background: var(--blurple); }
.an-dot.p { background: var(--green); }
.an-funnel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 4px; }
.an-step { padding: 16px; text-align: center; border: 1px solid var(--line-solid); border-top: 3px solid var(--blurple); background: var(--bg-2); }
.an-step strong { display: block; font-family: var(--head); font-size: 1.7rem; color: #fff; }
.an-step span { color: var(--muted); font-size: .8rem; }
.an-step .rate { color: var(--green); font-size: .78rem; font-weight: 700; font-family: var(--head); }

/* ===================== PROFILE ===================== */
.pf-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.pf-tab {
  font-family: var(--head); font-weight: 600; font-size: .9rem; padding: 10px 18px; cursor: pointer; transition: .18s;
  background: var(--panel); border: 1px solid var(--line-solid); color: var(--muted);
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}
.pf-tab:hover { color: #fff; border-color: var(--blurple); }
.pf-tab.active { background: var(--blurple); color: #fff; border-color: var(--blurple); box-shadow: 0 0 14px var(--glow); }
.pf-tab .pf-badge { display: inline-block; min-width: 18px; padding: 0 6px; margin-left: 6px; font-size: .72rem; background: var(--fuchsia); color: #fff; border-radius: 999px; }
.pf-pane { display: none; }
.pf-pane.active { display: block; }

.pf-avatar-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 22px; }
.pf-avatar { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; border: 2px solid var(--line-solid); background: var(--bg-2); display: grid; place-items: center; font-family: var(--head); font-size: 2rem; color: #fff; overflow: hidden; }
.pwrap-eye { position: relative; }
.pwrap-eye input { padding-right: 42px; }
.pwd-toggle { position: absolute; right: 6px; bottom: 7px; background: none; border: 0; cursor: pointer; color: var(--muted); font-size: 1.1rem; line-height: 1; padding: 6px; }
.pwd-toggle:hover { color: var(--blurple-2); }

/* chat */
.chat-box { display: flex; flex-direction: column; height: 420px; border: 1px solid var(--line-solid); background: var(--bg); }
.chat-log { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 78%; padding: 10px 14px; font-size: .92rem; line-height: 1.45; word-wrap: break-word;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px); }
.chat-msg.them { align-self: flex-start; background: var(--panel-2); border: 1px solid var(--line-solid); }
.chat-msg.me { align-self: flex-end; background: linear-gradient(120deg, var(--blurple), var(--blurple-2)); color: #fff; }
.chat-msg .t { display: block; font-size: .68rem; opacity: .7; margin-top: 4px; }
.chat-empty { color: var(--muted); text-align: center; margin: auto; font-size: .9rem; }
.chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line-solid); }
.chat-input input { flex: 1; padding: 11px 13px; background: var(--bg-2); color: var(--text); border: 1px solid var(--line-solid); }
.chat-input input:focus { outline: none; border-color: var(--blurple); }
.chat-layout { display: grid; grid-template-columns: 260px 1fr; gap: 0; border: 1px solid var(--line-solid); height: 460px; }
.chat-threads { border-right: 1px solid var(--line-solid); overflow-y: auto; background: var(--bg); }
.chat-thread { display: flex; gap: 10px; align-items: center; padding: 12px 14px; cursor: pointer; border-bottom: 1px solid var(--line-solid); transition: .15s; }
.chat-thread:hover, .chat-thread.active { background: rgba(242,104,60,.08); }
.chat-thread .ta { width: 38px; height: 38px; border-radius: 50%; background: var(--panel-2); display: grid; place-items: center; font-family: var(--head); font-weight: 700; overflow: hidden; flex-shrink: 0; }
.chat-thread .ta img { width: 100%; height: 100%; object-fit: cover; }
.chat-thread .ti { flex: 1; min-width: 0; }
.chat-thread .ti strong { display: block; font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-thread .ti span { color: var(--muted); font-size: .76rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.chat-thread .tu { background: var(--fuchsia); color: #fff; font-size: .68rem; min-width: 18px; height: 18px; border-radius: 999px; display: grid; place-items: center; padding: 0 5px; }
.chat-right { display: flex; flex-direction: column; min-width: 0; }
.danger-zone { border: 1px solid var(--red); border-left: 4px solid var(--red); padding: 18px; margin-top: 22px; }
.danger-zone h4 { color: var(--red); font-family: var(--head); margin-bottom: 8px; }
.btn-danger { background: var(--red); color: #fff; border: 0; }
.btn-danger:hover { filter: brightness(1.1); box-shadow: 0 0 18px rgba(237,66,69,.5); }
.set-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line-solid); flex-wrap: wrap; }
.set-row .lab strong { display: block; }
.set-row .lab span { color: var(--muted); font-size: .84rem; }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .sl { position: absolute; inset: 0; background: var(--panel-2); border: 1px solid var(--line-solid); border-radius: 999px; cursor: pointer; transition: .2s; }
.switch .sl::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: var(--muted); border-radius: 50%; transition: .2s; }
.switch input:checked + .sl { background: var(--blurple); border-color: var(--blurple); }
.switch input:checked + .sl::before { transform: translateX(20px); background: #fff; }

/* nav profile chip */
.nav-profile { display: inline-flex; align-items: center; gap: 8px; }
.nav-profile .npa { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; background: var(--panel-2); display: grid; place-items: center; font-family: var(--head); font-size: .8rem; font-weight: 700; overflow: hidden; }
.nav-profile .npa img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ===================== TOAST ===================== */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(120px);
  background: linear-gradient(120deg,var(--blurple),var(--blurple-2)); color: #fff;
  padding: 14px 24px; font-family: var(--head); font-weight: 600; box-shadow: 0 14px 40px var(--glow);
  z-index: 200; transition: transform .4s cubic-bezier(.2,.9,.3,1.3); max-width: 90vw;
  clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .order-layout, .checkout-layout, .hero-grid { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .summary, .order-mini { position: static; }
  .packages { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column;
    background: var(--bg-2); border-bottom: 1px solid var(--line-solid); padding: 12px; }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2, .feat-grid, .card-row, .packages { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, body::before { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   POLISH & MOBILE-FIRST REFINEMENTS
   Accessibility, touch ergonomics, delightful micro-interactions, and
   tighter small-screen layouts. Kept at the end so it layers cleanly.
   =================================================================== */

/* media never overflows its column on small screens */
img, video { max-width: 100%; height: auto; }

/* anchor jumps clear the sticky nav */
html { scroll-padding-top: 84px; }

/* keyboard focus ring (doesn't show on mouse click) */
:focus-visible {
  outline: 2px solid var(--blurple-2);
  outline-offset: 2px;
  border-radius: 2px;
}
a:focus-visible, .btn:focus-visible, .rv-chip:focus-visible, .ctype:focus-visible, .pay-tab:focus-visible {
  box-shadow: 0 0 0 3px var(--glow);
}

/* warm selection */
::selection { background: var(--blurple); color: #fff; }

/* tactile press feedback on tappable controls */
.btn:active, .social-btn:active, .rv-chip:active, .ctype:active, .pay-tab:active, .pkg:active, .feat:active { transform: translateY(1px) scale(.99); }

/* comfortable touch targets on touch devices */
@media (hover: none) and (pointer: coarse) {
  .nav-links a, .btn, .social-btn, .rv-chip, .ctype, .rv-sort { min-height: 44px; }
  /* hover lifts feel sticky on touch — neutralize them */
  .card:hover, .pkg:hover, .feat:hover, .addon-card:hover, .btn-primary:hover, .hero-card { transform: none; }
}

/* nicer mobile menu: animate in + spacing */
@media (max-width: 680px) {
  .nav-links { gap: 2px; box-shadow: 0 18px 40px rgba(0,0,0,.5); animation: navDrop .22s ease; }
  .nav-links a { padding: 13px 12px; border-radius: 8px; }
  .nav-links a:hover, .nav-links a:active { background: rgba(242,104,60,.1); }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-toggle { font-size: 1.7rem; padding: 4px 8px; }
}
@keyframes navDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* owner stats: never crush into 4 tiny columns on phones */
@media (max-width: 760px) {
  .owner-stats { grid-template-columns: repeat(2, 1fr); }
}

/* tablet & down */
@media (max-width: 760px) {
  .section { padding: 52px 0; }
  .hero { padding: 64px 0 52px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero p.lead { font-size: 1.06rem; }
  .hero-stats { margin-top: 38px; }
  .rating-summary { gap: 22px; padding: 24px; }
}

/* phones */
@media (max-width: 560px) {
  .container { width: 92vw; }
  .topbar { font-size: .8rem; gap: 8px; padding: 8px 12px; }
  .topbar .tb-text svg { width: 17px; height: 17px; }
  .section { padding: 44px 0; }
  .section-head { margin-bottom: 32px; }

  /* hero CTAs go full-width and stack for easy thumbing */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-stats .stat { min-width: 0; flex-basis: calc(50% - 7px); padding: 13px 14px; }
  .hero-stats .stat strong { font-size: 1.5rem; }

  /* upsell cards read top-to-bottom; price + CTA span the width */
  .addon-card { padding: 20px; gap: 14px; }
  .addon-head h3 { font-size: 1.2rem; }
  .addon-side { width: 100%; }
  .addon-cta { display: block; width: 100%; }
  .addon-ribbon { font-size: .62rem; padding: 4px 40px; }

  /* tighter cards / forms */
  .card, .auth-card, .summary, .order-mini, .order-mini, .panel { padding: 20px; }
  .auth-card { padding: 26px 22px; }
  .total-row .amt { font-size: 1.6rem; }
  .rating-big { font-size: 3rem; }

  /* stop sci-fi corner clips from eating content padding on tiny widths */
  .btn { padding: 13px 18px; }
  .pay-tabs { flex-direction: column; }
  .owner-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
}

@media (max-width: 560px) {
  .an-funnel { grid-template-columns: 1fr; }
  .chat-layout { grid-template-columns: 1fr; height: auto; }
  .chat-threads { max-height: 200px; border-right: 0; border-bottom: 1px solid var(--line-solid); }
  .chat-box { height: 70vh; }
}

/* very small phones */
@media (max-width: 380px) {
  .hero-stats .stat { flex-basis: 100%; }
  .brand { font-size: 1.12rem; }
  .brand .logo { width: 38px; height: 38px; }
}
