/* ==========================================================================
   actionX - Japanese Sakura Tokyo Editorial Web Experience
   Color Palette: Washi Off-White (#faf9f5), Sumi Ink Black (#1a1a1a),
                  Imperial Ruby Red (#8b001a), Tokyo Crimson (#b91c1c),
                  Hanko Seal Gold (#b48608).
   Rules: Strictly 0px border-radius (pure sharp architectural corners),
          Zero emojis, pure SVG glyphs, high-contrast brutalist shadows.
   ========================================================================== */

:root {
  --bg-washi: #faf9f5;
  --bg-washi-alt: #f3eee4;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-input: #ffffff;
  
  --border-ink: #1a1a1a;
  --border-hairline: #e3ded3;
  --border-card: #1a1a1a;
  --border-active: #8b001a;

  --primary: #1a1a1a;
  --primary-hover: #000000;
  --accent-red: #8b001a;
  --accent-red-hover: #b91c1c;
  --accent-red-soft: #fcf1f3;
  --accent-hanko: #b48608;

  --text-ink: #121212;
  --text-body: #2c2926;
  --text-dim: #78716c;
  --text-muted: #99938b;

  --success: #15803d;
  --warning: #b45309;
  --danger: #b91c1c;

  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', Consolas, monospace;
}

/* Enforce Zero Rounded Corners Everywhere */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-washi);
}

body {
  background-color: var(--bg-washi);
  color: var(--text-body);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-top: 68px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle Japanese texture grid overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(26, 26, 26, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* Falling Sakura Petals Background Canvas */
#sakuraCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

/* Base Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Navigation Bar (Tokyo Brutalist Minimal)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 249, 245, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border-ink);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-ink);
}

.brand-logo-img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border: 1.5px solid var(--border-ink);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.12);
  background: #fff;
  flex: none;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}

.brand-name b {
  color: var(--accent-red);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.badge-pro {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent-red);
  color: #fff;
  padding: 2px 6px;
  border: 1px solid var(--border-ink);
  box-shadow: 1px 1px 0 rgba(0,0,0,0.15);
}

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

.nav-link {
  color: var(--text-ink);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 4px;
  position: relative;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--accent-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Navigation Actions Group */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive Visibility Classes */
.desktop-only {
  display: flex !important;
}

button.desktop-only, a.desktop-only {
  display: inline-flex !important;
}

.mobile-only {
  display: none !important;
}

/* Mobile Hamburger Toggle */
.btn-hamburger {
  background: #ffffff;
  border: 1.5px solid var(--border-ink);
  box-shadow: 2px 2px 0 var(--border-ink);
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.btn-hamburger:hover {
  background: var(--bg-washi-alt);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--border-ink);
}

.btn-hamburger:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--border-ink);
}

.btn-hamburger .bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--text-ink);
  transition: all 0.2s ease;
}

.btn-hamburger.active .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.btn-hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.btn-hamburger.active .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid var(--border-ink);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  z-index: 99;
  animation: drawerSlideDown 0.18s ease-out;
}

@keyframes drawerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  background: var(--bg-washi);
  gap: 6px;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-ink);
  text-decoration: none;
  background: #ffffff;
  border: 1.5px solid var(--border-ink);
  box-shadow: 2px 2px 0 var(--border-ink);
  transition: background 0.15s ease, color 0.15s ease;
}

.mobile-drawer-link:hover, .mobile-drawer-link:active {
  background: var(--bg-washi-alt);
  color: var(--accent-red);
}

.mobile-drawer-link.admin-link {
  background: var(--bg-washi-alt);
  color: var(--accent-red);
  margin-top: 4px;
}

/* Google Auth Button in Navbar */
.btn-google-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--text-ink);
  border: 1.5px solid var(--border-ink);
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--border-ink);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

.btn-google-auth:hover {
  background: var(--bg-washi-alt);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--border-ink);
}

.btn-google-auth:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--border-ink);
}

