/* VTM Strategy - Custom design tokens and utilities (no @tailwind - use CDN or build) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;
  --popover: 0 0% 100%;
  --popover-foreground: 222 47% 11%;
  --primary: 222 47% 11%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 14% 96%;
  --secondary-foreground: 222 47% 11%;
  --muted: 220 14% 96%;
  --muted-foreground: 220 9% 46%;
  --accent: 33 100% 50%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 220 13% 91%;
  --input: 220 13% 91%;
  --ring: 33 100% 50%;
  --radius: 0.5rem;
  --navy: 222 47% 11%;
  --navy-light: 222 30% 20%;
  /* Secondary accent: dark navy #051433 */
  --accent-navy: 221 82% 11%;
  --teal: 33 100% 50%;
  --teal-light: 33 100% 60%;
  --slate: 220 9% 46%;
  --slate-light: 220 14% 96%;
  --gradient-hero: linear-gradient(135deg, hsl(222 47% 11%) 0%, hsl(var(--accent-navy)) 50%, hsl(222 30% 20%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(33 100% 50%) 0%, hsl(33 100% 60%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(220 14% 98%) 100%);
  --gradient-section: linear-gradient(180deg, hsl(220 14% 96%) 0%, hsl(0 0% 100%) 100%);
  --gradient-section-navy: linear-gradient(180deg, hsl(var(--accent-navy) / 0.04) 0%, transparent 100%);
  --shadow-sm: 0 1px 2px 0 hsl(222 47% 11% / 0.05);
  --shadow-md: 0 4px 6px -1px hsl(222 47% 11% / 0.1), 0 2px 4px -2px hsl(222 47% 11% / 0.1);
  --shadow-lg: 0 10px 15px -3px hsl(222 47% 11% / 0.1), 0 4px 6px -4px hsl(222 47% 11% / 0.1);
  --shadow-xl: 0 20px 25px -5px hsl(222 47% 11% / 0.1), 0 8px 10px -6px hsl(222 47% 11% / 0.1);
  --shadow-glow: 0 0 40px hsl(33 100% 50% / 0.15);
}

* { border-color: hsl(var(--border)); }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
  color: hsl(var(--foreground));
}
/* Typography enhancements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-rendering: optimizeLegibility;
}
.heading-1 { letter-spacing: -0.03em; font-weight: 700; }
.heading-2 { letter-spacing: -0.025em; font-weight: 700; }
.heading-3, .heading-4 { letter-spacing: -0.02em; }
p { line-height: 1.7; }
.body-large { line-height: 1.7; }
.body-regular, .body-small { line-height: 1.65; }
/* Subtle text depth on hero headings */
.hero-gradient .heading-1,
.hero-gradient .heading-2 {
  text-shadow: 0 2px 20px hsl(222 47% 11% / 0.15);
}

/* Responsive images - prevent layout shift and overflow */
img { max-width: 100%; height: auto; display: block; }
.hero-chart-img { width: 100%; max-width: 100%; height: auto; aspect-ratio: auto; }
.hero-chart-shadow { box-shadow: 0 25px 50px -12px hsl(0 0% 0% / 0.25), 0 0 0 1px hsl(0 0% 100% / 0.05); }
.cac-certificate-frame { background: hsl(var(--card)); box-shadow: 0 4px 6px -1px hsl(222 47% 11% / 0.08), 0 2px 4px -2px hsl(222 47% 11% / 0.06); }

