:root {
  --bg: #f7f9fb;
  --ink: #13202b;
  --muted: #5d6b78;
  --panel: #ffffff;
  --line: #dbe4eb;
  --teal: #0f9f9a;
  --teal-dark: #087670;
  --amber: #f2a93b;
  --graphite: #25313d;
  --shadow: 0 24px 70px rgba(20, 35, 50, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 40px;
  background: rgba(247, 249, 251, 0.88);
  border-bottom: 1px solid rgba(219, 228, 235, 0.8);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-actions,
.hero-actions,
.trust-band,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--graphite);
  border-radius: 8px;
}

.nav-links {
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.header-actions {
  gap: 16px;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--teal-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(8, 118, 112, 0.2);
}

.button:hover {
  background: #065f5b;
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
}

.button-secondary {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-secondary:hover {
  background: #eef4f7;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 44px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 54px 0 42px;
}

.hero h1,
.contact-hero h1,
.section h2,
.cta h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(46px, 6vw, 78px);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: end;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 46px;
}

.contact-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
}

.contact-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-summary {
  display: grid;
  gap: 12px;
}

.contact-summary div {
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-summary span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-summary strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin: 38px 0 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  font-size: 26px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #dfe9ee;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.status-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(242, 169, 59, 0.18);
}

.trust-band {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  color: var(--muted);
  background: white;
  border-block: 1px solid var(--line);
  font-weight: 800;
}

.trust-band span {
  padding: 10px 16px;
  background: #f2f6f8;
  border-radius: 8px;
}

.section,
.cta,
.contact-layout {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 620px;
}

.section h2,
.cta h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.section-heading p:not(.eyebrow),
.split p,
.price-card p,
.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.price-card,
.dashboard,
.faq details,
.cta,
.contact-form,
.contact-sidebar article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding-top: 28px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.contact-sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-sidebar article {
  padding: 24px;
}

.contact-sidebar h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.contact-sidebar p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-card,
.price-card {
  padding: 26px;
}

.feature-card h3,
.price-card h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--graphite);
  border-radius: 8px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 52px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--graphite);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--teal-dark);
}

.dashboard {
  padding: 26px;
  box-shadow: var(--shadow);
}

.dashboard-top,
.request-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-top {
  align-items: baseline;
  margin-bottom: 18px;
}

.dashboard-top span {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-top strong {
  font-size: 48px;
}

.meter {
  height: 12px;
  overflow: hidden;
  background: #e8eff3;
  border-radius: 999px;
  margin-bottom: 18px;
}

.meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.request-row {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.request-row strong {
  color: var(--ink);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
}

.price-card .button {
  margin-top: auto;
}

.featured {
  border-color: rgba(15, 159, 154, 0.45);
  box-shadow: var(--shadow);
}

.badge {
  width: max-content;
  margin: 0;
  padding: 6px 10px;
  color: var(--teal-dark);
  background: #e6f7f6;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.price {
  margin: 12px 0;
  color: var(--ink) !important;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
}

.price span {
  color: var(--muted);
  font-size: 15px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 32px;
  align-items: center;
  padding: 36px;
  margin-bottom: 78px;
  background: var(--graphite);
  color: white;
}

.cta .eyebrow {
  color: #7ee0dc;
}

.signup-form {
  display: grid;
  gap: 14px;
}

.signup-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.signup-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 28px 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.dashboard-body {
  background: #eef3f6;
}

.auth-body {
  min-height: 100vh;
  background: #f2f6f8;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: 44px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 48px 0;
}

.auth-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 70px);
  line-height: 1.03;
  letter-spacing: 0;
}

.auth-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.auth-benefits {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin-top: 30px;
}

.auth-benefits article {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.auth-benefits span {
  color: var(--muted);
  line-height: 1.55;
}

.auth-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.register-form {
  display: grid;
  gap: 16px;
}

.register-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-weight: 800;
}

.register-form input,
.register-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.consent-row {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 13px;
  line-height: 1.5;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--teal-dark);
}

.auth-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.auth-note a {
  color: var(--teal-dark);
  font-weight: 800;
}

.auth-shell-compact {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 480px);
}

.login-form {
  display: grid;
  gap: 16px;
}

.auth-subform {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.login-form label,
.auth-subform label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-weight: 800;
}

.login-form input,
.auth-subform input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.form-message.is-error {
  color: #a13f25;
}

.form-message.is-success {
  color: var(--teal-dark);
}