.btn-google-real {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: var(--text-ink);
  border: 1.5px solid var(--border-ink);
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--border-ink);
  transition: all 0.15s ease;
  border-radius: 4px;
}

.btn-google-real:hover {
  background: var(--bg-washi-alt);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--border-ink);
}

.btn-google-real:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--border-ink);
}

.google-official-btn-slot {
  width: 100%;
  display: flex;
  justify-content: center;
}

.google-auth-status-box {
  padding: 8px 12px;
  border: 1px dashed var(--border-ink);
  background: var(--bg-washi-alt);
  border-radius: 4px;
}

/* User Profile Trigger & Dropdown */
.user-nav-dropdown {
  position: relative;
}

.user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid var(--border-ink);
  padding: 5px 12px 5px 6px;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--border-ink);
  transition: all 0.15s ease;
}

.user-pill:hover {
  background: var(--bg-washi-alt);
}

.nav-avatar {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border: 1px solid var(--border-ink);
}

.nav-user-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-ink);
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 260px;
  background: #ffffff;
  border: 2px solid var(--border-ink);
  box-shadow: 4px 4px 0 var(--border-ink);
  z-index: 200;
}

.dropdown-header {
  padding: 12px 14px;
  background: var(--bg-washi-alt);
  border-bottom: 1.5px solid var(--border-ink);
}

.dropdown-email {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-ink);
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-sub-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-red);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-ink);
  text-decoration: none;
  background: #ffffff;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-item:hover {
  background: var(--bg-washi-alt);
  color: var(--accent-red);
}

.dropdown-divider {
  height: 1px;
  background: var(--border-hairline);
  margin: 4px 0;
}

.text-danger {
  color: var(--danger) !important;
}

/* Owner Terminal Button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: var(--text-ink);
  border: 1.5px solid var(--border-ink);
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--border-ink);
  transition: all 0.12s ease;
}

.btn-secondary:hover {
  background: var(--bg-washi-alt);
  border-color: var(--border-ink);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--border-ink);
}

.btn-secondary:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--border-ink);
}

.btn-secondary.sm {
  padding: 4px 9px;
  font-size: 11px;
}

/* ==========================================================================
   Hero Section (Tokyo Luxury Editorial)
   ========================================================================== */
.hero-section {
  padding: 60px 0 45px;
  text-align: center;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: #ffffff;
  border: 1.5px solid var(--border-ink);
  box-shadow: 3px 3px 0 var(--border-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-ink);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-red);
  display: inline-block;
  box-shadow: 0 0 6px var(--accent-red);
}

.hero-title {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-ink);
  margin-bottom: 20px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .red-accent {
  color: var(--accent-red);
  display: inline;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-dim);
  max-width: 760px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-weight: 400;
}

/* Referred By Partner Banner */
.referred-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid var(--accent-red);
  box-shadow: 3px 3px 0 var(--accent-red);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-red);
  margin: 0 auto 30px;
  max-width: 720px;
}

/* ==========================================================================
   Action Card (Download & Instant License Verification)
   ========================================================================== */
.action-card {
  background: #ffffff;
  border: 2px solid var(--border-ink);
  box-shadow: 5px 5px 0 var(--border-ink);
  padding: 28px 32px;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}

.action-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.card-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--bg-washi-alt);
  border: 1.5px solid var(--border-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  flex: none;
}

.action-card-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-ink);
  margin-bottom: 2px;
}

.action-card-header p {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

.license-input-row {
  display: flex;
  gap: 10px;
}

.input-with-icon {
  position: relative;
  flex: 1;
}

.input-with-icon svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
}