/* Mobile: pricing table horizontal scroll */
@media (max-width: 767px) {
  .pricing-grid-mobile { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 1.5rem; padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
  .pricing-grid-mobile > * { flex: 0 0 85%; max-width: 85%; scroll-snap-align: start; }
}

/* Touch targets: min 44px for mobile nav */
@media (max-width: 1023px) {
  .nav-touch-target { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1rem; }
}

/* Mobile: form inputs and buttons - min touch height, readable tap targets */
@media (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea { min-height: 44px; font-size: 16px; }
  textarea { min-height: 120px; }
  button[type="submit"],
  .btn-premium { min-height: 44px; }
}


.hero-gradient {
  background: var(--gradient-hero);
  position: relative;
}
/* Subtle hero depth */
.hero-gradient .container-vtm { position: relative; z-index: 1; }
.accent-gradient { background: var(--gradient-accent); }
.section-gradient { background: var(--gradient-section); }
.card-gradient { background: var(--gradient-card); }
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glass {
  background: hsl(0 0% 100% / 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
/* Navigation: hover, focus, active */
.nav-link {
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  border-radius: 0.375rem;
  outline: none;
}
.nav-link:hover { transform: translateY(-1px); }
.nav-link:focus-visible {
  outline: 2px solid hsl(var(--accent));
  outline-offset: 2px;
}
.nav-link.text-accent { font-weight: 600; }
/* Mobile menu slide-down */
.mobile-nav-panel {
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform-origin: top;
}
.mobile-nav-panel:not(.hidden) {
  animation: mobileNavIn 0.25s ease forwards;
}
@keyframes mobileNavIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.glass-dark {
  background: hsl(222 47% 11% / 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-card-premium { box-shadow: 0 4px 6px -1px hsl(222 47% 11% / 0.08), 0 2px 4px -2px hsl(222 47% 11% / 0.06), 0 0 0 1px hsl(var(--border)); }
.shadow-card-premium:hover { box-shadow: 0 20px 25px -5px hsl(222 47% 11% / 0.12), 0 8px 10px -6px hsl(222 47% 11% / 0.08), 0 0 0 1px hsl(var(--accent) / 0.2), 0 0 40px hsl(33 100% 50% / 0.08); }
/* Buttons: consistent hover and focus */
.btn-premium {
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
  box-shadow: 0 1px 3px hsl(222 47% 11% / 0.12);
  outline: none;
}
.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsl(33 100% 50% / 0.3), 0 2px 8px hsl(222 47% 11% / 0.1);
}
.btn-premium:focus-visible {
  outline: 2px solid hsl(var(--accent));
  outline-offset: 2px;
}
.btn-premium:active { transform: translateY(0); }
.section-separator { border-bottom: 1px solid hsl(var(--border)); }
.section-separator-elegant { position: relative; }
.section-separator-elegant::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 12rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--accent-navy) / 0.2), transparent);
}
/* Gradient border accent for sections */
.section-border-gradient {
  position: relative;
}
.section-border-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--accent) / 0.15), transparent);
  opacity: 0.6;
}
.shadow-elegant {
  box-shadow: 0 4px 20px -4px hsl(222 47% 11% / 0.08), 0 0 0 1px hsl(var(--border));
}
.shadow-elegant:hover {
  box-shadow: 0 12px 28px -8px hsl(222 47% 11% / 0.12), 0 0 0 1px hsl(var(--border));
}
.transition-smooth { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
/* Form inputs: focus and consistency */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
input:focus-visible,
textarea:focus-visible {
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.4);
}
/* Links: consistent hover */
a:not(.btn-premium):not(.nav-link) {
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:focus-visible { outline: 2px solid hsl(var(--accent)); outline-offset: 2px; }
/* Secondary accent utilities (#051433) */
.bg-accent-navy { background-color: hsl(var(--accent-navy)); }
.bg-accent-navy\/5 { background-color: hsl(var(--accent-navy) / 0.05); }
.border-accent-navy\/20 { border-color: hsl(var(--accent-navy) / 0.2); }
.hover\:bg-accent-navy\/10:hover { background-color: hsl(var(--accent-navy) / 0.1); }

/* Premium pricing table (no prices) */
.pricing-table-wrap { border: 1px solid hsl(var(--border)); border-radius: 1rem; overflow: hidden; background: hsl(var(--card)); box-shadow: 0 4px 6px -1px hsl(222 47% 11% / 0.06), 0 2px 4px -2px hsl(222 47% 11% / 0.04); }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
@media (min-width: 768px) { .pricing-table { font-size: 1rem; } }
.pricing-table thead { background: hsl(var(--accent-navy)); color: hsl(0 0% 100%); }
.pricing-table thead th { font-weight: 600; letter-spacing: 0.02em; text-align: left; padding: 1rem 1.25rem; border-bottom: 1px solid hsl(var(--accent-navy) / 0.5); }
@media (min-width: 768px) { .pricing-table thead th { padding: 1.125rem 1.5rem; } }
.pricing-table tbody tr { transition: background 0.2s ease, box-shadow 0.2s ease; border-bottom: 1px solid hsl(var(--border)); }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:nth-child(even) { background: hsl(var(--accent-navy) / 0.03); }
.pricing-table tbody tr:hover { background: hsl(var(--accent-navy) / 0.06); }
.pricing-table tbody td { padding: 1rem 1.25rem; vertical-align: middle; }
@media (min-width: 768px) { .pricing-table tbody td { padding: 1.125rem 1.5rem; } }
.pricing-table .plan-name { font-weight: 600; color: hsl(var(--foreground)); }
.pricing-table .plan-access { color: hsl(var(--muted-foreground)); font-weight: 500; }
.pricing-table .plan-notes { color: hsl(var(--muted-foreground)); line-height: 1.5; }
.pricing-table .savings-badge { display: inline-block; padding: 0.25rem 0.5rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; background: hsl(var(--accent) / 0.15); color: hsl(var(--accent)); }
@media (max-width: 767px) {
  .pricing-table-wrap { margin-left: -1rem; margin-right: -1rem; border-radius: 0; border-left: none; border-right: none; }
  .pricing-table { min-width: 480px; }
  .pricing-table thead th, .pricing-table tbody td { padding: 0.875rem 1rem; font-size: 0.875rem; }
}
.pricing-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid hsl(var(--border));
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--accent) / 0.4);
  box-shadow: 0 12px 24px -8px hsl(222 47% 11% / 0.15), 0 0 0 1px hsl(var(--accent) / 0.1), 0 0 40px hsl(33 100% 50% / 0.06);
}
.pricing-card-featured { border-color: hsl(var(--accent) / 0.5); box-shadow: 0 0 0 2px hsl(var(--accent) / 0.2); }
/* Enhanced subscription plan cards (no prices): #051433 accents, premium look */
.pricing-card-enhanced {
  box-shadow: 0 4px 20px -4px hsl(var(--accent-navy) / 0.08), 0 0 0 1px hsl(var(--border));
  background: linear-gradient(180deg, hsl(var(--card)) 0%, hsl(var(--accent-navy) / 0.02) 100%);
}
.pricing-card-enhanced {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.pricing-card-enhanced:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--accent-navy) / 0.25);
  box-shadow: 0 16px 32px -8px hsl(var(--accent-navy) / 0.12), 0 0 0 1px hsl(var(--accent-navy) / 0.1), 0 0 40px hsl(33 100% 50% / 0.06);
}
.pricing-card-enhanced.pricing-card-featured:hover {
  box-shadow: 0 16px 32px -8px hsl(var(--accent-navy) / 0.12), 0 0 0 2px hsl(var(--accent) / 0.3), 0 0 40px hsl(33 100% 50% / 0.08);
}
/* Content cards (problem/solutions etc.): consistent hover */
.bg-card.border-border {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.group.hover\:border-accent\/30:hover.bg-card.border-border,
.bg-card.border-border.group:hover {
  transform: translateY(-2px);
}
/* Image hover polish */
img.rounded-xl,
img.rounded-2xl {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
a:hover img.rounded-xl,
a:hover img.rounded-2xl,
.group:hover img.rounded-xl,
.group:hover img.rounded-2xl {
  box-shadow: 0 12px 24px -8px hsl(222 47% 11% / 0.2);
}

.animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }
.animate-slide-up { animation: slideUp 0.6s ease-out forwards; }
.animate-slide-in-left { animation: slideInLeft 0.6s ease-out forwards; }
.animate-slide-in-right { animation: slideInRight 0.6s ease-out forwards; }
.animate-scale-in { animation: scaleIn 0.5s ease-out forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }

.container-vtm { max-width: 80rem; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .container-vtm { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container-vtm { padding-left: 2rem; padding-right: 2rem; } }

.section-padding { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .section-padding { padding-top: 6rem; padding-bottom: 6rem; } }
@media (min-width: 1024px) { .section-padding { padding-top: 8rem; padding-bottom: 8rem; } }
/* Page content fade-in (subtle) */
main .container-vtm,
main .max-w-3xl,
main .max-w-4xl,
main .max-w-5xl {
  animation: contentFadeIn 0.5s ease-out;
}
@keyframes contentFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.heading-1 { font-size: 2.25rem; line-height: 1.2; font-weight: 700; }
@media (min-width: 768px) { .heading-1 { font-size: 3rem; } }
@media (min-width: 1024px) { .heading-1 { font-size: 3.75rem; } }
.heading-2 { font-size: 1.875rem; line-height: 1.2; font-weight: 700; }
@media (min-width: 768px) { .heading-2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .heading-2 { font-size: 3rem; } }
.heading-3 { font-size: 1.5rem; line-height: 1.2; font-weight: 600; }
@media (min-width: 768px) { .heading-3 { font-size: 1.875rem; } }
.heading-4 { font-size: 1.25rem; line-height: 1.2; font-weight: 600; }
@media (min-width: 768px) { .heading-4 { font-size: 1.5rem; } }
.body-large { font-size: 1.125rem; line-height: 1.625; }
@media (min-width: 768px) { .body-large { font-size: 1.25rem; } }
.body-regular { font-size: 1rem; line-height: 1.625; }
.body-small { font-size: 0.875rem; line-height: 1.625; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
/* Footer polish */
footer a { transition: color 0.2s ease, opacity 0.2s ease; }
footer a:hover { opacity: 0.9; }
/* CTA section buttons in hero/CTA blocks */
.hero-gradient .btn-premium,
.hero-gradient a[href].inline-flex {
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}
.hero-gradient a[href].inline-flex:hover {
  transform: translateY(-2px);
}

/* ===== Leadership page: executive profile layout ===== */
/* Container: [IMAGE LEFT] [CONTENT RIGHT] on desktop; stacked on mobile */
.leadership-profile {
  display: flex;
  flex-direction: column;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 24px -4px hsl(222 47% 11% / 0.08), 0 0 0 1px hsl(var(--border));
}
@media (min-width: 768px) {
  .leadership-profile {
    flex-direction: row;
    align-items: stretch;
    min-height: 0;
  }
}

/* Left column: professional portrait (40% on desktop) */
.profile-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(180deg, hsl(var(--accent-navy) / 0.04) 0%, transparent 100%);
}
@media (min-width: 768px) {
  .profile-image {
    width: 40%;
    max-width: 20rem;
    padding: 2.5rem 2rem;
  }
}
.profile-image img {
  width: 100%;
  max-width: 14rem;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  box-shadow: 0 12px 32px -8px hsl(222 47% 11% / 0.2), 0 0 0 1px hsl(var(--border));
  background: hsl(var(--muted));
}
@media (min-width: 768px) {
  .profile-image img {
    max-width: 100%;
    box-shadow: 0 16px 40px -12px hsl(222 47% 11% / 0.18), 0 0 0 1px hsl(var(--border));
  }
}

/* Right column: name, title, bio, credentials (60% on desktop) */
.profile-content {
  flex: 1;
  min-width: 0;
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid hsl(var(--border));
}
@media (min-width: 768px) {
  .profile-content {
    width: 60%;
    padding: 2.5rem 3rem 3rem;
    border-top: none;
    border-left: 1px solid hsl(var(--border));
  }
}

.profile-name {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: hsl(var(--foreground));
  margin: 0 0 0.25rem 0;
}
@media (min-width: 768px) {
  .profile-name {
    font-size: 2rem;
  }
}
.profile-title {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--accent));
  margin: 0 0 1.5rem 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid hsl(var(--border));
}
@media (min-width: 768px) {
  .profile-title {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.profile-bio {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.profile-bio p {
  margin: 0 0 1rem 0;
}
.profile-bio p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .profile-bio {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
  }
}

.profile-credentials {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.65;
}
.profile-credentials li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}
.profile-credentials li:last-child {
  margin-bottom: 0;
}
.profile-credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: hsl(var(--accent));
}
@media (min-width: 768px) {
  .profile-credentials {
    font-size: 1rem;
  }
}