.dev-verification-link {
  margin: 0;
  padding: 12px;
  overflow-wrap: anywhere;
  color: var(--graphite);
  background: #eef7f7;
  border: 1px solid rgba(15, 159, 154, 0.3);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.dev-verification-link a {
  color: var(--teal-dark);
  font-weight: 800;
}

.dashboard-header {
  background: rgba(255, 255, 255, 0.92);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.dashboard-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  align-content: start;
  height: max-content;
}

.dashboard-sidebar a {
  padding: 13px 14px;
  color: var(--muted);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.dashboard-sidebar a.is-active,
.dashboard-sidebar a:hover {
  color: white;
  background: var(--graphite);
  border-color: var(--graphite);
}

.dashboard-main {
  display: grid;
  gap: 20px;
}

.dashboard-title {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 18px 0 8px;
}

.dashboard-title h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-card,
.dashboard-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric-card {
  padding: 20px;
}

.metric-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: 32px;
}

.metric-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.dashboard-panel {
  padding: 24px;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.panel-heading h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.status-pill,
.state {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-pill {
  color: var(--teal-dark);
  background: #e6f7f6;
}

.deposit-layout,
.ticket-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 20px;
}

.deposit-form,
.order-form,
.ticket-form {
  display: grid;
  gap: 16px;
}

.deposit-form label,
.order-form label,
.ticket-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-weight: 800;
}

.deposit-form input,
.deposit-form select,
.order-form select,
.ticket-form input,
.ticket-form select,
.ticket-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.ticket-form textarea {
  min-height: 132px;
  padding-top: 13px;
  resize: vertical;
}

.wallet-box {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #f7fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.qr-placeholder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 160px;
  height: 160px;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(19, 32, 43, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(19, 32, 43, 0.08) 1px, transparent 1px),
    white;
  background-size: 16px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.qr-placeholder span {
  background: var(--graphite);
  border-radius: 4px;
}

.qr-placeholder span:nth-child(2),
.qr-placeholder span:nth-child(3) {
  background: var(--teal-dark);
}

.wallet-details {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.wallet-details code {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 12px;
  color: var(--graphite);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
}

.wallet-details p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.wallet-network {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.order-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 15px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

td {
  color: var(--graphite);
  font-size: 14px;
  font-weight: 600;
}

.state-success {
  color: #0a6f46;
  background: #e7f6ee;
}

.state-warning {
  color: #8a5a08;
  background: #fff2d9;
}

.state-muted {
  color: var(--muted);
  background: #edf2f5;
}

.ticket-list {
  display: grid;
  gap: 12px;
}

.ticket-list article {
  padding: 18px;
  background: #f7fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ticket-list h3 {
  margin: 12px 0 6px;
  font-size: 18px;
}

.ticket-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.settings-grid {
  display: grid;
  gap: 12px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px;
  background: #f7fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.toggle-row span {
  display: grid;
  gap: 5px;
}

.toggle-row small {
  color: var(--muted);
  line-height: 1.45;
}

.toggle-row input {
  width: 22px;
  height: 22px;
  accent-color: var(--teal-dark);
}

.products-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 72px;
}

.products-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 30px;
  align-items: end;
  margin-bottom: 26px;
}

.products-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

.products-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.products-summary,
.cart-panel,
.product-row {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.products-summary {
  padding: 22px;
}

.products-summary span,
.cart-footer span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.products-summary strong,
.cart-footer strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
}

.products-summary p {
  margin: 8px 0 0;
  font-size: 14px;
}

.products-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}

.products-list {
  display: grid;
  gap: 14px;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 20px;
  padding: 22px;
}

.product-main h2 {
  margin: 12px 0 8px;
  font-size: 24px;
}

.product-main p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-main small {
  display: block;
  margin-top: 12px;
  color: var(--graphite);
  font-weight: 700;
  line-height: 1.5;
}

.product-buy {
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: end;
  text-align: right;
}

.product-buy strong {
  font-size: 28px;
}

.product-buy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cart-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-items article {
  padding: 15px;
  background: #f7fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-items h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.cart-items p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cart-item {
  display: grid;
  gap: 12px;
}

.cart-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.cart-controls button {
  min-height: 34px;
  padding: 0 10px;
  color: var(--graphite);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.cart-footer {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.guest-checkout-form {
  display: grid;
  gap: 12px;
}

.guest-checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--graphite);
  font-weight: 800;
}

.guest-checkout-form input,
.guest-checkout-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.guest-payment-box {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: #eef7f7;
  border: 1px solid rgba(15, 159, 154, 0.3);
  border-radius: 8px;
}

.guest-payment-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.guest-payment-box code {
  overflow-wrap: anywhere;
  font-size: 13px;
}

.guest-payment-box p {
  margin: 0;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.5;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.category-filter button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--graphite);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.category-filter button.is-active {
  color: white;
  background: var(--graphite);
  border-color: var(--graphite);
}

.admin-product-grid,
.admin-product-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-product-lists {
  margin-top: 22px;
}

.admin-category-form,
.admin-product-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #f7fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-category-form h3,
.admin-product-form h3,
.admin-product-lists h3 {
  margin: 0;
  font-size: 18px;
}

.admin-category-form label,
.admin-product-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-weight: 800;
}

.admin-category-form input,
.admin-category-form select,
.admin-category-form textarea,
.admin-product-form input,
.admin-product-form select,
.admin-product-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.admin-category-form textarea,
.admin-product-form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.admin-mini-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.admin-mini-list button {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px;
  text-align: left;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.admin-mini-list strong {
  color: var(--ink);
  font-size: 15px;
}

.admin-mini-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 8px;
    position: sticky;
    top: 72px;
    z-index: 19;
    padding: 14px 20px 20px;
    background: rgba(247, 249, 251, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu a {
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 800;
  }

  .hero,
  .split,
  .cta,
  .contact-hero,
  .contact-layout,
  .auth-shell,
  .products-hero,
  .products-layout,
  .dashboard-shell,
  .deposit-layout,
  .ticket-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-shell {
    width: min(100% - 32px, 1120px);
  }

  .dashboard-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dashboard-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-form {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 430px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    width: min(1120px, calc(100% - 32px));
  }

  .contact-hero,
  .contact-layout,
  .auth-shell {
    width: min(1120px, calc(100% - 32px));
  }
}

@media (max-width: 560px) {
  .hero,
  .section,
  .contact-hero,
  .contact-layout,
  .auth-shell {
    width: min(100% - 32px, 1120px);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .dashboard-sidebar,
  .wallet-box,
  .product-row,
  .admin-product-grid,
  .admin-product-lists {
    grid-template-columns: 1fr;
  }

  .product-buy {
    justify-items: start;
    text-align: left;
  }

  .qr-placeholder {
    width: 140px;
    height: 140px;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 340px;
  }

  .status-panel {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
}