.input-with-icon input {
  width: 100%;
  height: 48px;
  padding: 0 14px 0 42px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  background: #ffffff;
  border: 1.5px solid var(--border-ink);
  color: var(--text-ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input-with-icon input:focus {
  border-color: var(--accent-red);
  box-shadow: inset 0 0 0 1px var(--accent-red);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1a1a1a;
  color: #ffffff;
  border: 1.5px solid #1a1a1a;
  padding: 0 22px;
  height: 48px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #000000;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.btn-primary:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}

.verify-status-box {
  margin-top: 14px;
  padding: 12px 16px;
  font-size: 12.5px;
  font-weight: 700;
  border: 1.5px solid var(--border-ink);
}

.verify-status-box.success {
  background: #f0fdf4;
  border-color: #15803d;
  color: #15803d;
}

.verify-status-box.error {
  background: #fef2f2;
  border-color: var(--danger);
  color: var(--danger);
}

/* ==========================================================================
   Section Headers (Editorial Stamp & Japanese Hanko Aesthetic)
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.section-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #ffffff;
  color: var(--accent-red);
  border: 1.5px solid var(--border-ink);
  box-shadow: 2px 2px 0 var(--border-ink);
  padding: 4px 12px;
  margin-bottom: 14px;
}

.section-badge.red {
  background: var(--accent-red);
  color: #ffffff;
}

.section-header h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 15.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ==========================================================================
   Master Step-by-Step Visual Operational Tutorial Section
   ========================================================================== */
.tutorial-section {
  padding: 70px 0;
  background: var(--bg-washi-alt);
  border-top: 2px solid var(--border-ink);
  border-bottom: 2px solid var(--border-ink);
  position: relative;
}

.tutorial-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
}

.tutorial-step-card {
  background: #ffffff;
  border: 2px solid var(--border-ink);
  box-shadow: 5px 5px 0 var(--border-ink);
  display: grid;
  grid-template-columns: 420px 1fr;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tutorial-step-card:hover {
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 var(--border-ink);
}

.step-visual-pane {
  background: #fbfaf7;
  border-right: 2px solid var(--border-ink);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.step-screenshot-frame {
  background: #ffffff;
  border: 1.5px solid var(--border-ink);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.1);
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.step-screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.step-content-pane {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-number-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 8px;
}

.step-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-ink);
  margin-bottom: 12px;
  line-height: 1.25;
}

.step-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.step-instruction-box {
  background: var(--bg-washi-alt);
  border-left: 3px solid var(--accent-red);
  padding: 12px 16px;
  margin-bottom: 14px;
}

.step-instruction-box h5 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-ink);
  margin-bottom: 6px;
}

.step-instruction-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-instruction-box li {
  font-size: 12.5px;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.step-instruction-box li svg {
  flex: none;
  margin-top: 3px;
  color: var(--accent-red);
}

.step-niche-examples {
  background: #ffffff;
  border: 1px solid var(--border-hairline);
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-dim);
}

.step-niche-examples strong {
  color: var(--text-ink);
}

.step-niche-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  background: var(--bg-washi-alt);
  color: var(--text-ink);
  padding: 2px 6px;
  border: 1px solid #d6d3cd;
  margin-right: 4px;
  margin-bottom: 4px;
}

.step-pro-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #86efac;
  padding: 8px 12px;
  margin-top: 10px;
}

/* ==========================================================================
   COMPUTER INSTALLATION GUIDE SECTION (Real Screen Walkthrough)
   ========================================================================== */
.install-section {
  padding: 70px 0 60px;
  background: var(--bg-washi-alt);
  border-top: 2px solid var(--border-ink);
  border-bottom: 2px solid var(--border-ink);
}

.install-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.install-step-card {
  background: #ffffff;
  border: 2px solid var(--border-ink);
  box-shadow: 4px 4px 0 var(--border-ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.install-step-card:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 var(--border-ink);
}

.install-step-card.highlight {
  border-color: var(--accent-red);
  box-shadow: 4px 4px 0 var(--accent-red);
}

.install-step-header {
  padding: 16px 20px 12px;
  border-bottom: 1.5px solid var(--border-hairline);
  background: #ffffff;
}

.install-step-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.install-step-badge.red {
  color: var(--accent-red);
}

.install-step-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-ink);
  line-height: 1.3;
}