/* ===== Payment details: Crypto section with QR code ===== */
.crypto-payment-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(var(--accent-navy) / 0.06) 0%, hsl(var(--accent) / 0.06) 100%);
  border: 1px solid hsl(var(--accent) / 0.2);
  box-shadow: 0 4px 20px -4px hsl(222 47% 11% / 0.08);
  transition: box-shadow 0.3s ease;
}
.crypto-payment-section:hover {
  box-shadow: 0 8px 28px -4px hsl(222 47% 11% / 0.1), 0 0 0 1px hsl(var(--accent) / 0.15);
}
@media (min-width: 768px) {
  .crypto-payment-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.75rem 2rem;
  }
}

.crypto-info {
  flex: 1;
  min-width: 0;
}
.crypto-heading {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  margin: 0 0 0.5rem 0;
}
.crypto-amount {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin: 0 0 1rem 0;
}
.crypto-amount strong {
  color: hsl(var(--accent));
}
.crypto-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}
.wallet-address-wrap {
  margin-bottom: 1rem;
}
.wallet-address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px hsl(222 47% 11% / 0.06);
}
.wallet-address-code {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: hsl(var(--foreground));
  word-break: break-all;
  background: none;
  border: none;
  padding: 0;
}
@media (min-width: 640px) {
  .wallet-address-code {
    font-size: 0.875rem;
  }
}
.copy-wallet-btn {
  flex-shrink: 0;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--accent-foreground));
  background: hsl(var(--accent));
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.copy-wallet-btn:hover {
  opacity: 0.95;
  box-shadow: 0 2px 8px hsl(var(--accent) / 0.4);
}
.copy-wallet-btn:active {
  transform: scale(0.98);
}
.copy-wallet-btn:focus-visible {
  outline: 2px solid hsl(var(--accent));
  outline-offset: 2px;
}
.copy-wallet-btn.copied {
  background: hsl(142 76% 36%);
  color: white;
}
.crypto-note {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}
.crypto-note-warning {
  color: hsl(38 92% 50%);
  font-weight: 500;
}
.crypto-note-warning strong {
  color: hsl(38 92% 45%);
}
.crypto-instruction {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
  line-height: 1.5;
}