.install-visual-pane {
  background: #0f172a;
  border-bottom: 1.5px solid var(--border-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.install-visual-pane img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.install-content-pane {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

.install-step-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 12px;
}

.install-step-desc code {
  background: var(--bg-washi-alt);
  padding: 2px 6px;
  border: 1px solid #d4d4d8;
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  color: var(--accent-red);
  font-weight: 700;
}

.install-tip-pill {
  font-size: 12px;
  color: #1e3a8a;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 8px 12px;
  line-height: 1.45;
}

.install-tip-pill strong {
  color: #1d4ed8;
}

@media (max-width: 900px) {
  .install-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   PRICING MATRIX SECTION (50% Strikethrough Discount)
   ========================================================================== */
.pricing-section {
  padding: 80px 0 70px;
}

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

.pricing-card {
  background: #ffffff;
  border: 2px solid var(--border-ink);
  box-shadow: 4px 4px 0 var(--border-ink);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 var(--border-ink);
}

.pricing-card.popular {
  border: 2.5px solid var(--accent-red);
  box-shadow: 5px 5px 0 var(--accent-red);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--accent-red);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--border-ink);
}

.agency-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--text-ink);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--border-ink);
}

.pricing-card-header h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-ink);
  margin-bottom: 4px;
}

.plan-sub {
  font-size: 12px;
  color: var(--text-dim);
  min-height: 34px;
  line-height: 1.4;
  margin-bottom: 14px;
}

/* Strikethrough Pricing Layout */
.plan-price-wrap {
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--border-hairline);
  margin-bottom: 16px;
}

.price-top-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.price-main-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  white-space: nowrap;
}

.discount-hanko {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  background: var(--accent-red);
  color: #ffffff;
  padding: 2px 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-strike-val {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--accent-red);
  text-decoration-thickness: 2px;
  font-weight: 700;
}

.currency {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-ink);
  line-height: 1;
}

.price-value {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 800;
  color: var(--text-ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.period {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  margin-left: 4px;
}

/* Device Workstation Switch */
.device-toggle-wrap {
  margin-bottom: 18px;
}

.toggle-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-ink);
  margin-bottom: 6px;
}

.device-toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.toggle-btn {
  background: #ffffff;
  color: var(--text-dim);
  border: 1px solid var(--border-hairline);
  padding: 7px 4px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.12s ease;
}

.toggle-btn:hover {
  border-color: var(--border-ink);
  color: var(--text-ink);
}

.toggle-btn.active {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
  box-shadow: inset 0 0 0 1px #1a1a1a;
}

.agency-exclusive-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-washi-alt);
  border: 1.5px solid var(--border-ink);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-ink);
  margin-bottom: 18px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  font-size: 12.5px;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.plan-features li svg {
  color: var(--accent-red);
  flex: none;
  margin-top: 1px;
}

.btn-checkout {
  width: 100%;
  height: 44px;
  background: #ffffff;
  color: var(--text-ink);
  border: 1.5px solid var(--border-ink);
  box-shadow: 3px 3px 0 var(--border-ink);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.12s ease;
}

.btn-checkout:hover {
  background: #1a1a1a;
  color: #ffffff;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--border-ink);
}

.btn-checkout:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--border-ink);
}

.popular-btn {
  background: var(--accent-red);
  color: #ffffff;
  border-color: var(--border-ink);
}

.popular-btn:hover {
  background: var(--accent-red-hover);
}

.agency-btn {
  background: #1a1a1a;
  color: #ffffff;
}

/* ==========================================================================
   10% Referral Commission Engine Section
   ========================================================================== */
.affiliate-section {
  padding: 70px 0;
  background: var(--bg-washi-alt);
  border-top: 2px solid var(--border-ink);
  border-bottom: 2px solid var(--border-ink);
}