.qr-code-container {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .qr-code-container {
    align-items: center;
    padding-left: 0.5rem;
    border-left: 1px solid hsl(var(--border));
  }
}
.qr-code-frame {
  padding: 0.75rem;
  background: hsl(var(--card));
  border: 2px solid hsl(var(--accent) / 0.4);
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px -4px hsl(222 47% 11% / 0.12), 0 0 0 1px hsl(var(--border));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.qr-code-frame:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px -4px hsl(222 47% 11% / 0.15), 0 0 0 2px hsl(var(--accent) / 0.3);
}
.qr-code {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .qr-code {
    max-width: 220px;
  }
}
.qr-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  margin: 0;
  letter-spacing: 0.02em;
}

.crypto-bitcoin-fallback {
  padding: 1rem;
  background: hsl(var(--muted) / 0.5);
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
}

/* ===== Payment confirmation (thank you) page ===== */
.thank-you-card {
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  background: linear-gradient(180deg, hsl(var(--card)) 0%, hsl(var(--accent-navy) / 0.03) 100%);
  border: 1px solid hsl(var(--border));
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px -4px hsl(222 47% 11% / 0.08), 0 0 0 1px hsl(var(--border));
}
@media (min-width: 768px) {
  .thank-you-card {
    padding: 3rem 3rem 3.5rem;
    border-radius: 2rem;
    box-shadow: 0 8px 32px -8px hsl(222 47% 11% / 0.1), 0 0 0 1px hsl(var(--border));
  }
}