.affiliate-banner-card {
  background: #ffffff;
  border: 2px solid var(--border-ink);
  box-shadow: 5px 5px 0 var(--border-ink);
  padding: 32px 36px;
  margin-bottom: 30px;
}

.affiliate-banner-content h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text-ink);
  margin: 10px 0 10px;
}

.affiliate-banner-content p {
  font-size: 14.5px;
  color: var(--text-dim);
  max-width: 820px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.referral-box-wrap label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-ink);
  margin-bottom: 8px;
}

.referral-link-row {
  display: flex;
  gap: 8px;
}

.ref-input {
  flex: 1;
  height: 46px;
  background: var(--bg-washi);
  border: 1.5px solid var(--border-ink);
  padding: 0 14px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-ink);
  outline: none;
}

.share-x {
  background: #000000;
}

/* Affiliate 5 Metric Cards */
.affiliate-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.stat-card {
  background: #ffffff;
  border: 1.5px solid var(--border-ink);
  box-shadow: 3px 3px 0 var(--border-ink);
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
}

.stat-card.highlight {
  border: 2px solid var(--accent-red);
  box-shadow: 4px 4px 0 var(--accent-red);
}

.stat-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-ink);
  margin-bottom: 12px;
  background: var(--bg-washi-alt);
  color: var(--text-ink);
}

.stat-icon.red {
  background: var(--accent-red);
  color: #ffffff;
}

.stat-details {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-ink);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-hint {
  font-size: 11px;
  color: var(--text-muted);
}

.text-success { color: #15803d !important; }
.text-warning { color: #b45309 !important; }
.text-accent  { color: var(--accent-red) !important; }

.btn-withdraw {
  margin-top: 8px;
  background: var(--accent-red);
  color: #ffffff;
  border: 1px solid var(--border-ink);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.12s ease;
}

.btn-withdraw:hover {
  background: var(--accent-red-hover);
}

/* ==========================================================================
   Data Tables & Panels
   ========================================================================== */
.panel-box {
  background: #ffffff;
  border: 2px solid var(--border-ink);
  box-shadow: 4px 4px 0 var(--border-ink);
  padding: 22px 24px;
}

.panel-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border-hairline);
}

.panel-header-row h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-ink);
}

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

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  text-align: left;
}

.data-table th {
  background: var(--bg-washi-alt);
  color: var(--text-ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10.5px;
  padding: 10px 12px;
  border-bottom: 2px solid var(--border-ink);
  border-top: 1px solid var(--border-hairline);
}

.data-table td {
  padding: 12px 12px;
  border-bottom: 1px solid var(--border-hairline);
  color: var(--text-body);
}

.data-table tr:hover td {
  background: #fbfaf8;
}

.text-center { text-align: center; }
.text-dim { color: var(--text-dim); }
.text-sm { font-size: 11.5px; }

/* ==========================================================================
   Client Hub & Features Grid
   ========================================================================== */
.dashboard-section {
  padding: 70px 0;
}

.features-section {
  padding: 80px 0;
  background: var(--bg-washi-alt);
  border-top: 2px solid var(--border-ink);
  border-bottom: 2px solid var(--border-ink);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border: 1.5px solid var(--border-ink);
  box-shadow: 4px 4px 0 var(--border-ink);
  padding: 28px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 var(--border-ink);
}

.f-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-washi-alt);
  border: 1.5px solid var(--border-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--text-ink);
}

.f-icon.red {
  background: var(--accent-red);
  color: #ffffff;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-ink);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ==========================================================================
   Modals & Popups (Brutalist Sharp Dialogs)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay.hidden {
  display: none !important;
}

.modal-window {
  background: #ffffff;
  border: 2px solid var(--border-ink);
  box-shadow: 7px 7px 0 var(--border-ink);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-window.sm {
  max-width: 460px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: var(--bg-washi-alt);
  border-bottom: 2px solid var(--border-ink);
}

.modal-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-title-group h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-ink);
}

.btn-close {
  background: #ffffff;
  border: 1px solid var(--border-ink);
  width: 28px;
  height: 28px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s ease;
}

.btn-close:hover {
  background: var(--accent-red);
  color: #ffffff;
}

.modal-body {
  padding: 22px;
}

.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-ink);
  margin-bottom: 5px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  height: 40px;
  background: #ffffff;
  border: 1.5px solid var(--border-ink);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-ink);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent-red);
}

/* Payment Options Grid */
.payment-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 6px;
}

.pay-option-card {
  display: flex;
  align-items: center;
  padding: 10px;
  background: var(--bg-washi);
  border: 1.5px solid var(--border-hairline);
  cursor: pointer;
  transition: all 0.12s ease;
}

.pay-option-card:hover {
  border-color: var(--border-ink);
}

.pay-option-card.active {
  background: #ffffff;
  border-color: var(--border-ink);
  box-shadow: 2px 2px 0 var(--border-ink);
}

.pay-option-card input {
  display: none;
}

.pay-card-body {
  display: flex;
  flex-direction: column;
}

.pay-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-ink);
}

.pay-sub {
  font-size: 9.5px;
  color: var(--text-dim);
}

.checkout-summary-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-washi-alt);
  border: 1.5px solid var(--border-ink);
  padding: 14px 16px;
}

.badge-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  background: #ffffff;
  border: 1px solid var(--border-ink);
  margin-top: 4px;
}

.badge-tag.active {
  background: var(--accent-red);
  color: #ffffff;
  border-color: var(--accent-red);
}

.checkout-price-display {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-val {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-ink);
}

.pay-details-box {
  background: var(--bg-washi-alt);
  border: 1px dashed var(--border-ink);
  padding: 12px 14px;
}

.full-width {
  width: 100%;
}

.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }

.key-output-box {
  background: #f0fdf4;
  border: 1.5px solid #16a34a;
  padding: 14px 16px;
}

.key-display-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.key-display-row code {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--border-ink);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 800;
  color: #15803d;
}

.key-meta-text {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #ffffff;
  border-top: 2px solid var(--border-ink);
  padding: 36px 0;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
}

.status-indicator {
  width: 8px;
  height: 8px;
}