.thank-you-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(33 100% 55%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -4px hsl(var(--accent) / 0.4);
}
.thank-you-checkmark {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
  stroke-width: 3;
}
@media (min-width: 768px) {
  .thank-you-icon {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1.75rem;
  }
  .thank-you-checkmark {
    width: 3rem;
    height: 3rem;
  }
}

.thank-you-heading {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: hsl(var(--foreground));
  margin: 0 0 1rem 0;
}
@media (min-width: 768px) {
  .thank-you-heading {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }
}

.thank-you-message {
  font-size: 1rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  margin: 0 0 1.5rem 0;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .thank-you-message {
    font-size: 1.0625rem;
    margin-bottom: 1.75rem;
  }
}

.thank-you-order-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.75rem;
  background: hsl(var(--accent-navy) / 0.06);
  border: 1px solid hsl(var(--accent) / 0.25);
  border-radius: 0.75rem;
}
.thank-you-order-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.thank-you-order-id {
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: hsl(var(--accent));
  letter-spacing: -0.02em;
}

.thank-you-next-steps {
  text-align: left;
  max-width: 28em;
  margin: 0 auto 1.5rem;
  padding: 1.25rem 1.5rem;
  background: hsl(var(--muted) / 0.5);
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
}
.thank-you-next-heading {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 0.75rem 0;
}
.thank-you-next-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
}
.thank-you-next-list li {
  margin-bottom: 0.35rem;
}
.thank-you-next-list li:last-child {
  margin-bottom: 0;
}

.thank-you-contact {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}
.thank-you-contact-link {
  color: hsl(var(--accent));
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.thank-you-contact-link:hover {
  opacity: 0.9;
  text-decoration: underline;
}

.thank-you-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--accent-foreground));
  background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(33 100% 55%) 100%);
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 2px 8px hsl(var(--accent) / 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.thank-you-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px hsl(var(--accent) / 0.35);
}
.thank-you-btn:focus-visible {
  outline: 2px solid hsl(var(--accent));
  outline-offset: 2px;
}