.status-indicator.online {
  background: #16a34a;
  box-shadow: 0 0 6px #16a34a;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   Responsive Adaptations (Bulletproof Mobile & Tablet)
   ========================================================================== */
@media (max-width: 992px) {
  .desktop-only,
  button.desktop-only,
  a.desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: flex !important;
  }
  button.mobile-only {
    display: inline-flex !important;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tutorial-step-card {
    grid-template-columns: 1fr;
  }
  .step-visual-pane {
    border-right: none;
    border-bottom: 2px solid var(--border-ink);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  body {
    padding-top: 58px;
  }

  .container {
    padding: 0 16px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-container {
    padding: 10px 16px;
  }

  .hero-section {
    padding: 36px 0 28px;
  }

  .hero-tag {
    font-size: 9.5px;
    padding: 4px 10px;
    letter-spacing: 0.08em;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.22;
    margin-bottom: 16px;
    word-break: break-word;
  }

  .hero-sub {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .referred-banner {
    padding: 8px 12px;
    font-size: 12px;
    margin-bottom: 20px;
  }

  .action-card {
    padding: 16px 14px;
    box-shadow: 3px 3px 0 var(--border-ink);
    max-width: 100%;
  }

  .action-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .card-icon-wrap {
    width: 36px;
    height: 36px;
  }

  .license-input-row {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .license-input-wrap {
    width: 100%;
  }

  .license-input-row input {
    width: 100%;
    font-size: 12px;
    padding: 10px 12px;
  }

  .license-input-row button {
    width: 100%;
    justify-content: center;
    font-size: 12.5px;
    padding: 11px 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card {
    padding: 22px 18px;
  }

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

  .affiliate-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .referral-link-row {
    flex-direction: column;
    gap: 8px;
  }

  .referral-link-row input {
    width: 100%;
  }

  .referral-link-row button {
    width: 100%;
    justify-content: center;
  }

  .payment-options-grid {
    grid-template-columns: 1fr;
  }

  .table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border-ink);
    margin-bottom: 12px;
  }

  .data-table {
    min-width: 560px;
  }

  .step-visual-pane {
    padding: 12px;
  }

  .step-visual-pane img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border-ink);
  }

  .step-content-pane {
    padding: 18px 14px;
  }

  .modal-window {
    max-width: 95vw;
    margin: 10px auto;
    max-height: 90vh;
    overflow-y: auto;
  }

  .footer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 23px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-logo-img {
    width: 32px;
    height: 32px;
  }

  .btn-google-auth {
    padding: 6px 9px;
    font-size: 11.5px;
    gap: 5px;
  }

  .nav-user-label {
    max-width: 75px;
  }

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

  .checkout-summary-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ==========================================================================
   OFFICIAL PAYMENT GATEWAYS (Binance Pay & EVM Crypto with QR)
   ========================================================================== */
.pay-method-content {
  animation: fadeInPay 0.2s ease-in-out;
}

@keyframes fadeInPay {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.pay-address-card {
  background: #ffffff;
  border: 1.5px solid var(--border-ink);
  padding: 12px 14px;
  border-radius: 4px;
  box-shadow: 2px 2px 0 var(--border-ink);
}

.pay-address-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pay-copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pay-code-large {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-red);
  letter-spacing: 0.05em;
  background: transparent;
  border: none;
  padding: 0;
}

.pay-code-sm {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  word-break: break-all;
  background: var(--bg-cream);
  padding: 6px 8px;
  border: 1px solid #dcd7ce;
  border-radius: 4px;
}

.pay-steps-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.5;
  background: var(--bg-cream);
  padding: 12px 14px;
  border: 1px dashed #dcd7ce;
  border-radius: 4px;
}

/* EVM Crypto Layout */
.crypto-pay-layout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.qr-code-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding: 10px;
  border: 1.5px solid var(--border-ink);
  border-radius: 6px;
  box-shadow: 2px 2px 0 var(--border-ink);
  flex: none;
}

.qr-code-img {
  width: 140px;
  height: 140px;
  display: block;
  image-rendering: pixelated;
}

.crypto-details-col {
  flex: 1;
  min-width: 0;
}

/* Network & Token Badges */
.net-tag-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.net-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.net-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid var(--border-ink);
  background: #ffffff;
  color: #1e293b;
}

.net-pill.bnb {
  background: #fef9c3;
  border-color: #ca8a04;
  color: #854d0e;
}

.net-pill.eth {
  background: #ede9fe;
  border-color: #7c3aed;
  color: #5b21b6;
}

.net-pill.poly {
  background: #fae8ff;
  border-color: #c026d3;
  color: #86198f;
}

.net-pill.arb {
  background: #e0f2fe;
  border-color: #0284c7;
  color: #075985;
}

.token-pill {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid var(--border-ink);
}

.token-pill.usdt {
  background: #ecfdf5;
  border-color: #059669;
  color: #065f46;
}

.token-pill.usdc {
  background: #eff6ff;
  border-color: #2563eb;
  color: #1e40af;
}

/* Warning alert */
.crypto-warning-alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fffbeb;
  border: 1.5px solid #f59e0b;
  padding: 10px 12px;
  border-radius: 4px;
  color: #92400e;
  font-size: 12px;
  line-height: 1.5;
}

.crypto-warning-alert svg {
  flex: none;
  margin-top: 1px;
  color: #d97706;
}

@media (max-width: 640px) {
  .crypto-pay-layout {
    flex-direction: column;
    align-items: center;
  }
  .qr-code-wrapper {
    width: 100%;
    max-width: 200px;
  }
  .crypto-details-col {
    width: 100%;
  }
}
